
body{
    overflow-x: hidden;
}


 /* .hero {
  background-color: black;
  background-image:
    linear-gradient(#ecfdfd 0.1px, transparent 1px),
    linear-gradient(90deg, #ecfdfd 0.px, transparent 1px);
  background-size: 40px 40px; 
  background-position: center;
} */

/* Global selection (light background sections) */
::selection {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

/* Firefox */
::-moz-selection {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

/* WebKit */
::-webkit-selection {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

/* --------------------------------------------- */
/* Override selection ONLY inside dark sections  */
/* --------------------------------------------- */

/* Dark-section selection override */
.hero-content , .break *::selection {
  background: blueviolet;
  color: wheat;
}

.hero, .break *::-moz-selection {
  background: var(--color-primary);
  color: var(--color-background-2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    linear-gradient(to right, rgba(195, 255, 0, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(195, 255, 0, 0.15) 1px, transparent 1px);

  background-size: 40px 40px;
}




.cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    background: var(--color-primary-dark);
    border: 1px solid var(--color-background);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 13000;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: difference;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.pupil {
    width: 6px;
    height: 6px;
    background: var(--color-background);
    border-radius: 50%;
    position: absolute;
    transition: transform 0.15s ease-in-out; 
    transform: translate(-50%, -50%) scale(1); 
}



.eyelid-top,
.eyelid-bottom {
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    background: var(--color-primary-dark);
}


.eyelid-top {
    top: 0;
    transform: translateY(-100%);
}


.eyelid-bottom {
    bottom: 0;
    transform: translateY(100%);
}


.cursor.blink .eyelid-top {
    animation: blinkTop 0.3s ease forwards;
}
.cursor.blink .eyelid-bottom {
    animation: blinkBottom 0.3s ease forwards;
}

@keyframes blinkTop {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

@keyframes blinkBottom {
    0% { transform: translateY(100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}


.cursor.blink .eyelid {
    animation: blinkAnim 0.3s ease forwards;
}

@keyframes blinkAnim {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); }
}




.cursor.hover {
    width: 40px;
    height: 40px;
}




 




@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}


.floating {
  display: inline-block; 
  animation-name: float;
  animation-duration: 5s; 
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.floating:nth-child(1) { animation-delay: 0s; }
.floating:nth-child(2) { animation-delay: 0.4s; }
.floating:nth-child(3) { animation-delay: 0.9s; }
.floating:nth-child(4) { animation-delay: 1s; }
.floating:nth-child(5) { animation-delay: 0.5s; }
.floating:nth-child(6) { animation-delay: 0.8s; }
.floating:nth-child(7) { animation-delay: 0.1s; }
.floating:nth-child(8) { animation-delay: 0.4s; }
.floating:nth-child(9) { animation-delay: 0.9s; }
.floating:nth-child(10) { animation-delay: 0s; }
.floating:nth-child(11) { animation-delay: 0.4s; }
.floating:nth-child(12) { animation-delay: 0.5s; }
.floating:nth-child(13) { animation-delay: 0.9s; }
.floating:nth-child(14) { animation-delay: 0.3s; }
.floating:nth-child(15) { animation-delay: 0.1s; }
.floating:nth-child(16) { animation-delay: 0.5s; }
.floating:nth-child(17) { animation-delay: 0.6s; }
.floating:nth-child(18) { animation-delay: 0.8s; }
.floating:nth-child(19) { animation-delay: 0.4s; }
.floating:nth-child(20) { animation-delay: 0.7s; }
.floating:nth-child(21) { animation-delay: 0.2s; }
.floating:nth-child(22) { animation-delay: 0.6s; }
.floating:nth-child(23) { animation-delay: 0.8s; }
.floating:nth-child(24) { animation-delay: 0.4s; }
.floating:nth-child(25) { animation-delay: 0.9s; }
.floating:nth-child(26) { animation-delay: 0.7s; }
.floating:nth-child(27) { animation-delay: 0.9s; }
.floating:nth-child(28) { animation-delay: 0.2s; }
.floating:nth-child(29) { animation-delay: 0.9s; }
.floating:nth-child(30) { animation-delay: 0.3s; }
.floating:nth-child(31) { animation-delay: 0.4s; }
.floating:nth-child(32) { animation-delay: 0.8s; }








:root {

    --nav-title-condensed: -2px;
    --font-family-bricolage: 'Bricolage Grotesque', sans-serif;
    
    --font-display: var(--font-family-bricolage);
    --font-nav: var(--font-family-bricolage);
    --font-sans: var(--font-family-bricolage);

    --color-primary: #0a120c;
    --color-secondary: #ff6600;
    --color-accent: oklch(95% 0.35 159);
    --color-primary-dark: #05050c;
    --color-background: #eefdff;
    --color-background-2: #ecfdfd;
    --color-inverse: #fff;

      --shadow-soft: 0 15px 30px rgba(0,0,0,0.05);



}







* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    cursor: none !important;
}




body, html {
    cursor: none;
}
    
        .cursor {
        position: fixed;
        width: 28px;
        height: 28px;
        background: var(--color-primary-dark);
        border: 1px solid var(--color-background);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 13000;
        display: flex;
        align-items: center;
        justify-content: center;
        mix-blend-mode: difference;
        transition: transform 0.2s ease;

        }

        .pupil {
        width: 6px;
        height: 6px;
        background: var(--color-background);
        border-radius: 50%;
        position: absolute;
        transition: transform 0.04s ease-in-out; 
        }

        .cursor.hover{
            width: 40px;
            height: 40px;
        }

body::-webkit-scrollbar {
  display: none;
}

html, body {
  font-family: 'Bricolage Grotesque', sans-serif;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    font-variation-settings: 
    "wght" 300, "opsz" 30 ;
}

section {
    scroll-snap-align: start;
}

section.break{
  padding-top: 20px;

}




.in-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}


.in-animation.show {
    opacity: 1;
    transform: translateY(0);
}



nav {
    position: sticky;
    top: 0;
    height: 60px;
    background-color: var(--color-background-2);
    z-index: 11000;
    border-bottom: var(--color-primary) solid 1px;
    display: flex;
    align-items: center;
}

.navFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.title img {
    height: 40px;
    padding-top: 5px;
    padding-left: 40px;
}

@media (max-width: 900px) {
    .title img {
padding-left: 0px;  }
}

.spacer {
    width: 20vw;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 40px;
}


.navFlex .link {
    position: relative;
    text-decoration: none;
    font-size: 2rem;
    color: var(--color-primary-dark);
    padding: 2px 12px;
    border-radius: 12px;
    overflow: visible;
}


.navFlex .link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.navFlex .link:hover::before {
    transform: scale(1);
}


.navFlex .link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 12px;
    z-index: -1;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}


.navFlex .link.active::after {
    transform: scale(1);
}







.logo-svg {
  max-width: 95vw; 
  height: auto;
  display: block;
  position: absolute;
  right: 40px;
  left: 40px;
  cursor: pointer;
}
/* The new anchor box */
.logo-stack {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: 40px;
  width: auto;
  height: auto;
  pointer-events: none; /* → Clicking still goes to the SVG */
  margin-right: 40px;
  max-height: 60vh;
  

}

@media (max-width: 900px) {
    .logo-stack {
      right: 20px;
      left: 0px;
      max-height: 50vh;
  }}

/* Logo inside the box */
.logo-stack .logo-svg {
  position: relative; /* not absolute */
  display: block;
  margin: 0 auto;
  max-width: 100vw;
  height: auto;
  pointer-events: auto;
  z-index: 1;
}




/* Studio text positioned relative to the logo */
.logo-stack .studio-text {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0px); /* ← ALWAYS 20px above logo */
  margin: 0;
  font-size: 5rem;
  font-weight: 300;
  z-index: 2;
}

.studio-text {
    right: -40px !important;

}



@media (min-width: 1400px) {
    .studio-text {
    margin-bottom: 40px;
  }
}

.letter {
  transition: transform 0.3s ease, fill 0.3s ease;
  cursor: pointer;
}

.letter:hover {
  transform: translateY(-4px);
}


#eye-A, #eye-O {
  transform-origin: center; 
}



.hero {
    position: sticky;
    top: 0;
    width: 100%;
    height: 92vh;
    background-color: var(--color-primary-dark);
    color: var(--color-background-2);
    z-index: 1;       
}

.hero-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;


}

