    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:100;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-100.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:200;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-200.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:300;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-300.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:400;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:500;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-500.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:600;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-600.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:700;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-700.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:800;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-800.woff2') format('woff2');
    }
    @font-face{
      font-family:'Inter';
      font-style:normal;
      font-weight:900;
      font-display:swap;
      src:url('/assets/fonts/inter/inter-v20-latin-900.woff2') format('woff2');
    }

    @font-face{
      font-family:'Material Symbols Outlined';
      font-style:normal;
      font-weight:300;
      font-display:swap;
      src:url('/assets/fonts/material/material-symbols-outlined-v347-latin-300.woff2') format('woff2');
    }

    @font-face{
      font-family:'Material Symbols Outlined';
      font-style:normal;
      font-weight:400;
      font-display:swap;
      src:url('/assets/fonts/material/material-symbols-outlined-v347-latin-regular.woff2') format('woff2');
    }

    .material-symbols-outlined{
      font-family:'Material Symbols Outlined';
      font-weight:300;
      font-style:normal;
      font-size:24px;
      line-height:1;
      letter-spacing:normal;
      text-transform:none;
      display:inline-block;
      white-space:nowrap;
      word-wrap:normal;
      direction:ltr;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
      -moz-osx-font-smoothing:grayscale;
      font-feature-settings:'liga';
    }
    :root{
      --bg:#f7f7f4;
      --ink:#151515;
      --muted:rgba(21,21,21,.58);
      --line:rgba(21,21,21,.13);
      --soft:#efefea;
      --card:#ecece7;
      --radius:34px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    html,
    body{
      max-width:100%;
      overflow-x:clip;
    }
    @supports not (overflow: clip){
      html,
      body{
        overflow-x:hidden;
      }
    }
    body{
      margin:0;
      background:#fff;
      color:var(--ink);
      font-family:"Inter", Arial, Helvetica, sans-serif;
      overflow-x:clip;
    }
    ::selection{background:#111;color:#fff}

    a{color:inherit}
    img{max-width:100%;display:block}

    img[loading="lazy"],
    video[preload="none"]{
      content-visibility:auto;
    }


.language-switcher {
    position: fixed;
    right: 32px;
    bottom: 28px;
    z-index: 1000;
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    min-width: 104px;
    padding: 3px;
    border: 1px solid rgba(17,17,17,.10);
    border-radius: 999px;
    background: rgba(245,245,245,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-option:hover {
  color: #111;
}
.language-option.is-active {
  color: #fff;
  background: #111;
  box-shadow: 0 2px 7px rgba(17, 17, 17, 0.18);
}
.language-option:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.language-option:active {
  transform: scale(0.97);
}

@media (max-width: 991.98px) {
    .language-switcher {
        right: 20px;
        bottom: 20px;
        min-width: 96px;
    }
}


    .reveal-ready .reveal-item{
      opacity:0;
      transform:translateY(34px);
      filter:blur(10px);
      transition:opacity .78s cubic-bezier(.2,.8,.2,1), transform .78s cubic-bezier(.2,.8,.2,1), filter .78s cubic-bezier(.2,.8,.2,1);
      transition-delay:var(--reveal-delay,0ms);
      will-change:opacity, transform, filter;
    }

    .reveal-ready .reveal-item.is-visible{
      opacity:1;
      transform:translateY(0);
      filter:blur(0);
    }

    .image-reveal{
      opacity:0;
      transform:scale(1.025);
      filter:blur(14px);
      transition:opacity .85s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1), filter .85s cubic-bezier(.2,.8,.2,1);
      will-change:opacity, transform, filter;
    }

    .image-reveal.is-loaded{
      opacity:1;
      transform:scale(1);
      filter:blur(0);
    }

    @media (prefers-reduced-motion: reduce){
      .reveal-ready .reveal-item,
      .image-reveal{
        opacity:1 !important;
        transform:none !important;
        filter:none !important;
        transition:none !important;
      }
      .marquee-track{
        animation:none !important;
      }
    }

    h1,h2,h3,h4,h5,h6,p,a,button,span,div{
      font-family:"Inter", Arial, Helvetica, sans-serif;
      font-weight:300;
    }

    .nav-minimal{
      position:fixed;
      top:0;
      left:0;
      right:0;
      z-index:50;
      height:76px;
      padding:0 clamp(22px,4vw,56px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      mix-blend-mode:multiply;
    }
    .brand-mini{
      height:auto;
      width:35px;
    }
    .nav-plus{
      width:34px;
      height:34px;
      position:relative;
    }
    .nav-plus::before,
    .nav-plus::after{
      content:"";
      position:absolute;
      left:50%;top:50%;
      background:#111;
      transform:translate(-50%,-50%);
    }
    .nav-plus::before{width:30px;height:2px}
    .nav-plus::after{width:2px;height:30px}

    .side-meta{
      position:fixed;
      left:26px;
      top:50%;
      transform:translateY(-50%) rotate(-90deg);
      transform-origin:left center;
      z-index:40;
      font-size:.72rem;
      letter-spacing:.14em;
      color:#111;
      white-space:nowrap;
    }
    .side-tags{
      position:fixed;
      right:34px;
      bottom:15px;
      top:auto;
      z-index:40;
      display:flex;
      gap:18px;
      align-items:center;
      font-size:.72rem;
      font-weight:800;
      letter-spacing:.12em;
    }

    .hero{
      min-height:100vh;
      padding:108px 0 0;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      background:#fff;
      overflow:hidden;
      position:relative;
    }

    .bottom-blur{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      height:105px;
      z-index:35;
      pointer-events:none;
      background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.86));
      -webkit-backdrop-filter:blur(10px);
      backdrop-filter:blur(10px);
      mask-image:linear-gradient(180deg, transparent 0%, #000 55%);
      -webkit-mask-image:linear-gradient(180deg, transparent 0%, #000 55%);
    }
    .hero-logo{
      text-align:center;
      padding:3vh 24px 12vh;
      width:70%;
      max-width:600px;
      margin:auto auto;
    }
    .hero-logo h1{
      margin:0;
      font-size:clamp(5.8rem,16vw,15.5rem);
      line-height:.78;
      letter-spacing:-.105em;
      font-weight:950;
    }
    .registered{
      font-size:.23em;
      vertical-align:top;
      margin-left:.03em;
      letter-spacing:-.04em;
    }
    .hero-subline{
      margin-top:32px;
      font-size:clamp(1.5rem,1.35vw,1.35rem);
      font-weight:500;
      letter-spacing:-.025em;
      display:flex;
      justify-content:center;
      align-items:center;
      gap:.28em;
      flex-wrap:nowrap;
      text-align:center;
    }
    .word-rotator{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:flex-start;
      height:1.35em;
      min-width:4.8em;
      overflow:hidden;
      vertical-align:middle;
      padding-bottom:.12em;
    }
    .word-rotator span{
      position:absolute;
      inset:0 auto auto 0;
      display:block;
      opacity:0;
      white-space:nowrap;
      line-height:1.4;
      will-change:transform, opacity;
      animation:wordDrop 6s linear infinite;
    }
    .word-rotator span:nth-child(1){animation-delay:0s}
    .word-rotator span:nth-child(2){animation-delay:2s}
    .word-rotator span:nth-child(3){animation-delay:4s}
    @keyframes wordDrop{
      0%,100%{
        opacity:0;
        transform:translateY(-100%);
      }
      4%{
        opacity:1;
        transform:translateY(0);
      }
      14%{
        opacity:1;
        transform:translateY(0);
      }
      18%{
        opacity:0;
        transform:translateY(100%);
      }
      19%,99%{
        opacity:0;
        transform:translateY(100%);
      }
    }

    .marquee-wrap{
      width:100%;
      max-width:100vw;
      overflow:hidden;
      padding-bottom:0;
      position:relative;
      contain:paint;
    }
    .marquee-wrap::before,
    .marquee-wrap::after{
      content:"";
      position:absolute;
      top:0;
      bottom:0;
      width:clamp(70px,10vw,170px);
      z-index:4;
      pointer-events:none;
    }
    .marquee-wrap::before{
      left:0;
      background:linear-gradient(90deg,#fff,rgba(255,255,255,0));
    }
    .marquee-wrap::after{
      right:0;
      background:linear-gradient(270deg,#fff,rgba(255,255,255,0));
    }
    .marquee-track{
      display:flex;
      gap:12px;
      width:max-content;
      animation:slide 42s linear infinite;
      padding-inline:24px;
      will-change:transform;
    }
    .marquee-wrap:hover .marquee-track{animation-play-state:paused}
    @keyframes slide{
      from{transform:translateX(0)}
      to{transform:translateX(-50%)}
    }
    .pill-image{
      flex:0 0 auto;
      width:clamp(170px,16vw,350px);
      height:clamp(330px,34vw,520px);
      border-radius:35px;
      overflow:hidden;
      background:#F2F2F2;
      filter:saturate(.92) contrast(.98);
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:8px;
      padding:8px;
    }
    .pill-image img,
    .pill-image video{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .pill-image .split-half{
      min-width:0;
      height:100%;
      overflow:hidden;
    }
    .pill-image .split-half:first-child,
    .pill-image .split-half:last-child{
      border-radius:30px;
    }
    .pill-image.soft{background:linear-gradient(135deg,#f3f0ea,#d8e4df)}
    .pill-image.gradient{background:radial-gradient(circle at 30% 30%,#f6d2d2,transparent 24%),linear-gradient(135deg,#64e8dc,#ff5656 45%,#f8f2ff 72%)}
    .pill-image.pattern{background:linear-gradient(135deg,#d6efe1,#fbf0dc);position:relative}
    .pill-image.pattern::before{content:"";position:absolute;inset:18%;border-radius:50%;background:#8eb18e;filter:blur(8px)}

    .pill-image.video-image{
      background:#F2F2F2;
    }
    .split-fallback{
      width:100%;
      height:100%;
      background:
        radial-gradient(circle at 30% 28%, rgba(255,255,255,.8), transparent 24%),
        linear-gradient(135deg,#111,#777);
    }
    .split-fallback.light{
      background:linear-gradient(135deg,#f2f2ee,#cbd3cf);
    }

    section{padding:clamp(120px,10vw,150px) clamp(24px,6vw,112px)}
    .intro{
      background:#fff;
      text-align:center;
      padding-top:clamp(130px,10vw,160px);
      padding-bottom:clamp(130px,10vw,160px);
    }
    .intro h2{
      margin:0 auto;
      max-width:760px;
      font-size:clamp(2rem,3vw,4.45rem);
      line-height:.98;
      letter-spacing:-.040em;
      font-weight:200;
    }
    .partner-row{
      margin-top:46px;
      display:flex;
      justify-content:center;
      align-items:center;
      gap:clamp(24px,5vw,70px);
      flex-wrap:wrap;
      color:#686B6B;
      font-weight:600;
      font-size:clamp(.95rem,1.3vw,1.25rem);
    }
    .partner-row span::before{
      content:"";
      display:inline-block;
      width:18px;height:18px;
      margin-right:8px;
      border-radius:6px;
      background:currentColor;
      vertical-align:-3px;
      opacity:.85;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      gap:24px;
      align-items:flex-end;
      margin-bottom:54px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(3.2rem,3vw,7.2rem);
      line-height:.9;
      letter-spacing:-.05em;
      font-weight:600;
    }
    .counter{
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      font-size:.86rem;
      letter-spacing:.08em;
      white-space:nowrap;
    }

    .streyd-showcase{
      background:#fff;
      padding:clamp(120px,10vw,150px) clamp(24px,6vw,112px);
    }
    .streyd-grid{
      display:grid;
      grid-template-columns:1.6fr .8fr;
      gap:18px;
    }
    .streyd-card{
      position:relative;
      overflow:hidden;
      border-radius:25px;
      background:#F2F2F2;
      min-height:420px;
    }
    .streyd-card.large{min-height:650px;}
    .streyd-card.small{
      min-height:316px;
      display:flex;
      flex-direction:column;
    }
    .streyd-card::before{
      content:"";
      position:absolute;
      inset:auto -10% -25% auto;
      width:75%;
      height:75%;
      background:radial-gradient(circle, rgba(0,0,0,.18), rgba(107,107,107,.13) 42%, rgba(242,242,242,0) 72%);
      filter:blur(40px);
    }
    .streyd-content{
      position:relative;
      z-index:2;
      padding:34px;
    }
    .streyd-content h3{
      margin:0;
      font-size:clamp(2rem,2.2vw,3.4rem);
      line-height:.95;
      letter-spacing:-.06em;
      font-weight:500;
    }
    .streyd-content p{
      margin-top:14px;
      color:#5f6470;
      max-width:540px;
      font-size:1.05rem;
    }
    .streyd-visual{
      position:absolute;
      inset:auto 0 0 0;
      height:90%;
      display:flex;
      align-items:flex-end;
      justify-content:center;
      padding:30px;
    }
    .streyd-panel{
      width:82%;
      height:78%;
      border-radius:22px;
      background:#F9F9F9;
      overflow:hidden;
      box-shadow:0 24px 70px rgba(0,0,0,.08);
    }

    .streyd-panel img{
      width:100%;
      height:100%;
      object-fit:contain;
      display:block;
    }
    .streyd-side{
      display:grid;
      gap:18px;
    }

    .streyd-topic-grid{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:0;
      margin:auto 34px 0;
      padding-top:24px;
      padding-bottom:28px;
      border-top:1px solid rgba(21,21,21,.08);
    }

    .streyd-topic{
      min-width:0;
      padding:0 12px;
      text-align:center;
      border-right:1px solid rgba(21,21,21,.08);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:flex-start;
    }

    .streyd-topic:last-child{
      border-right:0;
    }

    .streyd-topic .material-symbols-outlined{
      display:block;
      margin:0 0 11px;
      font-size:28px;
      line-height:1;
      color:#151515;
      font-variation-settings:'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    }

    .streyd-topic span:not(.material-symbols-outlined){
      display:block;
      color:#151515;
      font-size:.76rem;
      line-height:1.08;
      letter-spacing:-.035em;
      font-weight:560;
    }

    .streyd-card-note{
      position:relative;
      z-index:2;
      margin:0 34px 26px;
      padding-top:0;
      color:#656b78;
      font-size:.86rem;
      line-height:1.25;
      letter-spacing:-.025em;
      font-weight:360;
    }
    @media (max-width:991.98px){
      .streyd-grid{grid-template-columns:1fr;}
      .streyd-card.large{
        min-height:420px;
        display:flex;
        flex-direction:column;
      }

      .streyd-card.large .streyd-content{
        padding:24px 24px 10px;
      }

      .streyd-card.large .streyd-visual{
        position:relative;
        inset:auto;
        height:auto;
        flex:1;
        align-items:flex-start;
        padding:0 18px 22px;
      }

      .streyd-card.large .streyd-panel{
        width:100%;
        max-width:none;
        height:auto;
        aspect-ratio:auto;
        margin:0 auto;
        border-radius:20px;
      }

      .streyd-card.large .streyd-panel img{
        width:100%;
        height:auto;
        object-fit:contain;
      }
      .streyd-topic-grid{
        margin:auto 28px 0;
        grid-template-columns:repeat(2,1fr);
        row-gap:24px;
        padding-top:24px;
        padding-bottom:28px;
      }
      .streyd-topic:nth-child(2n){border-right:0;}
      .streyd-card-note{
        margin:0 28px 22px;
      }
    }

    .projects{
      background:#fff;
      padding-top:clamp(120px,10vw,150px);
      padding-bottom:clamp(120px,10vw,150px);
    }
    .project-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:24px;
    }
    .projects-slider-wrap{
      position:relative;
      margin-right:calc(clamp(24px,6vw,112px) * -1);
      overflow:visible;
      pointer-events:auto;
    }
    .projects-slider-wrap::before,
    .projects-slider-wrap::after{
      content:"";
      position:absolute;
      top:0;
      bottom:74px;
      width:clamp(90px,12vw,220px);
      z-index:2;
      pointer-events:none !important;
    }
    .projects-slider-wrap::before{
      left:calc(clamp(24px,6vw,112px) * -1);
      background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.9) 16%,rgba(255,255,255,0) 100%);
    }
    .projects-slider-wrap::after{
      right:0;
      background:linear-gradient(270deg,#fff 0%,rgba(255,255,255,.9) 16%,rgba(255,255,255,0) 100%);
    }
    .projects-slider{
      overflow:visible;
      padding-bottom:74px;
      pointer-events:auto;
      position:relative;
      z-index:2;
    }
    .projects-slider .swiper-wrapper{
      align-items:stretch;
      pointer-events:auto;
    }
    .projects-slider .swiper-slide{
      width:min(31.4vw,520px);
      min-width:360px;
      height:auto;
      pointer-events:auto;
    }
    .projects-slider .project-card{
      height:100%;
      min-height:clamp(520px,36vw,740px);
    }
    .projects-controls{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:10px;
      margin-top:-34px;
      padding-right:clamp(24px,6vw,112px);
      position:relative;
      z-index:14;
    }
    .projects-arrow{
      width:48px;
      height:48px;
      border-radius:999px;
      border:1px solid rgba(21,21,21,.12);
      background:rgba(255,255,255,.74);
      color:#151515;
      display:grid;
      place-items:center;
      cursor:pointer;
      transition:transform .2s ease, background .2s ease;
      backdrop-filter:blur(14px);
      position:relative;
    }
    .projects-arrow:hover{
      transform:translateY(-1px);
      background:#fff;
    }
    .projects-arrow::after{
      content:"";
      width:10px;
      height:10px;
      border-top:2px solid #151515;
      border-right:2px solid #151515;
      display:block;
    }
    .projects-next::after{
      transform:rotate(45deg) translate(-1px,1px);
    }
    .projects-prev::after{
      transform:rotate(-135deg) translate(-1px,1px);
    }
    .projects-pagination{
      position:static;
      width:auto !important;
      display:flex;
      gap:8px;
      align-items:center;
      margin:0 8px;
    }
    .projects-pagination .swiper-pagination-bullet{
      width:6px;
      height:6px;
      opacity:1;
      background:rgba(21,21,21,.16);
      margin:0 !important;
      transition:width .2s ease, background .2s ease;
    }
    .projects-pagination .swiper-pagination-bullet-active{
      width:22px;
      border-radius:99px;
      background:#151515;
    }
    .project-card{
      position:relative;
      min-height:clamp(440px,48vw,720px);
      border-radius:35px;
      overflow:hidden;
      background:#ddd;
      isolation:isolate;
      transform:translateZ(0);
      cursor:pointer;
      pointer-events:auto;
    }
    .project-card > img{
      width:100%;
      height:100%;
      object-fit:cover;
      position:absolute;
      inset:0;
      transition:transform .85s cubic-bezier(.2,.8,.2,1), filter .85s cubic-bezier(.2,.8,.2,1);
      pointer-events:none;
      -webkit-user-select:none;
      user-select:none;
    }
    .project-card:hover > img,
    .project-card.is-active > img{
      transform:scale(1.07);
      filter:blur(7px) saturate(.88) brightness(.82);
    }
    
    .project-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent 42%,rgba(0,0,0,.34));
      opacity:.88;
      transition:opacity .45s ease;
    }
    .project-card:hover::after,
    .project-card.is-active::after{opacity:.48}
    .project-logo-overlay{
      position:absolute;
      inset:0;
      z-index:5;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:clamp(2.2rem,4vw,5rem);
      line-height:1;
      letter-spacing:-.075em;
      font-weight:900;
      opacity:0;
      transform:scale(.96) translateY(0);
      transition:opacity .45s ease, transform .45s ease;
      text-shadow:0 18px 60px rgba(0,0,0,.28);
      pointer-events:none !important;
    }
    .project-card:hover .project-logo-overlay,
    .project-card.is-active .project-logo-overlay{
      opacity:1;
      transform:scale(1) translateY(-26%);
    }
    .project-info{
      position:absolute;
      left:28px;
      right:28px;
      bottom:26px;
      z-index:6;
      color:#fff;
      display:flex;
      justify-content:space-between;
      gap:20px;
      align-items:flex-end;
      pointer-events:none;
      transition:transform .5s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
    }
    .project-info h3 {
      width:50px;
      height:50px;
      border:1px solid #fff;
      border-radius:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      margin:0;
    }
    .project-card:hover .project-info,
    .project-card.is-active .project-info{
      transform:translateY(-8px);
    }
    .project-info h3{margin:0;font-size:clamp(1.6rem,2vw,3rem);line-height:.95;letter-spacing:-.06em;font-weight:300}
    .project-info p{margin:8px 0 0;color:rgba(255,255,255,.82);font-weight:500;font-size:.95rem}
    .project-info span{font-weight:300;letter-spacing:-.02em;color:rgba(255,255,255,.88)}

    .project-detail-panel{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:50%;
      z-index:4;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      gap:18px;
      padding:clamp(26px,3vw,30px);
      border-radius:42px 42px 0 0;
      background:rgba(255,255,255,.18);
      -webkit-backdrop-filter:blur(24px) saturate(1.22);
      backdrop-filter:blur(24px) saturate(1.22);
      transform:translate3d(0,101%,0);
      opacity:0;
      transition:transform .62s cubic-bezier(.2,.8,.2,1), opacity .42s ease;
      overflow:hidden;
      pointer-events:none !important;
    }
    .project-card:hover .project-detail-panel,
    .project-card.is-active .project-detail-panel{
      transform:translate3d(0,0,0);
      opacity:1;
    }
    .project-detail-panel small{
      font-size:.78rem;
      line-height:1;
      letter-spacing:.11em;
      text-transform:uppercase;
      font-weight:850;
      color:rgba(255,255,255,.78);
    }
    .project-detail-panel p{
      
      margin:0;
      font-size:clamp(1rem,1.35vw,1.35rem);
      line-height:1.22;
      letter-spacing:-.035em;
      font-weight:300;
      color:rgba(255,255,255,.9);
    }

    .projects-slider .swiper-slide:hover .project-card > img,
    .projects-slider .swiper-slide:focus-within .project-card > img{
      transform:scale(1.07);
      filter:blur(7px) saturate(.88) brightness(.82);
    }

    .projects-slider .swiper-slide:hover .project-card::after,
    .projects-slider .swiper-slide:focus-within .project-card::after{
      opacity:.48;
    }

    .projects-slider .swiper-slide:hover .project-logo-overlay,
    .projects-slider .swiper-slide:focus-within .project-logo-overlay{
      opacity:1;
      transform:scale(1) translateY(-26%);
    }

    .projects-slider .swiper-slide:hover .project-info,
    .projects-slider .swiper-slide:focus-within .project-info{
      transform:translateY(-8px);
    }

    .projects-slider .swiper-slide:hover .project-detail-panel,
    .projects-slider .swiper-slide:focus-within .project-detail-panel{
      transform:translate3d(0,0,0);
      opacity:1;
    }

    .brand-status {
        display: inline-block;
        margin-top: 18px;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.03em;
        color: rgba(255,255,255,.72);
    }
    .brand-status > span {
        font-size: 13px;
        font-weight: 500;
        margin-left: 3px;
        opacity: .9;
    }

    .services{
      background:#fff;
      padding-top:clamp(120px,10vw,150px);
      padding-bottom:clamp(120px,10vw,150px);
      overflow:hidden;
      position:relative;
    }
    .services-top{
      display:flex;
      justify-content:space-between;
      align-items:start;
      margin-bottom:50px;
    }
    .services-top h2{
      font-size:clamp(3.2rem,3vw,7.2rem);
      line-height:.86;
      letter-spacing:-.085em;
      margin:0;
      font-weight:400;     
    }
    .services-slider-wrap{
      position:relative;
      margin-right:calc(clamp(24px,6vw,112px) * -1);
    }
    .services-slider-wrap::before,
    .services-slider-wrap::after{
      content:"";
      position:absolute;
      top:0;
      bottom:68px;
      width:clamp(120px,16vw,260px);
      z-index:10;
      pointer-events:none;
    }
    .services-slider-wrap::before{
      left:calc(clamp(24px,6vw,112px) * -1);
      background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.92) 18%,rgba(255,255,255,0) 100%);
    }
    .services-slider-wrap::after{
      right:0;
      background:linear-gradient(270deg,#fff 0%,rgba(255,255,255,.92) 18%,rgba(255,255,255,0) 100%);
    }
    .services-slider{
      width:100%;
      overflow:visible;
      margin-right:0;
      padding-bottom:68px;
    }
    .services-slider .swiper-wrapper{
      align-items:stretch;
    }
    .services-slider .swiper-slide{
      width:min(430px,78vw);
      height:auto;
    }
    .services-controls{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:10px;
      margin-top:-34px;
      padding-right:clamp(24px,6vw,112px);
    }
    .services-arrow{
      width:48px;
      height:48px;
      border-radius:999px;
      border:1px solid rgba(21,21,21,.12);
      background:rgba(255,255,255,.72);
      color:#111;
      display:grid;
      place-items:center;
      cursor:pointer;
      transition:transform .2s ease, background .2s ease, opacity .2s ease;
      backdrop-filter:blur(14px);
      position:relative;
    }
    .services-arrow:hover{
      transform:translateY(-1px);
      background:#fff;
    }
    .services-arrow::after{
      content:"";
      width:10px;
      height:10px;
      border-top:2px solid #151515;
      border-right:2px solid #151515;
      display:block;
    }
    .services-next::after{
      transform:rotate(45deg) translate(-1px,1px);
    }
    .services-prev::after{
      transform:rotate(-135deg) translate(-1px,1px);
    }
    .services-pagination{
      position:static;
      width:auto !important;
      display:flex;
      gap:8px;
      align-items:center;
      margin-right:10px;
    }
    .services-pagination .swiper-pagination-bullet{
      width:6px;
      height:6px;
      opacity:1;
      background:rgba(21,21,21,.16);
      margin:0 !important;
      transition:width .2s ease, background .2s ease;
    }
    .services-pagination .swiper-pagination-bullet-active{
      width:22px;
      border-radius:99px;
      background:#111;
    }
    .service-card{
      height:100%;
      min-height:430px;
      border-radius:25px;
      padding:34px 38px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:0 18px 60px rgba(21,21,21,.045);
    }
    .service-card.lilac{background:#F2F2F2}
    .service-card.green{background:#ECECE7}
    .service-card.pink{background:#E6E6E1}
    .service-card.cream{background:#F7F7F4}
    .service-card.contact-slide{
      background:#151515;
      color:#fff;
      border-color:rgba(255,255,255,.08);
      box-shadow:0 22px 70px rgba(21,21,21,.16);
    }
    .service-card.contact-slide .service-no{
      color:rgba(255,255,255,.52);
    }
    .service-card.contact-slide .service-copy h3{
      color:#fff;
    }
    .service-card.contact-slide .service-copy p{
      color:rgba(255,255,255,.68);
    }
    .service-card.contact-slide{
      margin-left:0;
    }
    .service-card.contact-slide .pixel{
      display:none;
    }
    .service-contact-element{
      width:90px;
      height:90px;
      border-radius:22px;
      background:#fff;
      color:#151515;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:0 auto;
      flex-shrink:0;
      cursor:pointer;
      transition:transform .2s ease;
    }

    .service-contact-element:hover{
      transform:translateY(-1px);
    }

    .service-contact-element .service-icon-number{
      color:rgba(21,21,21,.55);
    }

    .service-contact-element .service-icon-code{
      color:#151515;
    }

    .service-contact-link{
      display:inline-block;
      margin-top:18px;
      color:#fff;
      font-weight:800;
      text-decoration:none;
      letter-spacing:-.01em;
    }

    .service-contact-link:hover{
      color:#fff;
      opacity:.85;
    }
    .service-contact-wrap{
      flex:1;
      width:100%;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .service-spacer-slide{
      width:clamp(220px,24vw,420px) !important;
      pointer-events:none;
      visibility:hidden;
    }

    .project-spacer-slide{
      width:clamp(220px,24vw,420px) !important;
      pointer-events:none;
      visibility:hidden;
    }

    .services-pagination .swiper-pagination-bullet:last-child{
      display:none;
    }
    .service-no{
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      font-size:.88rem;
      letter-spacing:.08em;
      color:#4f5664;
    }

    .service-icon{
      width:90px;
      height:90px;
      border-radius:22px;
      background:#151515;
      color:#fff;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:0 auto;
      flex-shrink:0;
    }

    .service-icon-number{
      position:absolute;
      top:10px;
      left:10px;
      font-size:.58rem;
      line-height:1;
      font-weight:400;
      color:rgba(255,255,255,.72);
      letter-spacing:.04em;
    }

    .service-icon-code{
      font-size:2rem;
      line-height:1;
      font-weight:500;
      letter-spacing:-.04em;
      transform:translateY(-2px);
    }
    .service-copy h3{
      margin:0 0 12px;
      font-size:.96rem;
      font-weight:820;
      letter-spacing:.02em;
      text-transform:uppercase;
    }
    .service-copy p{margin:0;max-width:270px;line-height:1.38;color:rgba(21,21,21,.68);font-size:.95rem}

    .beliefs{
      background:#fff;
      padding-top:clamp(120px,10vw,150px);
      padding-bottom:clamp(120px,10vw,150px);
      overflow:visible;
    }
    .beliefs-inner{
      display:grid;
      grid-template-columns:minmax(240px,.42fr) minmax(0,1fr);
      gap:clamp(48px,8vw,140px);
      align-items:start;
      overflow:visible;
    }
    .beliefs-kicker{
      position:-webkit-sticky;
      position:sticky;
      top:110px;
      align-self:start;
      z-index:2;
      transform:none !important;
      filter:none !important;
      will-change:auto;
    }
    .beliefs-kicker h2{
      margin:0;
      font-size:clamp(3.2rem,3vw,7.2rem);
      line-height:.9;
      letter-spacing:-.075em;
      font-weight:600;
    }
    .beliefs-kicker p{
      margin:28px 0 0;
      max-width:320px;
      color:#656b78;
      font-size:1.05rem;
      line-height:1.4;
      letter-spacing:-.025em;
      font-weight:420;
    }

    .belief-tabs{
      display:inline-flex;
      gap:6px;
      min-width:60%;
      margin-top:30px;
      padding:6px;
      border-radius:999px;
      background:#F2F2F2;
      border:1px solid rgba(21,21,21,.06);
    }

    .belief-tab{
      min-height:38px;
      padding:0 16px;
      border:0;
      border-radius:999px;
      background:transparent;
      color:#656b78;
      font-size:.8rem;
      line-height:1;
      font-weight:700;
      letter-spacing:.02em;
      text-transform:uppercase;
      cursor:pointer;
      flex:1 1 0;
      transition:background .2s ease, color .2s ease;
    }

    .belief-tab.is-active{
      background:#151515;
      color:#fff;
    }

    .belief-panel{
      display:none;
    }

    .belief-panel.is-active{
      display:block;
    }

    .beliefs-contact-btn{
      display:inline-flex;
      margin-top:16px;
      min-width:60%;
    }

    .black-action-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:52px;
      padding:0 24px;
      border-radius:29px;
      background:#151515;
      color:#fff !important;
      text-decoration:none !important;
      font-size:.98rem;
      line-height:1;
      font-weight:700;
      letter-spacing:-.015em;
      border:1px solid rgba(21,21,21,.12);
      transition:transform .2s ease, background .2s ease, opacity .2s ease;
      cursor:pointer;
    }

    .black-action-btn:hover{
      color:#fff;
      background:#000;
      transform:translateY(-1px);
      text-decoration:none;
    }
    .beliefs-list{
      display:grid;
      gap:10px;
    }
    .belief-item{
      border-radius:25px;
      background:#F2F2F2;
      overflow:hidden;
    }
    .belief-button{
      width:100%;
      min-height:82px;
      border:0;
      background:transparent;
      display:grid;
      grid-template-columns:58px 1fr 28px;
      align-items:center;
      gap:18px;
      padding:22px 26px;
      text-align:left;
      color:#151515;
      cursor:pointer;
    }
    .belief-item.belief-cta{
      background:#000;
    }
    .belief-cta .belief-button,
    .belief-cta .belief-no{
      color:#fff;
    }
    .belief-action{
      width:24px;
      height:24px;
      font-size:24px;
      justify-self:end;
    }
    .belief-button[aria-expanded="true"]{
      min-height:auto;
      padding-bottom:10px;
    }
    .belief-no{
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      font-size:.78rem;
      letter-spacing:.08em;
      color:#656b78;
    }
    .belief-button h3{
      margin:0;
      font-size:clamp(1.18rem,1.20vw,2rem);
      line-height:1.05;
      letter-spacing:-.04em;
      font-weight:420;
    }
    .belief-plus{
      width:24px;
      height:24px;
      position:relative;
      justify-self:end;
      transition:transform .35s cubic-bezier(.2,.8,.2,1);
    }
    .belief-plus::before{
      content:"";
      position:absolute;
      left:50%;
      top:50%;
      width:10px;
      height:10px;
      border-right:1.7px solid #151515;
      border-bottom:1.7px solid #151515;
      transform:translate(-50%,-65%) rotate(45deg);
      transition:transform .35s cubic-bezier(.2,.8,.2,1);
    }
    .belief-plus::after{
      display:none;
    }
    .belief-button[aria-expanded="true"] .belief-plus::before{
      transform:translate(-50%,-35%) rotate(-135deg);
    }
    .belief-body{
      padding:0 26px 24px 102px;
      color:#4f5664;
      font-size:clamp(.98rem,1.05vw,1.16rem);
      line-height:1.5;
      letter-spacing:-.025em;
      font-weight:390;
      max-width:860px;
    }
    .belief-body p{
      margin:0;
    }

    .big-statement{
      background:#fff;
      padding-top:clamp(82px,7vw,100px);
      padding-bottom:clamp(82px,7vw,100px);
    }
    .big-statement h2{
      max-width:950px;
      font-size:clamp(2.5rem,3.8vw,6.2rem);
      line-height:.95;
      letter-spacing:-.06em;
      font-weight:200;
      margin:0;
    }
    .big-statement h2 b{
      font-weight:600;
    }    

    .contact-card-section{
      background:#fff;
      padding:clamp(120px,10vw,150px) clamp(24px,6vw,112px) clamp(120px,10vw,150px);
    }
    .contact-card{
      min-height:clamp(480px,46vw,760px);
      border-radius:35px;
      overflow:hidden;
      display:grid;
      grid-template-columns:1fr 1fr;
      background:#F2F2F2;
    }
    .contact-visual{
      position:relative;
      min-height:480px;
      overflow:hidden;
      background:#F2F2F2;
    }

    .contact-visual-img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .contact-content{
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:flex-start;
      padding:clamp(42px,6vw,90px);
    }
    .contact-eyebrow{
      margin:0 0 26px;
      font-size:.8rem;
      letter-spacing:.11em;
      text-transform:uppercase;
      font-weight:850;
      color:#656b78;
    }
    .contact-content h2{
      max-width:620px;
      margin:0 0 34px;
      font-size:clamp(2.3rem,3.6vw,5.4rem);
      line-height:.96;
      letter-spacing:-.07em;
      font-weight:300;
    }
    .contact-content p{
      max-width:520px;
      margin:0 0 42px;
      color:#4f5664;
      font-size:clamp(1.05rem,1.25vw,1.35rem);
      line-height:1.38;
      letter-spacing:-.035em;
      font-weight:300;
    }
    .contact-data{
      display:grid;
      gap:14px;
      margin-bottom:42px;
      color:#151515;
      font-size:1rem;
    }
    .contact-data a,
    .contact-data span{
      color:#151515;
      text-decoration:none;
      font-weight:650;
    }
    .contact-data small{
      display:block;
      margin-bottom:4px;
      color:#656b78;
      font-size:.72rem;
      text-transform:uppercase;
      letter-spacing:.12em;
      font-weight:800;
    }
    .contact-actions{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:0;
    }
    .contact-go-element{
      width:96px;
      height:96px;
      border-radius:24px;
      background:#151515;
      color:#fff;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
      cursor:pointer;
      border:1px solid rgba(21,21,21,.08);
      transition:transform .2s ease, background .2s ease;
    }
    .contact-go-element:hover{
      transform:translateY(-2px);
      background:#111;
    }
    .contact-go-element .service-icon-number{
      color:rgba(255,255,255,.68);
    }
    .contact-go-element .service-icon-code{
      color:#fff;
    }
    .contact-go-link{
      display:inline-block;
      color:#151515;
      font-weight:850;
      font-size:1.15rem;
      letter-spacing:-.02em;
      text-decoration:none;
    }
    .contact-go-link:hover{
      color:#151515;
      opacity:.72;
      text-decoration:none;
    }

    .contact-modal .modal-dialog{
      max-width:100vw;
      width:100vw;
      height:100vh;
      margin:0;
    }
    .contact-modal .modal-content{
      min-height:100vh;
      border:0;
      border-radius:0;
      overflow:hidden;
      background:#151515;
      box-shadow:none;
    }
    .contact-modal .modal-body{
      padding:0;
      display:grid;
      grid-template-columns:minmax(360px,.82fr) minmax(0,1.18fr);
      min-height:100vh;
    }
    .modal-info{
      position:relative;
      padding:clamp(34px,5vw,74px);
      background:#151515;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      min-height:100vh;
    }
    .modal-info::before{
      content:"";
      position:absolute;
      width:620px;
      height:620px;
      right:-330px;
      bottom:-260px;
      border-radius:50%;
      background:rgba(255,255,255,.055);
      filter:blur(10px);
    }
    .modal-logo{
      position:relative;
      z-index:1;
      width:148px;
      height:auto;
      filter:invert(1);
    }
    .modal-label{
      position:relative;
      z-index:1;
      font-size:.78rem;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-weight:850;
      color:rgba(255,255,255,.52);
      margin-bottom:26px;
    }
    .modal-info h2{
      position:relative;
      z-index:1;
      max-width:560px;
      margin:0;
      font-size:clamp(2.7rem,3vw,6.2rem);
      line-height:.92;
      letter-spacing:-.08em;
      font-weight:500;
    }
    .modal-info p{
      position:relative;
      z-index:1;
      max-width:520px;
      margin:28px 0 0;
      color:rgba(255,255,255,.68);
      font-size:clamp(1rem,1.25vw,1.25rem);
      line-height:1.38;
      letter-spacing:-.035em;
      font-weight:200;
    }
    .modal-data{
      position:relative;
      z-index:1;
      display:grid;
      gap:18px;
      color:rgba(255,255,255,.9);
    }
    .modal-data small{
      display:block;
      margin-bottom:5px;
      color:rgba(255,255,255,.45);
      font-size:.72rem;
      text-transform:uppercase;
      letter-spacing:.12em;
      font-weight:850;
    }
    .modal-data a,
    .modal-data span{
      color:#fff;
      text-decoration:none;
      font-weight:650;
    }
    .modal-form-jump{
      display:none;
    }
    .modal-form-area{
      position:relative;
      background:#F2F2F2;
      min-height:100vh;
      padding:clamp(28px,4vw,64px);
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .modal-close{
      position:fixed;
      top:28px;
      right:28px;
      z-index:1060;
      width:54px;
      height:54px;
      border-radius:999px;
      border:1px solid rgba(21,21,21,.12);
      background:rgba(255,255,255,.86);
      color:#151515;
      display:grid;
      place-items:center;
      font-size:1.5rem;
      line-height:1;
      cursor:pointer;
      backdrop-filter:blur(14px);
      transition:transform .2s ease, background .2s ease;
    }
    .modal-close:hover{
      transform:rotate(90deg);
      background:#fff;
    }
    .fillout-placeholder{
      flex:0 1 auto;
      min-height:min(760px,calc(100vh - 128px));
      border-radius:34px;
      border:1px solid rgba(21,21,21,.08);
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:36px;
      color:#656b78;
      box-shadow:0 24px 80px rgba(21,21,21,.07);
    }
    .fillout-placeholder strong{
      display:block;
      color:#151515;
      margin-bottom:10px;
      font-size:clamp(1.6rem,2.4vw,3rem);
      line-height:.96;
      letter-spacing:-.06em;
      font-weight:520;
    }
    .fillout-placeholder code{
      display:inline-block;
      margin-top:18px;
      padding:8px 12px;
      border-radius:10px;
      background:#F2F2F2;
      color:#151515;
      font-size:.85rem;
    }
    .fillout-iframe{
      width:100%;
      height:100%;
      min-height:720px;
      border:0;
      border-radius:28px;
      background:#fff;
    }

    .footer{
      min-height:100vh;
      background:#F2F2F2;
      background-image:url('/images/map.webp');
      background-repeat:no-repeat;
      background-position:right center;
      background-size:min(62vw, 1100px);
      color:#151515;
      padding:clamp(28px,4vw,44px) clamp(24px,6vw,112px) 125px;
      margin-top:40px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .footer-top{
      display:flex;
      justify-content:flex-end;
      align-items:flex-start;
      gap:32px;
      position:absolute;
      right:clamp(24px,6vw,112px);
      bottom:34px;
      z-index:2;
    }
    .footer-icon{
      width:36px;
      height:auto;
    }
    .footer-tags{
      display:flex;
      gap:16px;
      align-items:center;
      font-size:.78rem;
      font-weight:800;
      letter-spacing:.08em;
      padding-top:0;
    }
    .footer-main{
      display:grid;
      grid-template-columns:minmax(0,1fr);
      gap:clamp(38px,6vw,90px);
      align-items:start;
      padding:clamp(110px,14vw,190px) 0 clamp(110px,16vw,210px);
    }
    .footer-claim h2{
      max-width:980px;
      font-size:clamp(2.5rem,3.8vw,6.2rem);
      line-height:.95;
      letter-spacing:-.06em;
      margin:0 0 52px;
      font-weight:600;
    }

    .footer-claim h2 span{
      color:#656b78;
      font-weight:200;
    }
    .footer-contact-row{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:32px;
      flex-wrap:wrap;
      max-width:980px;
    }
    .footer-mail{
      display:inline-flex;
      flex-direction:column;
      gap:10px;
      color:#151515;
      text-decoration:none;
      font-size:clamp(1.65rem,2.3vw,2.9rem);
      line-height:1;
      letter-spacing:-.055em;
      font-weight:520;
    }
    .footer-mail::after{
      content:"";
      width:42px;
      height:2px;
      background:#151515;
      display:block;
    }
    button.footer-mail{
      border:0;
      background:transparent;
      padding:0;
      cursor:pointer;
      text-align:left;
    }
    .footer-bottom{
      display:flex;
      justify-content:flex-start;
      align-items:flex-end;
      gap:32px;
      font-size:1rem;
    }
    .footer-links{
      display:flex;
      gap:34px;
      flex-wrap:wrap;
    }
    .footer-cookie-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      line-height:1;
    }

    .footer-cookie-link .material-symbols-outlined{
      font-size:22px;
      line-height:1;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      transform:translateY(-1px);
    }
    .footer-cookie-link:hover{
      text-decoration:none !important;
    }

    .footer-cookie-link:hover span:last-child{
      text-decoration:underline;
      text-underline-offset:5px;
    }
    .footer a{color:#151515;text-decoration:none;font-weight:620}
    .footer a:hover{text-decoration:underline;text-underline-offset:5px}
    .footer-cookie-link:hover{text-decoration:none}
    .footer-meta{
      color:#656b78;
      font-size:.95rem;
    }

    @media (max-width: 991.98px){
      .side-meta{display:none}
      .side-tags{right:20px;bottom:20px;font-size:.68rem;gap:12px}
      .nav-minimal{
        height:66px;
        padding-inline:20px;
        background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,0));
        -webkit-backdrop-filter:blur(10px);
        backdrop-filter:blur(10px);
        mask-image:linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
        -webkit-mask-image:linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
        opacity:0;
        transform:translateY(-10px);
        pointer-events:none;
        transition:opacity .28s ease, transform .28s ease;
      }
      .nav-minimal.is-visible{
        opacity:1;
        transform:translateY(0);
        pointer-events:auto;
      }
      .hero{padding-top:90px;min-height:auto}
      .hero-logo{padding:9vh 18px 8vh}
      .hero-logo h1{font-size:clamp(4.8rem,21vw,9rem)}
      .hero-subline{
        margin-top:26px;
        display:grid;
        grid-template-columns:auto auto;
        justify-content:center;
        align-items:center;
        column-gap:.28em;
        row-gap:0;
        font-size:clamp(1.15rem,5.5vw,1.45rem);
        line-height:1.1;
        white-space:nowrap;
      }
      .hero-subline > span:first-child{
        display:inline;
      }
      .word-rotator{
        min-width:4.6em;
        height:1.45em;
        padding-bottom:.16em;
      }
      @media (max-width: 430px){
        .hero-subline{
          font-size:clamp(1rem,5.1vw,1.24rem);
          column-gap:.24em;
        }
        .word-rotator{min-width:4.45em}
      }
      .marquee-wrap::before,
      .marquee-wrap::after{
        width:96px;
      }

      .marquee-wrap::before{
        left:-2px;
      }

      .marquee-wrap::after{
        right:-2px;
      }
      .pill-image{width:190px;height:350px;border-radius:30px;padding:6px;gap:6px}
      .pill-image .split-half:first-child,
      .pill-image .split-half:last-child{border-radius:24px}
      .bottom-blur{height:76px}
      .section-head,.services-top{align-items:flex-start;flex-direction:column}
      .project-grid{grid-template-columns:1fr}
      .projects-slider-wrap::before,
      .projects-slider-wrap::after{bottom:62px;width:90px}
      .projects-slider-wrap::before{left:-20px}
      .projects-slider{padding-bottom:62px}
      .projects-slider .swiper-slide{width:min(82vw,390px);min-width:0}
      .projects-slider .project-card{min-height:560px;border-radius:34px}
      .projects-controls{justify-content:flex-start;margin-top:-38px}
      .projects-arrow{width:46px;height:46px}
      .project-info{left:24px;right:24px;bottom:24px}
      .project-detail-panel{height:52%;padding:26px;border-radius:34px 34px 0 0}
      .service-card{min-height:360px;padding:30px}
      .beliefs-inner{grid-template-columns:1fr;gap:38px}
      .beliefs-kicker{position:relative;top:auto;transform:none !important;filter:none !important}
      .beliefs-list{min-height:auto}
      .beliefs-kicker p{max-width:100%}
      .belief-tabs{margin-top:24px}
      .belief-button{grid-template-columns:40px 1fr 24px;gap:12px;padding:20px 18px;min-height:78px}
      .belief-button h3{font-size:clamp(1.12rem,5vw,1.55rem)}
      .belief-button[aria-expanded="true"]{min-height:auto;padding-bottom:10px}
      .belief-body{padding:0 18px 22px 70px;font-size:.98rem}
      .belief-plus{width:24px;height:24px}
      .services-slider-wrap{margin-right:-20px}
      .services-slider-wrap::before,
      .services-slider-wrap::after{bottom:62px;width:90px}
      .services-slider-wrap::before{left:-20px}
      .services-slider{margin-right:0;padding-bottom:62px}
      .services-controls{justify-content:flex-start;margin-top:-38px;padding-right:20px}
      .services-arrow{width:46px;height:46px}
      .service-card.contact-slide{margin-left:0}
      .service-spacer-slide{width:90px !important}
      .project-spacer-slide{width:90px !important}
      .footer{min-height:auto;padding:28px 24px 32px
        background-position:right bottom;
        background-size:95vw;
      }
      .contact-card-section{padding:36px 20px 92px}
      .contact-card{grid-template-columns:1fr;border-radius:34px}
      .contact-visual{min-height:320px}
      .contact-content{padding:38px 28px 44px}
      .contact-content h2{font-size:clamp(2.2rem,11vw,4rem)}
      .contact-modal .modal-dialog{
        max-width:100vw;
        width:100vw;
        height:100dvh;
        margin:0;
      }

      .contact-modal .modal-content{
        height:100dvh;
        min-height:100dvh;
        border-radius:0;
        overflow:hidden;
      }

      .contact-modal .modal-body{
        display:block;
        height:100dvh;
        min-height:0;
        overflow-y:auto;
        overflow-x:hidden;
        -webkit-overflow-scrolling:touch;
        overscroll-behavior:contain;
      }

      .modal-data{
        padding-bottom:26px;
      }
      body.modal-open{
        overflow:hidden !important;
      }

      .contact-modal.modal{
        overflow:hidden !important;
      }

      .modal-info{
        min-height:100dvh;
        padding:82px 28px 54px;
      }

      .modal-info h2{
        font-size:clamp(2.5rem,11vw,4rem);
        max-width:310px;
      }

      .modal-info p{
        margin-top:26px;
        font-size:1rem;
        line-height:1.35;
      }

      .modal-logo{width:120px}

      .modal-form-jump{
        position:relative;
        z-index:1;
        margin-top:26px;
        display:inline-flex;
        align-items:center;
        gap:8px;
        min-height:44px;
        padding:0 18px;
        border:1px solid rgba(255,255,255,.18);
        border-radius:999px;
        background:rgba(255,255,255,.08);
        color:#fff;
        font-size:.92rem;
        line-height:1;
        font-weight:760;
        letter-spacing:-.015em;
        cursor:pointer;
        backdrop-filter:blur(12px);
        -webkit-backdrop-filter:blur(12px);
      }

      .modal-form-jump .material-symbols-outlined{
        font-size:20px;
        line-height:1;
      }

      .modal-form-area{
        min-height:100dvh;
        padding:0;
        display:block;
        overflow:visible;
      }

      .tally-placeholder,
      .tally-iframe{
        width:100%;
        min-height:100dvh;
        height:100dvh;
      }

      .modal-form-area{
        min-height:auto;
        padding:0;
        display:block;
        overflow:visible;
      }

      .modal-close{
        top:18px;
        right:18px;
        width:48px;
        height:48px;
      }

      .fillout-placeholder{
        min-height:620px;
        border-radius:0;
        border:0;
        box-shadow:none;
        padding:0;
      }

      .fillout-iframe,
      .tally-iframe{
        width:100%;
        border:0;
        border-radius:0;
        display:block;
        overflow:hidden;
      }

      .tally-placeholder{
        width:100%;
        height:760px;
        overflow:hidden;
      }
      .footer-top{right:24px;bottom:32px}
      .footer-main{grid-template-columns:1fr;padding:86px 0 92px;gap:62px}
      .footer-claim h2{font-size:clamp(2.5rem,3.8vw,6.2rem);line-height:.95;letter-spacing:-.06em}
      .footer-contact-row{align-items:flex-start;flex-direction:column;gap:28px}
      .footer-bottom{
        align-items:flex-start;
        flex-direction:column-reverse;
        gap:14px;
      }
      .footer-links{
        display:grid;
        grid-template-columns:1fr 1fr;
        column-gap:26px;
        row-gap:16px;
        width:100%;
        max-width:320px;
      }
      .footer-cookie-link{
        grid-column:1 / -1;
      }
      .footer-meta{
        margin-top:2px;
      }
    }

/* Legal pages */
.legal-page{
  min-height:100vh;
  background:#fff;
  color:#151515;
}

.legal-nav{
  mix-blend-mode:normal;
}

.legal-back-link{
  position:fixed;
  top:28px;
  right:clamp(22px,4vw,52px);
  z-index:80;
  color:#151515;
  text-decoration:none;
  font-size:.95rem;
  font-weight:720;
  letter-spacing:-.02em;
  padding-bottom:5px;
  border-bottom:2px solid #151515;
}

.legal-back-link:hover{
  color:#151515;
  opacity:.72;
  text-decoration:none;
}

.legal-main{
  width:min(1120px,calc(100% - 44px));
  margin:0 auto;
  padding:clamp(120px,14vw,190px) 0 clamp(80px,10vw,140px);
}

.legal-hero{
  max-width:780px;
  margin-bottom:clamp(38px,6vw,74px);
}

.legal-eyebrow{
  margin:0 0 18px;
  color:#656b78;
  font-size:.78rem;
  line-height:1;
  font-weight:820;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.legal-hero h1{
  margin:0;
  color:#151515;
  font-size:clamp(4rem,10vw,9rem);
  line-height:.88;
  letter-spacing:-.09em;
  font-weight:760;
}

.legal-hero p{
  margin:28px 0 0;
  color:#656b78;
  font-size:clamp(1.05rem,1.6vw,1.4rem);
  line-height:1.35;
  letter-spacing:-.035em;
  font-weight:390;
}

.legal-card{
  border-radius:42px;
  background:#F2F2F2;
  border:1px solid rgba(21,21,21,.06);
  padding:clamp(28px,5vw,66px);
}

.legal-grid{
  display:grid;
  grid-template-columns:minmax(160px,.28fr) minmax(0,1fr);
  gap:0 clamp(28px,5vw,74px);
}

.legal-label,
.legal-content{
  padding:28px 0;
  border-bottom:1px solid rgba(21,21,21,.08);
}

.legal-label{
  color:#656b78;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-size:.82rem;
  line-height:1.2;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.legal-content{
  color:#151515;
  font-size:clamp(1.05rem,1.35vw,1.25rem);
  line-height:1.5;
  letter-spacing:-.035em;
  font-weight:390;
}

.legal-content p{margin:0;}
.legal-content p + p{margin-top:14px;}

.legal-content a{
  color:#151515;
  text-decoration:underline;
  text-underline-offset:5px;
}

.legal-grid > :nth-last-child(-n+2){
  border-bottom:0;
}

.legal-footer{
  min-height:auto;
  padding-top:40px;
  margin-top:60px;
}

@media (max-width:760px){
  .legal-main{
    width:calc(100% - 32px);
    padding-top:118px;
  }

  .legal-card{
    border-radius:30px;
    padding:26px;
  }

  .legal-grid{
    grid-template-columns:1fr;
  }

  .legal-label{
    padding:24px 0 8px;
    border-bottom:0;
  }

  .legal-content{
    padding:0 0 24px;
  }
}

.tally-placeholder{
  width:100%;
  height:100%;
}

.tally-iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}



    .legal-main{
      max-width:1040px !important;
      padding-top:clamp(96px,9vw,132px) !important;
      padding-bottom:clamp(72px,8vw,112px) !important;
    }

    .legal-hero{
      max-width:880px !important;
      margin:0 auto clamp(34px,4.5vw,56px) !important;
      padding:0 !important;
    }

    .legal-title-single{
      max-width:none !important;
      white-space:nowrap;
      font-size:clamp(3.7rem,7.6vw,5.2rem) !important;
      line-height:.88 !important;
      letter-spacing:-0.06em !important;
    }
    
    .legal-hero p{
      margin-top:22px !important;
      max-width:620px;
    }

    .legal-card-minimal{
      max-width:960px !important;
      margin:0 auto !important;
      padding:0 !important;
      border-radius:18px !important;
      background:#fff !important;
      border:1px solid rgba(21,21,21,.09) !important;
      box-shadow:none !important;
      overflow:hidden;
    }

    .legal-card-minimal .legal-grid{
      max-width:none !important;
      margin:0 !important;
      grid-template-columns:minmax(180px,.32fr) minmax(0,1fr) !important;
      gap:0 !important;
    }

    .legal-card-minimal .legal-label,
    .legal-card-minimal .legal-content{
      padding:28px 34px !important;
      border-bottom:1px solid rgba(21,21,21,.075) !important;
    }

    .legal-card-minimal .legal-label{
      background:#f7f7f7;
      color:#7a808c !important;
      font-size:.72rem !important;
      letter-spacing:.08em !important;
    }

    .legal-card-minimal .legal-content{
      background:#fff;
      font-size:clamp(1rem,1.05vw,1.12rem) !important;
      line-height:1.55 !important;
      letter-spacing:-.03em !important;
    }

    .legal-card-minimal .legal-content strong{
      font-weight:720;
    }

    .legal-card-minimal .legal-grid > :nth-last-child(-n+2){
      border-bottom:0 !important;
    }

    @media (max-width:760px){
      .legal-title-single{
        white-space:normal;
      }

      .legal-card-minimal{
        border-radius:16px !important;
      }

      .legal-card-minimal .legal-grid{
        grid-template-columns:1fr !important;
      }

      .legal-card-minimal .legal-label{
        padding:24px 24px 8px !important;
        background:#fff;
        border-bottom:0 !important;
      }

      .legal-card-minimal .legal-content{
        padding:0 24px 24px !important;
      }
    }

    .privacy-content{
      max-width:860px;
      margin:0 auto;
      padding:clamp(34px,5vw,58px);
    }

    .privacy-content h2{
      margin:0 0 18px;
      font-size:clamp(1.2rem,1.5vw,1.55rem);
      line-height:1.15;
      letter-spacing:-.045em;
    }

    .privacy-content h2:not(:first-child){
      margin-top:54px;
    }

    .privacy-content p,
    .privacy-content li{
      color:#4f5560;
      font-size:clamp(1rem,1.05vw,1.12rem);
      line-height:1.62;
      letter-spacing:-.025em;
    }

    .privacy-content p{
      margin:0 0 18px;
    }

    .privacy-content ul{
      margin:0 0 22px;
      padding-left:1.2em;
    }

    .privacy-content a{
      color:inherit;
      text-decoration-thickness:1px;
      text-underline-offset:4px;
    }

    @media (max-width:760px){
      .privacy-content{
        padding:28px 22px 34px;
      }

      .privacy-content h2:not(:first-child){
        margin-top:42px;
      }
    }    