@media (max-width: 900px) {
    .hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
  }
}
@media (max-width: 900px) {

  .hero h2 {
    font-size: 1.8rem;
    width: 90%;
  }



  .email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
}


}


.cta-prime{
  margin: 40px 10px 0px 0px ;
  height: 40px;
  display: inline-block;
  padding: 0.9em 2em;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-dark);
  background: var(--color-background);
  border: 1px solid var(--color-primary-dark);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 200px;
  border-radius: 15px;
font-family: "Bricolage Grotesque", sans-serif;
font-variation-settings: "wght" 400 "opsz" 30; 
}

.cta-prime .works-btn {
    margin: 0px 0px 0px 0px !important;
}





.cta-sec {
  margin: 40px 20px 0px 0px ;
  display: inline-block;
  padding: 0.9em 2em;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-background);
  background: var(--color-primary-dark);
  border: 1px solid var(--color-inverse);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
    border-radius: 15px;

}

.services .cta-sec {
  position: static;
  margin: 0;
}


.cta-sec::after {
    content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: var(255,255,255,0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
  pointer-events: none;
}

.cta-sec:hover {
  color: var(--color-accent);
  background: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.cta-sec:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}

.cta-wrapper{
    display: flex;
    justify-content: end;
    
}

.cta-prime::after {
    content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: var(255,255,255,0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
  pointer-events: none;
}

.cta-prime:hover {
  color: var(--color-primary-dark);
  background: var(--color-accent);
  border-color: black;
}

.cta-prime:hover::after {
  transform: translate(-50%, -50%) scale(1);
}



.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem;
  right: 40px;
  bottom: 58%;
  font-weight: 200; /* still works as a fallback */

  /* Now we use variable font controls */
  font-variation-settings: 
    "wght" 300,   /* custom fine-tuned weight */
    "opsz" 72;    /* sharper or smoother at size */
}



section:not(.hero) {
    position: relative;
    z-index: 5;        
}

section:not(.hero) {
    transform: translateY(0);
    transition: transform 0.5s ease;
}




.hero h2 {
    padding: 40px;
    font-size: 3rem;
    font-variation-settings: 
    "wght" 200,   /* custom fine-tuned weight —— 200 — 800 */
    "opsz" 72;    /* sharper or smoother at size —— 12 — 72 */
}





@media (max-width: 900px) {
    .service-previews {
        flex-direction: column;  
        gap: 20px;               
        align-items: center;     
    }

    .service-img {
        width: 90%;              
        max-width: 400px;        
        height: auto;            
        margin: 0 auto;          
    }
}


.services {
    background: var(--color-background);
    padding-top: 40px;
    height: auto;
    overflow: hidden;
}


.service-header {
    margin: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 900px) {
    .service-header {
        flex-direction: column;       
        align-items: flex-start;      
        gap: 12px;                    
        margin: 0 20px;               
    }

    .service-header h1 {
        font-size: 6vw;               
    }

    .service-header .cta-prime {
        white-space: nowrap;          
        font-size: 4vw;               
        padding: 6px 14px;            
    }
}

@media (max-width: 900px) {
    .service-intro {
        margin: 20px;
        font-size: 4vw;       
        max-width: 95%;       
    }
}



.service-header h1 {
    font-size: 8vh;
    font-weight: 300;
    color: var(--color-primary-dark);
}


.service-intro {
    margin: 40px;
    font-size: 1.6rem;
    max-width: 700px;
    line-height: 1.4;
    color: var(--color-primary-dark);
}


.service-previews {
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 90vw;
}

.service-img {
    height: 280px;      
    width: auto;        
    max-width: 33%;     
    flex: 1;
    object-fit: cover;  
    border-radius: 12px;

        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-previews img:nth-child(n+2) {
        display: none; 
    }

    .service-previews img:first-child {
        width: 90%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}


.mission {
    padding: 40px 40px;
    background: var(--color-background-2);
    display: flex;
    flex-direction: column;
    align-items: left;
}

.mission-title {
    font-size: 8vh;
    font-weight: 300;
    margin-bottom: 60px;
    color: var(--color-primary-dark);
    text-align: left;
}


.mission-text {
    column-count: 2;
    column-gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.mission-text p {
    font-size: 1.4rem;
    font-weight: 250;
    line-height: 1.4;
    color: var(--color-primary-dark);
    hyphens: none;
    text-align: justify;
}


.mission-text p::first-line {
    font-weight: 400; 
    font-size: 1.4rem;
}


@media (max-width: 900px) {
    .mission-text {
        column-count: 1;
        column-gap: 0;
    }
    .mission-title {
        font-size: 10vw;
        margin-bottom: 40px;
    }
    .mission-text p {
        font-size: 1.2rem;
        line-height: 1.7;
    }


  .mission-text p {
    text-align: left !important;
    text-justify: auto !important;
  }

  .mission-text {
    text-align: left !important;
  }

  .mission {
    padding: 20px 20px 100px 20px;
  }


}


.about {
  width: 100%;
  min-height: 100vh;
  background: var(--color-background-2);
  display: flex;
  flex-direction: column;
}

.manifesto-cards-wrapper {
    padding: 40px 40px 40px 40px;
} 

.email-btn {
    margin: 40px 40px 0px 0px ;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-dark);
    border: var(--color-background-2) solid 1px;
    color: var(--color-background-2);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-right: 10px; 
    position: relative;
}

 /* .lang-switch {
    position: relative;
    top: -13px;
} */


.email-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-primary-dark);
    color: var(--color-accent);
    border: var(--color-accent) solid 1px;
}

.email-btn svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}


@media (max-width: 900px) {


  .manifesto-cards-wrapper {
    padding: 0;
  }

    .email-btn {
        margin: 0px 0px 0px 0px ;
        display: flex; 
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-right: 0px;     
        position: static;        
        flex-shrink: 0;          
        border-radius: 50%;
        overflow: visible;       
    }

    .email-btn svg {
        width: 20px;
        height: 20px;
    }
}


/* MOBILE: place language switch in top-right corner */
@media (max-width: 768px) {

  .lang-switch {
    position: fixed !important;
    top: 80px !important;
    right: 20px !important;

    z-index: 9999;
    margin: 0 !important;
    transform: none !important;
  }
}






@media (max-width: 900px) {
  .about-lead {
    font-size: 2.2rem;
  }
  .about-body {
    font-size: 1.05rem;
  }
}


.contact {
    height: 94vh;
    background-color: var(--color-background-2); 
    font-size: 3rem;
    padding-left: 40px;
    padding-top: 40px;
    color: var(--color-primary-dark);
}

.contact h1 {
    font-weight: 300;
    font-size: 8vh;
    margin-bottom: 60px;
    text-transform: capitalize;
}

.contact-content {
    display: flex;
    flex-direction: row;
    gap: 120px; 
    padding-right: 40px;
    padding-top: 100px;
}

.contact-text {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 300;
  max-width: 22ch;
  color: var(--color-primary-dark);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-links p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    opacity: 1;
}

.contact-links a {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--color-primary-dark);
    transition: color .2s ease;
}

.contact-links a:hover {
    color: var(--color-accent);
}

@media (max-width: 900px) {
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-text {
    font-size: 1.6rem;
    max-width: 26ch;
  }

  .contact-links a {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .contact-text {
    font-size: 1.3rem;
  }
}



@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
}


.breakcontent {
    background: var(--color-primary-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-left: 40px;
    padding-top: 40px;
}


.tagline {
    font-size: 1.2rem;
    color: var(--color-background);
    opacity: 1;
    margin-top: 250px;
    align-items: end;
}


.footer {
    border-top: 1px solid var(--color-background);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    padding-top: 20px;

}

.footer, 
.footer a, 
.footer p {
    color: var(--color-background);
    text-decoration: none;
    font-size: 1rem;
    
}


@media (max-width: 900px) {

  .breakcontent {
    padding: 20px 20px;
    gap: 40px;
    justify-content: space-between;
  }

  .breakcontent h2 {
    font-size: 1.9rem;
    line-height: 1.2;

  }
  

  .tagline {
    font-size: 1rem;
    margin-top: 10px;
    margin-left: 20px;
    opacity: 0.65;
  }

  .footer {
    padding-top: 18px;
    gap: 4px;
  }

  .footer p,
  .footer a {
    font-size: 0.9rem;
  }
}





@media (max-width: 900px) {
    .breakcontent h2 {
        font-size: 2.6rem !important;
    }

  .big-eye {
    width: 140px;
    height: 140px;
    right: 20px;
    top: 30vh;
  }
}

@media (max-width: 600px) {
  .big-eye {

        display: none;

  }
}

.breakcontent.first {
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px;
  padding-right: 40px;
}

.two{
    text-align: right;
    margin: 0;
    padding: 0;
}


h2 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-background);
}

p {
    font-size: 1.6rem;
}







.big-eye {
    position: fixed;
    top: 35vh;
    right: 40px;
    width: 200px;
    height: 200px;
    border: 2px solid white;   
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: transparent;
}

.big-eye-ball {
    position: absolute;
    width: 25px;               
    height: 25px;
    background: var(--color-background-2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.break {
    position: relative;
}







.cta-prime .work-btn {
    padding: 1rem 2.8rem;
    margin-top: 0px ;
    font-size: 0rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--color-background);
    background-color: var(--color-primary-dark);
    border: 1px solid var(--color-inverse);

    cursor: pointer;

    border-radius: 12px;
    position: relative;
    overflow: hidden;

    
    transition: 
        color .3s ease,
        border-color .3s ease,
        background .3s ease;
}







@media (max-width: 768px) {

    
    nav.navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: var(--color-background-2);
        z-index: 9999;
        border-bottom: 1px solid #0b0b0b;
    }

    .navFlex {
        justify-content: space-between;
        padding: 0 16px;
    }

    
    .nav-links {
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        background: var(--color-background-2);
        padding: 20px 0;

        
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: 
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.35s cubic-bezier(.25,.8,.25,1);
    }

    
    .nav-links.open {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
    }

    
    .nav-links a {
        font-size: 1.6rem;
        padding: 10px 0;
        text-align: center;
        display: block;
    }

    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 10000;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: var(--color-primary-dark);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    
    .spacer {
        display: none;
    }

    
    body {
        overflow-x: hidden;
    }
}




@media (max-width: 900px) {

  .hero {
      position: relative;
      z-index: 3; 
      font-size: 4vw;
      text-align: left;
      padding-left: 20px;
  }

  
.studio-text {
    display: none;
}


.logo-img {
    width: 100%;          
    max-width: 100vw;    
    height: auto;
    display: block;
    left: 50%;
    transform: translateX(9.5%);
}


  .hero {
    min-height: 100vh;
  }

  .hero-wrapper h2 {
    font-size: 8vw;
    line-height: 1.1;
    margin-bottom: 24px;
    padding-left: 0;
  }

.cta-wrapper {
    display: flex;
    flex-direction: row;   
    gap: 12px;             
    flex-wrap: nowrap;     
    justify-content: flex-start; 
    align-items: center;
}



.scg-wrap {
    position: absolute !important; 
    bottom: 20px !important;       
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    z-index: 2 !important;         
}

@media (max-width: 900px) {
    .scg-wrap {
        bottom: 120px !important; 
        left: 20px !important;
        right: 20px !important;
    }
}




  .cta-prime {margin: 0; white-space: nowrap;} .cta-sec {margin: 0; white-space: nowrap;}
  

}
@media (max-width: 900px) {
    .logo-svg {
        display: none !important;
    }
}








.manifesto-cards {
    background: var(--color-background-2);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.manifesto-title {
    font-size: 8vh;
    text-align: left;
    margin-bottom: 60px;
    font-weight: 300;
    color: var(--color-primary-dark);
    margin-top: 0; padding-top: 0;
}

.manifesto-cards-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.manifesto-card {
    background: var(--color-background);
    border-radius: 20px;
    padding: 40px;
    flex: 1 1 300px;
    max-width: 350px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.manifesto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.manifesto-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.manifesto-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary-dark);
}

.manifesto-card p {
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--color-primary-dark);
}


.floating {
    animation-name: float;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}


@media (max-width: 768px) {
    .manifesto-cards-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .manifesto-title {
        text-align: center;
    }

    .manifesto-card {
        max-width: 90%;
        min-height: auto;
        padding: 30px;
    }

    .manifesto-number {
        font-size: 4rem;
    }

    .manifesto-card h2 {
        font-size: 1.6rem;
    }

    .manifesto-card p {
        font-size: 1.1rem;
    }
}


@media (max-width: 900px) {
    html, body {
        scroll-snap-type: none !important;
    }
    section {
        scroll-snap-align: none !important;
        min-height: calc(100vh - 8vh);

    }

    .break {
                min-height: calc(100vh - 0vh);

    }
}


@media (max-width: 900px) {

    .cta-wrapper {
        position: absolute;
        bottom: 42vh;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin-top: 100vh;
    }
    .scg-wrap {
        position: relative;
    }

    .cta-prime,
    .cta-sec {
        width: auto;
        max-width: none;
        padding: 12px 20px;
        font-size: 0.7rem;
        border-radius: 12px;
        text-align: center;
        overflow: visible !important;
    }

    .email-btn {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



/* ----- BREAK SECTION: place CTAs UNDER title, aligned right, side-by-side ----- */


  /* Make sure the heading takes full width so CTAs sit below it */
  .break1 .breakcontent h2,
  .break1 .breakcontent .in-animation.floating {
    display: block;
    width: 100%;
    margin: 40px 0 0px 0;   /* space under the title */
    text-align: left;     /* keep heading left-aligned */
  }

  /* Container for CTAs: horizontal, aligned right, with inset from right edge */
  .cta-flex-footer {
    display: flex !important;
    flex-direction: row !important;    /* keep buttons side-by-side */
    gap: 12px;
    justify-content: flex-end;         /* align to the right */
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-right: 20px;               /* nudge away from the very edge */
    box-sizing: border-box;
    flex-wrap: nowrap;                 /* prevent wrapping to next line */
  }

  /* Make CTAs compact but touch-friendly */
  .cta-flex-footer a {
    white-space: nowrap;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-align: center;
  }

  /* If buttons are too wide on very small devices, allow a small shrink */
  .cta-flex-footer a {
    flex: 0 1 auto;   /* don't force full width, allow to shrink a bit if needed */
    min-width: 0;
  }

  /* Tagline: keep left aligned and give breathing room above footer */
  .break1 .tagline {
    margin-top: 180px;
    margin-left: 20px;
    text-align: left;
    width: calc(100% - 16px);
  }

  /* Footer: give more left margin so it isn't flush to the edge */
  .break1 .footer {
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
  }

  /* Ensure footer links are readable and spaced */
  .break1 .footer p,
  .break1 .footer a {
    display: block;
    margin-bottom: 6px;
    text-align: left;
    padding-left: 0;
  }



/* OUTLINE */
/* * {
    border: #0033ff solid 1px;
} */

/* OVERRIDES */


/* override to visually lift the works button 40px without breaking its transform animation */
.works-btn {
    width: 200px;
    height: 50px;
    align-content: center;
    justify-content: center;
  position: relative !important; /* required so `top` works, and to override other rules */
  top: -20px !important;         /* raises the element 40px */
  z-index: 5 !important;         /* keep it above overlays if needed */
}

.cta-prime,
.cta-sec,
.email-btn,
.works-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) { 
.works-btn {
  top: 0px !important;
}
}


@media (max-width: 900px) { /* Adjust breakpoint as needed */
  section#point-of-view {
    height: auto; /* Allow the section to grow */
    min-height: 100vh; /* Optional: ensure it's at least 100vh tall if content is short */
  }

  .manifesto-cards-wrapper {
    flex-direction: column; /* Stack cards vertically */
    align-items: center; /* Center cards if they don't take full width */
  }

  .manifesto-card { /* Assuming .manifesto-card is the class for individual cards */
    max-width: 100%; /* Make cards take full available width */
    width: 100%; /* Ensure width is flexible */
  }
}

/* In your CSS */


@media (max-width: 768px) {
    section#break {
        min-height: auto;
    }
}

footer.footer {
  margin-top: 40px;
  margin-bottom: 20px
}

/* Now, apply specific styles for mobile (assuming your mobile breakpoint is max-width: 768px) */
@media (max-width: 768px) {
  /* Override parent .breakcontent's flex property if it's causing issues */
  .breakcontent {
    justify-content: flex-start; /* Or initial, or unset. Prevents space-between from overriding */
    /* If you also want to remove gap between ALL children of breakcontent, you might unset `gap` if it's applied there */
  }

  /* Style for the buttons container on mobile */
  .cta-flex-footer {
    flex-direction: column; /* Stack buttons vertically */
    align-items: center;   /* Center individual buttons when stacked */
    gap: 15px;             /* Vertical gap between stacked buttons */
    margin-bottom: 0px;   /* Ensure this is set for the desired space */
  }

  /* Ensure footer doesn't add any extra space on mobile */
  footer.footer {
    margin-top: 0px;
    padding-top: 10px;
  }
}



#portfolio {
    scroll-margin-top: 0vh;

}



#about,
#point-of-view,
#contact {
  scroll-margin-top: 5vh;
}

.portfolio-left::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    linear-gradient(to right, rgba(195, 255, 0, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(195, 255, 0, 0.15) 1px, transparent 1px);

  background-size: 40px 40px;
}

/* Whole section */
.portfolio-section {
  padding: 100px 5vw;
  background-color: var(--color-background-2);
}

/* Two-column layout */
.portfolio-wrapper {
  display: flex;
  gap: 2rem;
  height: 80vh; /* fixed height */
}

/* LEFT (1/4 width) */
.portfolio-left {
  flex: 1;
  background-color: var(--color-primary) !important;
  color: var(--color-background-2);
  font-variation-settings: "wght" 500 "opsz"72;
  padding: 3rem;
  border-radius: 15px;
  border: var(--color-background-2) solid 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  min-width: 250px;
}

.portfolio-btn {
  white-space: nowrap;       /* prevents wrapping */
  display: inline-block;     /* ensures button stays one line */
  margin-top: 1.5rem;
}

/* RIGHT (3/4 width) */
.portfolio-right {
  flex: 3;
  /* border: 1px solid var(--color-primary-dark); */
  border-radius: 15px;
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
  background-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);

}

/* CAROUSEL */
.carousel {
  height: 100%;
  position: relative;
}

/* CARD LAYOUT */
.carousel-card {
  display: none;
  height: 100%;
  animation: fadeIn 0.5s ease forwards;
}

.carousel-card.active {
  display: block;
}

/* IMAGE fills top area proportionally */
.carousel-card img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

/* Text in cards */
.carousel-card h3 {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.carousel-card p {
  opacity: 0.8;
  max-width: 90%;
}

/* ARROWS — clean, minimal, inline */
.carousel-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 1.5rem;
}

.arrow {
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.arrow:hover {
  transform: translateX(3px);
  opacity: 0.6;
}

/* FIX MOBILE JUMPING */
@media (max-width: 900px) {
  .portfolio-right {
    height: 70vh;        /* lock height same as desktop */
    overflow: hidden;     /* prevent entire box from expanding */
  }

  .carousel {
    height: 100%;
  }

  .carousel-card {
    height: 100%;        /* card stays full height */
    overflow-y: auto;    /* scroll inside if text overflows */
    padding-right: 0.5rem; /* avoid clipping */
  }

  .carousel-card img {
    height: 45vh;        /* slightly smaller image for mobile */
    object-fit: cover;
  }
}


/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  .portfolio-wrapper {
    flex-direction: column;
    height: auto;
  }

  .carousel-card img {
    height: auto;
  }
}

html, body, * {
  cursor: none !important;
}

/* ================================================================
   SCOPED WIREFRAME — FIXED PADDING, CORRECT ARROWS
   ================================================================ */

#about-wireframe {
  width: 100%;
  height: 100vh;
                 /* smaller */
  background: var(--color-accent);
  display: block;  justify-content: space-between;
  flex-direction: column;
  box-sizing: border-box;
}

#about-wireframe,
#about-wireframe * {
  color: var(--color-background-2) !important;
  stroke: var(--color-background-2) !important; /* for arrow lines */
  
}

/* Make the arrow buttons visually identical to the old cells */
#about-wireframe .arrow-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* optional: no default focus outline box, your custom cursor handles focus */
#about-wireframe .arrow-btn:focus {
  outline: none;
}

/* Make MA + YO shapes off-white */
#about-wireframe svg polygon,
#about-wireframe svg path {
  fill: var(--color-background-2) !important;
}

/* Keep arrow lines off-white too (optional, more explicit) */
#about-wireframe svg line,
#about-wireframe svg polyline {
  stroke: var(--color-background) !important;
}


/* ROWS */
#about-wireframe .row {
  display: grid;
  /* border: 4px solid #1a00ff; */
  padding: 0px;               /* reduced */
  gap: 0px;                  /* reduced */
}

#about-wireframe .row-top {
    grid-template-columns: 1.3fr 1fr 1fr;
    margin-top: 10vh;
    margin-left: 40px;
    margin-right: 40px;
    align-items: start;
}

#about-wireframe .row-middle {
  grid-template-columns: 1fr 2fr 1fr;
      margin-left: 40px;
    margin-right: 40px;
    transform: translateY(6vh);
}

#about-wireframe .row-bottom {
  grid-template-columns: 1fr 0.6fr 1fr;
      margin-left: 40px;
    margin-right: 40px;


}


/* CELLS */
#about-wireframe .cell {
  /* border: 4px solid #1a00ff; */
  padding: 10px;               /* reduced */
}

#about-wireframe .cell-about {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 0;
  transform: translateY(-10px);

}



/* TYPOGRAPHY */
#about-wireframe h1 {
  font-size: 9rem;           /* smaller HEADLINE */
  margin: 0;
  font-variation-settings: "wght" 700, "opsz" 12 ;
  letter-spacing: -8px;
  transform: translateY(-15px);

}

#about-wireframe h2 {
  font-size: 4.5rem;
  margin: 0;
  padding: 0;
  text-align: center;
  transform: translateY(-20px) scale(1.7); /* adjust this number */
  font-variation-settings: "wght" 800 ;
  color: var(--color-primary-dark);

}

#about-wireframe p {
  margin: 0;
  font-size: 1.2rem;           /* smaller */
  line-height: 1.35;
  font-variation-settings: "wght" 400, "opsz" 12 ;

}

/* -----------------------------------------------------------
   ARROW SVG
----------------------------------------------------------- */
#about-wireframe .arrow-svg {
  width: 80px;
  height: auto;
  display: block;
}

/* LEFT ARROW — align left, flip ONLY the SVG */
#about-wireframe .cell-arrow-left {
  display: flex;
  justify-content: flex-start; /* stay on the left side */
  align-items: center;
  transform: translateY(-15px);
}

#about-wireframe .arrow-left {
  transform: scaleX(-1); /* flip just the arrow graphic */
}


#about-wireframe .cell-arrow-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#about-wireframe .cell-arrow-left h2 {
  text-indent: 0 !important;
  transform: none;        /* remove scale warping for names */
}

/* RIGHT ARROW — align right (corrected selector name!) */
#about-wireframe .cell-arrow-right {
  display: flex;
  justify-content: flex-end; /* stay on the right side */
  align-items: center;
    transform: translateY(-15px);
}

html[lang="nl"] #about-wireframe .cell-arrow-right {
transform: translateY(-30px);
}

html[lang="nl"] #about-wireframe .cell-arrow-left {
transform: translateY(-30px);
}



#about-wireframe .arrow-right {
  transform: none; /* make sure it is not flipped */
  
}

#about-wireframe .cell-arrow-right {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

#about-wireframe .cell-arrow-right h2 {
  text-indent: 0 !important;
  transform: none;      
}


/* -----------------------------------------------------------
   MA / YO / AMPERSAND
----------------------------------------------------------- */
#about-wireframe .name-svg {
  width: 100%;
  height: auto;
  display: block;
}

#about-wireframe .cell-ampersand {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible; /* important: allows scaling outside box */
}

#about-wireframe .cell-ampersand span {
  font-size: 15rem; /* base size */
  transform: scale(1.7); /* adjust this number */
  transform-origin: center;
  display: block;
  line-height: 1;
  font-variation-settings: "wght" 100, "opsz" 100 ;

}

@media (min-width: 1500px) {
  #about-wireframe .cell-ampersand span {
  font-size: 24rem; /* base size */
  transform: scale(1.5); /* adjust this number */
  }
}


#about-wireframe .cell-arrow-left h2 {
    font-variation-settings: "wght" 200 ;
    font-size: 1.8rem;
    transform: translateY(10px);

}

#about-wireframe .cell-arrow-right h2 {
      font-variation-settings: "wght" 200 ;
      font-size: 1.8rem;
          transform: translateY(10px);



}



/* Dutch version only */
html[lang="nl"] #about-wireframe .cell-about h1 {
    font-size: clamp(3rem, 8vw, 6rem); /* adjust as needed */
    line-height: 1.3;
}

html[lang="nl"] #about-wireframe .cell-meet h2 {
    font-size: clamp(2.5rem, 7vw, 3.7rem);
    line-height: 1.1;
}

/* Optional: prevent breaking into 2 lines */
html[lang="nl"] #about-wireframe .cell-meet h2,
html[lang="nl"] #about-wireframe .cell-about h1 {
    white-space: nowrap; /* force text to stay on one line */
}


/* -----------------------------------------------------------
   MAIN CONTENT SHIFT
----------------------------------------------------------- */
#about-content-wrapper {
  position: relative;
  transition: transform 0.6s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 0px;
}

/* Arrow rotation styling */
.arrow-btn {
  transition: transform 0.4s ease;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.arrow-btn.active {
  transform: rotate(180deg);
}

/* ============================================================
   MAIN ABOUT ARROWS — STROKE-WIDTH HOVER MATCHING PANEL ARROWS
============================================================ */

.arrow-btn svg line,
.arrow-btn svg polyline {
  transition: stroke-width 0.25s ease-out, stroke 0.25s ease-out;
}

/* Hover: thicker stroke + accent color */
.arrow-btn:hover svg line,
.arrow-btn:hover svg polyline {
  stroke-width: 26; /* was 20 */
  stroke: var(--color-accent);
}


/* -----------------------------------------------------------
   SIDE PANELS (updated to 80vw)
----------------------------------------------------------- */
.side-panel {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-accent) !important;
  overflow: hidden !important; /* Panel should NOT scroll */
  transition: transform 0.6s ease;
  z-index: 9000;
  box-sizing: border-box;
}




body.no-scroll {
  overflow: hidden !important;
  height: auto;
}


/* Left panel (hidden by default) */
#panel-left {
  left: 0;
  transform: translateX(-100%);
}

/* Right panel (hidden by default) */
#panel-right {
  right: 0;
  transform: translateX(100%);
}

/* When opened */
#panel-left.open-panel {
  transform: translateX(0);
}

#panel-right.open-panel {
  transform: translateX(0);
}

/* PANEL INNER LAYOUT */
.about-panel {
  width: 100%;
  height: 100%;
  padding: 4rem;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* TOP BIO ROW: IMAGE + 2 TEXT BLOCKS */
.panel-bio-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 0rem;
}

/* Reverse for Yorrik */
.panel-bio-row.reverse {
  grid-template-columns: 1fr 1fr 220px;
}

/* PHOTOS */
.panel-photo {
  width: 220px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  margin-top: 10px;
}

.panel-photo.right {
  justify-self: end;
}

/* BIO TEXT */
.panel-bio-text p {
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--color-text) !important;
}

/* SURNAME TITLE */
.panel-surname {
  font-size: 5rem;
  font-weight: 600;
  margin: 0rem 0 0.5rem ;
  color: #eefdff;
  transform: translateY(30%);
}

@media (min-width: 1400px) {
  .panel-surname {
    transform: translateY(30px);
  }

}

.panel-surname.right {
  text-align: right;
}

/* LARGE NAME SVG */
.panel-name-svg img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(7%);
}



/*TYPOGRAPHY COLOR */
.about-panel,
.about-panel p,
.about-panel h1,
.about-panel h2 {
  color: var(--color-background-2) !important; /* your off-white color */
}

/* ============================================
   PANEL CLOSE BUTTONS — vertically centered
============================================ */

.panel-close {
  position: absolute;
  top: 50%;                      /* center vertically */
  transform: translateY(-50%);   /* perfect vertical centering */
  width: 70px;
  height: 70px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease-out;
}

.panel-close svg {
  width: 60px;
  height: 60px;
  stroke: var(--color-background-2, #e2fcff);
  transition: transform 0.3s ease;
  transition: transform 0.25s ease-out
              stroke 0.25s ease-out;
}



/* LEFT PANEL CLOSE BUTTON = on the RIGHT side, arrow pointing outward */
.panel-close-left {
  right: 40px;
}
.panel-close-left svg {
  transform: none;

}

/* RIGHT PANEL CLOSE BUTTON = on the LEFT side */
.panel-close-right {
  left: 40px;
}
.panel-close-right svg {
    transform: scaleX(-1);
}



/* =============================================
   CLOSE ARROW — SIMPLE STROKE-WIDTH HOVER
============================================= */

.panel-close svg line,
.panel-close svg polyline {
  transition: stroke-width 0.25s ease-out, stroke 0.25s ease-out;
}

/* Hover: thicker stroke + green tint */
.panel-close:hover svg line,
.panel-close:hover svg polyline {
  stroke-width: 26; /* adjust: original is 20 */
  stroke: var(--color-background-2, #e2fcff); /* your neon green */
}

#break {
  scroll-margin: 30px;
}