/* ================================================================
   NUMENHAUS — Exact Yodezeen Replica
   Finlandia Palette · Custom Fonts · Full Interaction Suite
================================================================ */

/* ---- FONT FACES ---- */
@font-face {
  font-family: 'Aristotelica';
  src: url('../assets/fonts/Aristotelica_Display_ExtraLight_Trial.ttf') format('truetype');
  font-weight: 200;
  font-display: block;
}
@font-face {
  font-family: 'Aristotelica';
  src: url('../assets/fonts/Aristotelica_Display_DemiBold_Trial.ttf') format('truetype');
  font-weight: 600;
  font-display: block;
}
@font-face {
  font-family: 'AristSC';
  src: url('../assets/fonts/AristotelicaSmallCaps-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: block;
}
@font-face {
  font-family: 'MonCheri';
  src: url('../assets/fonts/tan-mon-cheri.ttf') format('truetype');
  font-weight: 400;
  font-display: block;
}
@font-face {
  font-family: 'Brittany';
  src: url('../assets/fonts/BrittanySignature.ttf') format('truetype');
  font-weight: 400;
  font-display: block;
}

/* ---- CSS VARIABLES ---- */
:root {
  /* Finlandia palette — PASTEL SAGE.
     Desaturated, dusty greens with a gentle airy feel.
     Backgrounds still hold enough contrast for white text. */
  --n950: #2b3933;  /* deep dusty sage — main body bg */
  --n900: #3c4d44;  /* dusty sage — WE DO section bg */
  --n800: #4d5f54;  /* mid-dusty sage — monograph section bg */
  --n700: #607066;  /* mid sage */
  --n600: #76877c;  /* lift toward pastel */
  --n500: #8da393;  /* primary brand pastel sage */
  --n400: #a8bcaf;  /* accent pastel — links, active states */
  --n300: #c4d3c8;  /* light pastel */
  --n200: #dae5dd;  /* very pale pastel */
  --n100: #ebf0eb;  /* almost mint */
  --n50:  #f6f8f5;  /* cream-mint */
  --cream:  #f5f4f0;
  --cream2: #edecea;

  /* Font families */
  --fd:    'Aristotelica', Georgia, serif;
  --fd-sc: 'AristSC', serif;
  --fmc:   'MonCheri', sans-serif;
  --fs:    'Brittany', cursive;
  --fb:    'Jost', sans-serif;

  /* Layout */
  /* On wide screens, --g scales up so all content stays in a ~1440px centered area. */
  --g: max(56px, calc((100vw - 1440px) / 2));
  /* Taller nav to match Yodezeen */
  --nav-h: clamp(100px, 7.5vw, 140px);
}

/* ================================================================
   RESET + FOUNDATION POLISH
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  /* clip (not hidden): hidden creates a scroll container, which detaches
     position:sticky from the viewport and kills all pinned sections */
  overflow-x: clip;
  /* native jumps; the scroll.js lerp layer supplies the smoothness —
     CSS smooth-behavior would double-animate against it */
  scroll-behavior: auto;
  /* Prevent rubber-band overscroll glow / bounce chaining */
  overscroll-behavior-y: none;
}
body {
  background: var(--n950);
  color: var(--cream);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;   /* see html note — hidden would break sticky pinning */
  cursor: none;
  /* Crisp text rendering across platforms — agency-grade typography */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Kill the grey tap-flash on mobile browsers */
  -webkit-tap-highlight-color: transparent;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font: inherit; color: inherit; }

/* Themed text selection — sage on dark, on-brand */
::selection {
  background: var(--n500);
  color: #fff;
}
::-moz-selection {
  background: var(--n500);
  color: #fff;
}

/* Thin themed scrollbar (WebKit + Firefox) */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--n600) var(--n950);
}
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--n950); }
::-webkit-scrollbar-thumb {
  background: var(--n700);
  border-radius: 99px;
  border: 2px solid var(--n950);
}
::-webkit-scrollbar-thumb:hover { background: var(--n500); }

/* Keyboard-only focus rings — invisible for mouse users, clear for tab users */
:focus { outline: none; }
:focus-visible {
  outline: 1.5px solid var(--n400);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ================================================================
   HAMBURGER / MOBILE NAV DRAWER
================================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  /* 44×44 = Apple/Material recommended minimum touch target */
  width: 44px;
  height: 44px;
  cursor: none;
  background: none;
  border: none;
  padding: 10px;
  z-index: 800;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,.5);
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .3s, width .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;                       /* full viewport — scrollable if content overflows */
  z-index: 690;
  background: rgba(43,57,51,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: .5px solid rgba(255,255,255,.06);
  padding: 100px 32px 52px;
  transform: translateY(-100%);
  transition: transform .7s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#mobile-drawer.open { transform: translateY(0); }
.mobile-nav-link {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(28px, 7vw, 44px);
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  padding: 16px 0;
  border-bottom: .5px solid rgba(255,255,255,.06);
  transition: color .3s;
  display: block;
}
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-cta {
  margin-top: 32px;
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--n400);
  border: .5px solid rgba(114,149,128,.35);
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  transition: background .3s;
}
.mobile-nav-cta:hover { background: var(--n500); }

/* ================================================================
   CUSTOM CURSOR — exact Yodezeen: lagged ring + dot + "view project" label
================================================================ */
#cur {
  position: fixed;
  width: 14px; height: 14px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(.16,1,.3,1),
              height .35s cubic-bezier(.16,1,.3,1),
              background .35s,
              border-color .35s,
              opacity .3s;
  mix-blend-mode: difference;
}
#cur.big {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.35);
}
#cur.view {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
}
#curdot {
  position: fixed;
  width: 3px; height: 3px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
#curlabel {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  transform: translate(-50%, 24px);
  opacity: 0;
  transition: opacity .25s;
}
#curlabel.on { opacity: 1; }
@media (hover: none) { #cur, #curdot, #curlabel { display: none; } body { cursor: auto; } }

/* ================================================================
   PAGE TRANSITION OVERLAY
================================================================ */
#pt {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: var(--n950);
  transform: translateY(100%);
  will-change: transform;
}

/* ================================================================
   PRELOADER (homepage only) — Yodezeen-style intro with looping video
================================================================ */
#pl {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: var(--n950);
  overflow: hidden;
  /* Fade out only — no slide. Because the video's last frame and the hero
     background image are identical (matched overlay + scale), a clean opacity
     dissolve is invisible. Refined ease for a silky, gradual dissolve. */
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1), visibility 0s linear 1.4s;
}
#pl.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* While fading out, also fade the text overlay slightly faster so it disappears
   first, leaving the matching hero frame to dissolve through cleanly. */
#pl.hide .pl-content {
  opacity: 0;
  transition: opacity .6s ease-out;
}
/* Video background — fills the screen behind the text */
#pl .pl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Subtle scale-in over the FULL intro duration. Ends at scale(1.05) to exactly
     match .hero-bg's resting scale, so the dissolve has zero zoom jump. */
  animation: plZoom 8s linear forwards;
}
@keyframes plZoom {
  from { transform: scale(1.09); }
  to   { transform: scale(1.05); }
}
/* Dark gradient overlay — MUST be identical to .hero-bg::after so the
   dissolve between the video's last frame and the hero poster shows zero
   color/brightness shift. This is the key to a seamless Yodezeen-style cut. */
#pl .pl-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(15,22,30,.35) 0%,
    rgba(15,22,30,.05) 35%,
    rgba(15,22,30,.45) 80%,
    rgba(15,22,30,.75) 100%
  );
  pointer-events: none;
}
/* Text stack — centered on top of video */
#pl .pl-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 var(--g);
  text-align: center;
}
#pl-label {
  font-family: var(--fd-sc);
  font-size: clamp(9px, .75vw, 11px);
  letter-spacing: .36em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s, transform .7s;
}
#pl-title {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: .12em;
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s .2s, transform .9s .2s;
}
#pl-sub {
  font-family: var(--fs);
  font-size: clamp(24px, 3.2vw, 44px);
  color: var(--n200);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s .5s, transform .7s .5s;
}
#pl.show #pl-label,
#pl.show #pl-title,
#pl.show #pl-sub { opacity: 1; transform: translateY(0); }
#pl-skip {
  position: absolute;
  bottom: clamp(28px, 3vw, 48px);
  right: clamp(28px, 3vw, 48px);
  z-index: 4;
  font-family: var(--fd-sc);
  font-size: clamp(9px, .7vw, 11px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: .5px solid rgba(255,255,255,.18);
  padding: 10px 20px;
  border-radius: 999px;
  transition: color .3s, background .3s, border-color .3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#pl-skip:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

/* ================================================================
   GALLERY CONTROLS — fixed top-right
================================================================ */
#gc {
  position: fixed;
  /* Sit just below the nav so it never collides with nav links */
  top: calc(var(--nav-h) + 12px);
  right: var(--g);
  z-index: 800;
  /* Hidden by default — JS shows it only on pages with .gallery-img */
  display: none;
  align-items: center;
  gap: 28px;
}
.gc-btn {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .3s;
  cursor: none;
}
.gc-btn:hover { color: rgba(255,255,255,.8); }
.gc-sep {
  width: .5px;
  height: 14px;
  background: rgba(255,255,255,.15);
}

/* ================================================================
   NAVIGATION — 3-column Yodezeen exact
================================================================ */
/* ────────────────────────────────────────────────────────────
   NAVIGATION — Yodezeen exact replica
   Layout: 3-col grid (1fr | auto | 1fr) where the side columns
   stretch full-width and use space-between to push items to the
   outer edge + inner edge of their half. Yodezeen pattern.
──────────────────────────────────────────────────────────── */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 700;
  height: var(--nav-h);
  /* Single flex container — all items siblings, spread evenly */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* IMPORTANT: nav uses full viewport width with fixed edge padding,
     NOT capped at 1440px like content sections. This makes items spread
     across the entire viewport like Yodezeen. */
  padding: 0 clamp(40px, 4vw, 80px);
  transition: background .5s, height .4s;
  background: linear-gradient(to bottom, rgba(43,57,51,.5) 0%, rgba(43,57,51,0) 100%);
}
nav#nav.scrolled {
  background: rgba(43,57,51,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  height: 78px;
  border-bottom: .5px solid rgba(114,149,128,.12);
}

/* Left and right groups: containers that each absorb HALF the remaining space.
   Inside each group, items are spread by space-around — exactly like Yodezeen. */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1 1 0;
  height: 100%;
  list-style: none;
}
.nav-left { padding-right: clamp(30px, 2.5vw, 50px); }
.nav-right { padding-left: clamp(30px, 2.5vw, 50px); }
.nav-left li,
.nav-right li {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
}
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  text-decoration: none;
  flex: 0 0 auto;
}

/* Wordmark — Yodezeen scale and weight */
.nav-logo {
  display: none;
}
.nav-logo-text {
  font-family: var(--fd);
  font-weight: 600;
  /* Bigger, bolder — Yodezeen sizing */
  font-size: clamp(30px, 2.6vw, 42px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
nav#nav.scrolled .nav-logo-text {
  font-size: clamp(22px, 1.8vw, 28px);
}
/* Tagline — Yodezeen has none; keep ours dim and small below logo */
.nav-logo-tagline {
  position: absolute;
  top: calc(50% + clamp(15px, 1.5vw, 24px));
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fb);
  font-weight: 300;
  font-size: clamp(8px, .55vw, 10px);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}

/* Nav link — Yodezeen letter-spacing and weight */
.nl {
  display: flex;
  align-items: center;
  height: clamp(18px, 1.4vw, 24px);
  overflow: hidden;
}
.nl .s {
  display: flex;
  flex-direction: column;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.nl span {
  font-family: var(--fmc);
  /* Slightly bigger, wider letter-spacing — Yodezeen pattern */
  font-size: clamp(12px, .9vw, 15px);
  letter-spacing: .4em;
  text-transform: uppercase;
  height: clamp(18px, 1.4vw, 24px);
  line-height: clamp(18px, 1.4vw, 24px);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nl span:nth-child(1) { color: rgba(255,255,255,.78); }
.nl span:nth-child(2) { color: rgba(255,255,255,.32); }
.nl span:nth-child(3) { color: rgba(255,255,255,.1); }
.nl:hover .s { transform: translateY(-33.333%); }

/* LET'S TALK — ROUNDED PILL with "+" icon (Yodezeen exact) */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, .7vw, 14px);
  height: auto;
  overflow: visible;
}
.nav-cta .s {
  /* Pill: fully rounded border */
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  padding: clamp(13px, 1.1vw, 17px) clamp(30px, 2.4vw, 42px);
  transition: background .3s, border-color .3s;
  height: auto;
  overflow: visible;
}
.nav-cta .s span:nth-child(2),
.nav-cta .s span:nth-child(3) { display: none; }
.nav-cta .s span { color: rgba(255,255,255,.85) !important; }
.nav-cta:hover .s {
  background: var(--n500);
  border-color: var(--n500);
  transform: none !important;
}
.nav-cta:hover .s span { color: #fff !important; }

/* "+" icon next to the LET'S TALK pill (Yodezeen pattern) */
.nav-cta-plus {
  font-family: var(--fb);
  font-weight: 300;
  font-size: clamp(20px, 1.5vw, 26px);
  color: rgba(255,255,255,.85);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: transform .35s cubic-bezier(.16,1,.3,1), color .3s;
}
.nav-cta:hover ~ .nav-cta-plus,
.nav-cta:hover + .nav-cta-plus {
  transform: rotate(90deg);
  color: #fff;
}

/* ================================================================
   SCROLL PROGRESS BAR
================================================================ */
#spb {
  position: fixed;
  top: 0; left: 0;
  height: 1.5px;
  background: var(--n400);
  z-index: 9000;
  width: 0%;
  transition: width .1s linear;
}

/* ================================================================
   HERO
================================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--n950);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/projects/HERO-poster.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform .1s linear;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Lighter overlay for the moonlit night frame — keep the warm interior glow
     and starry sky visible. Vignette is concentrated at top and bottom edges
     so the headline / project label corners remain readable. */
  background: linear-gradient(
    to bottom,
    rgba(15,22,30,.35) 0%,
    rgba(15,22,30,.05) 35%,
    rgba(15,22,30,.45) 80%,
    rgba(15,22,30,.75) 100%
  );
}
.hero-project-label {
  position: absolute;
  bottom: 52px;
  left: var(--g);
  z-index: 10;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s 1.2s, transform .7s 1.2s;
}
.hero-project-label.vis,
body.intro-done .hero-project-label { opacity: 1; transform: translateY(0); transition: opacity .8s .7s, transform .8s .7s; }
.hpl-type {
  font-family: var(--fd-sc);
  font-size: 8.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 6px;
}
.hpl-name {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  margin-bottom: 3px;
}
.hpl-loc {
  font-family: var(--fd-sc);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 16px;
}
/* "view project →" CTA inside the hero project label */
.hpl-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--fd-sc);
  font-size: clamp(9px, .7vw, 11px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-bottom: .5px solid rgba(255,255,255,.25);
  padding-bottom: 4px;
  transition: color .35s, border-color .35s, gap .35s;
  gap: 8px;
}
.hero-project-label:hover .hpl-cta {
  color: #fff;
  border-color: #fff;
  gap: 12px;
}
.hero-project-label:hover .hpl-name { color: #fff; }
.hero-headline {
  position: absolute;
  bottom: 52px;
  right: var(--g);
  z-index: 10;
  text-align: right;
}
.hero-eyebrow {
  font-family: var(--fb); /* numerals safe — contains "Est. 2015" */
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s .5s, transform .6s .5s;
}
.hero-eyebrow.vis,
body.intro-done .hero-eyebrow { opacity: 1; transform: translateY(0); transition: opacity .8s .4s, transform .8s .4s; }
.hero-h1 {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(56px, 9vw, 120px);
  line-height: .95;
  letter-spacing: .01em;
  color: #fff;
  text-align: right;
}
.hl { display: block; overflow: hidden; }
.hli {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  /* No animation until the intro curtain clears — then the lines drop in fresh,
     giving the Yodezeen "the page wakes up as the intro lifts" effect. */
}
body.intro-done .hli {
  animation: linedrop 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
body.intro-done .hl:nth-child(1) .hli { animation-delay: .15s; }
body.intro-done .hl:nth-child(2) .hli { animation-delay: .31s; }
body.intro-done .hl:nth-child(3) .hli { animation-delay: .47s; }
.hli .sc { font-family: var(--fs); font-style: normal; color: var(--n400); font-size: .88em; }
.scroll-hint {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
body.intro-done .scroll-hint {
  animation: fadeup .8s ease .9s forwards;
}
.sh-txt {
  font-family: var(--fd-sc);
  font-size: 8px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.sh-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.15);
  transform-origin: top;
  animation: linedown 2s ease-in-out infinite;
}
@keyframes linedrop {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeup {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes linedown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ================================================================
   VALUE PROPOSITION — centered Yodezeen-style statement
================================================================ */
#value-prop {
  background: var(--n950);
  padding: clamp(120px, 14vw, 200px) var(--g);
  text-align: center;
  position: relative;
}
.vp-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vp-eyebrow {
  font-family: var(--fd-sc);
  font-size: clamp(9px, .7vw, 11px);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: clamp(28px, 3vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.vp-eyebrow::before,
.vp-eyebrow::after {
  content: '';
  width: 28px;
  height: .5px;
  background: var(--n400);
}
.vp-statement {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1.12;
  letter-spacing: .015em;
  color: #fff;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.vp-statement .sc {
  font-family: var(--fs);
  font-style: normal;
  color: var(--n400);
}
.vp-substatement {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
  letter-spacing: .015em;
  color: var(--n200);
  max-width: 820px;
  margin: 0 auto;
}
.vp-substatement em {
  font-family: var(--fs);
  font-style: normal;
  color: var(--n400);
}

/* ================================================================
   STUDIO INTRO
================================================================ */
#studio {
  background: var(--n950);
  padding: 160px var(--g) 0;
  position: relative;
  overflow: hidden;
}
.studio-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 80px;
  align-items: start;
}
.studio-eyebrow {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.studio-eyebrow::before {
  content: '';
  width: 22px;
  height: .5px;
  background: var(--n400);
}
/* Studio headline cycling */
.studio-h2-wrap {
  position: relative;
  /* No fixed min-height — sizes naturally to h2-a's content */
  margin-bottom: 36px;
}
.studio-h2 {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: .02em;
  color: #fff;
  transition: opacity .7s ease;
}
.studio-h2.hidden { opacity: 0; }
.studio-h2-alt {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: .02em;
  color: #fff;
}
.studio-h2-alt.visible { opacity: 1; pointer-events: auto; }
.studio-h2 .sc, .studio-h2-alt .sc { font-family: var(--fs); font-style: normal; color: var(--n400); }
.studio-body {
  font-family: var(--fb);
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--n300);
  max-width: 520px;
  margin-bottom: 20px;
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--n400);
  border-bottom: .5px solid rgba(114,149,128,.3);
  padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}
.read-more-link:hover { color: var(--cream); border-color: var(--n300); }
.studio-portrait-col { position: relative; }
.studio-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}
.studio-portrait-fb {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(165deg, var(--n800) 0%, var(--n700) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.studio-portrait-fb span {
  font-family: var(--fd);
  font-weight: 200;
  font-size: 14px;
  color: var(--n400);
  letter-spacing: .04em;
}

/* ================================================================
   FEATURED PROJECT — Static showcase, Yodezeen pattern
   Replaces the old scroll-sequence section which introduced
   ~100vh of dead trailing space after the sticky released.
================================================================ */
#featured {
  background: var(--n950);
  padding: clamp(100px, 12vw, 180px) var(--g);
}
.featured-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.featured-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(48px, 5vw, 80px);
  max-width: 720px;
}
.featured-eyebrow {
  font-family: var(--fd-sc);
  font-size: clamp(9px, .7vw, 11px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n400);
  display: flex;
  align-items: center;
  gap: 14px;
}
.featured-eyebrow::before {
  content: '';
  width: 22px;
  height: .5px;
  background: var(--n400);
}
.featured-h {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: .02em;
  color: #fff;
}
.featured-h .sc {
  font-family: var(--fs);
  font-style: normal;
  color: var(--n400);
}
.featured-card {
  display: block;
  text-decoration: none;
  cursor: none;
}
.featured-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--n800);
}
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.featured-card:hover .featured-img {
  transform: scale(1.04);
}
.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 48px) 0 0;
  gap: 32px;
  flex-wrap: wrap;
}
.featured-meta-left { display: flex; flex-direction: column; gap: 8px; }
.fm-tag {
  font-family: var(--fd-sc);
  font-size: clamp(9px, .7vw, 11px);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--n400);
}
.fm-name {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.1;
  transition: color .35s;
}
.featured-card:hover .fm-name { color: var(--n300); }
.fm-loc {
  font-family: var(--fb);
  font-size: clamp(11px, .85vw, 13px);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--n300);
  margin-top: 4px;
}
.fm-cta {
  font-family: var(--fd-sc);
  font-size: clamp(10px, .8vw, 12px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--n200);
  border-bottom: .5px solid var(--n500);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  transition: color .35s, border-color .35s, gap .35s;
  gap: 8px;
}
.featured-card:hover .fm-cta {
  color: #fff;
  border-color: #fff;
  gap: 14px;
}

/* ================================================================
   DIRECTORS SECTION — Two co-founders, hero photo + bio
================================================================ */
#directors {
  background: var(--n950);
  padding: 160px var(--g);
  position: relative;
}
.directors-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 7vw, 100px);
}

/* Wide editorial photo of both co-founders — Yodezeen style */
.directors-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(165deg, var(--n800) 0%, var(--n700) 100%);
}
.directors-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.directors-photo-wrap:hover .directors-photo {
  transform: scale(1.02);
}

/* Text block below photo */
.directors-text {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}
.directors-text-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.directors-body-col {
  max-width: 640px;
}

/* Eyebrow + heading shared */
.director-eyebrow {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.director-eyebrow::before {
  content: '';
  width: 22px;
  height: .5px;
  background: var(--n400);
}
.director-h {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: .02em;
  color: #fff;
}
.director-h .sc {
  font-family: var(--fs);
  font-style: normal;
  color: var(--n400);
}
.director-quote {
  font-family: var(--fd);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  border-left: 1px solid var(--n500);
  padding: 4px 0 4px 24px;
  margin-bottom: 36px;
}
.director-bio {
  font-family: var(--fb);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
  color: var(--n200);
  margin-bottom: 22px;
}
.director-bio:last-child { margin-bottom: 0; }

/* Founders row — two co-directors side by side */
.founders-row {
  display: flex;
  align-items: stretch;
  gap: clamp(32px, 4vw, 60px);
  padding-top: clamp(36px, 4vw, 60px);
  border-top: .5px solid rgba(255,255,255,.08);
}
.founder {
  flex: 1;
}
.founder-name {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}
.founder-role {
  font-family: var(--fd-sc);
  font-size: clamp(9.5px, .75vw, 11px);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--n400);
}
.founder-divider {
  width: .5px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .directors-text-grid { grid-template-columns: 1fr; }
  .founders-row { flex-direction: column; gap: 32px; }
  .founder-divider { width: 100%; height: .5px; }
}

/* ================================================================
   WE DO SECTION
================================================================ */
#wedo {
  background: var(--n900);
  padding: 160px var(--g);
  position: relative;
  overflow: hidden;
}
.wedo-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 80px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.wedo-ghost span {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(120px, 18vw, 240px);
  letter-spacing: .04em;
  color: rgba(255,255,255,.028);
  white-space: nowrap;
  line-height: 1;
}
.wedo-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wedo-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 64px;
  gap: 40px;
}
.wedo-eyebrow {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wedo-eyebrow::before {
  content: '';
  width: 22px;
  height: .5px;
  background: var(--n400);
}
.wedo-h2 {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: .02em;
  color: #fff;
}
.wedo-list { border-top: .5px solid rgba(255,255,255,.06); }
.wedo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: .5px solid rgba(255,255,255,.06);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: padding-left .5s cubic-bezier(.16,1,.3,1);
}
.wedo-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(114,149,128,.04);
  transition: width .5s cubic-bezier(.16,1,.3,1);
}
.wedo-item:hover,
.wedo-item.active { padding-left: 32px; }
.wedo-item:hover::before,
.wedo-item.active::before { width: 100%; }
.wedo-name-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.wedo-num {
  font-family: var(--fb); /* numerals safe — shows "01"–"04" */
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.1);
  transition: color .4s;
  min-width: 24px;
}
.wedo-item:hover .wedo-num,
.wedo-item.active .wedo-num { color: var(--n400); }
.wedo-name {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(38px, 5.5vw, 76px);
  letter-spacing: .04em;
  color: rgba(255,255,255,.12);
  transition: color .5s;
}
.wedo-item:hover .wedo-name,
.wedo-item.active .wedo-name { color: rgba(255,255,255,.85); }
.wedo-arrow {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: rgba(255,255,255,.08);
  transition: transform .4s cubic-bezier(.16,1,.3,1), color .4s;
}
.wedo-item:hover .wedo-arrow,
.wedo-item.active .wedo-arrow {
  transform: translateX(14px);
  color: var(--n400);
}
.wedo-cta {
  margin-top: 60px;
  display: flex;
  justify-content: flex-start;
}

/* ================================================================
   WORLD MAP SECTION
================================================================ */
#world {
  background: var(--n950);
  padding: 160px var(--g);
  overflow: hidden;
}
.world-inner { max-width: 1280px; margin: 0 auto; }
.world-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}
.world-eyebrow {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.world-eyebrow::before {
  content: '';
  width: 22px;
  height: .5px;
  background: var(--n400);
}
.world-h2 {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: .02em;
  color: #fff;
}
.world-tabs {
  display: flex;
  gap: 0;
  border: .5px solid rgba(255,255,255,.1);
}
.world-tab {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  padding: 12px 22px;
  border-right: .5px solid rgba(255,255,255,.1);
  transition: background .3s, color .3s;
  cursor: none;
}
.world-tab:last-child { border-right: none; }
.world-tab.active {
  background: var(--n800);
  color: rgba(255,255,255,.6);
}
.world-tab:hover { color: rgba(255,255,255,.5); }
.world-panel { display: none; }
.world-panel.active { display: block; }
.world-marquee-wrap {
  overflow: hidden;
  margin-top: 40px;
}
.world-mq {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: worldmq 22s linear infinite;
}
.world-mq-2 {
  animation-direction: reverse;
  animation-duration: 28s;
  margin-top: 12px;
}
.world-mq-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}
.world-city {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: .04em;
  color: rgba(255,255,255,.1);
  transition: color .3s;
  white-space: nowrap;
}
.world-city:hover { color: rgba(255,255,255,.4); }
.world-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}
@keyframes worldmq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   MONOGRAPH SECTION
================================================================ */
#mono {
  background: var(--n800);
  padding: 160px var(--g);
  overflow: hidden;
}
.mono-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.mono-text .sect-eyebrow {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mono-text .sect-eyebrow::before {
  content: '';
  width: 22px;
  height: .5px;
  background: var(--n400);
}
.mono-h2 {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 24px;
}
.mono-desc {
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.9;
  color: var(--n300);
  margin-bottom: 40px;
  max-width: 460px;
}
.mono-chapters { border-top: .5px solid rgba(255,255,255,.08); }
.mono-ch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: .5px solid rgba(255,255,255,.06);
  position: relative;
}
.mono-ch-title {
  font-family: var(--fd-sc);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.mono-ch::after {
  content: '';
  flex: 1;
  margin: 0 12px;
  border-bottom: 1px dotted rgba(255,255,255,.08);
}
.mono-ch-page {
  /* Use Jost — Aristotelica trial substitutes numeral glyphs with images */
  font-family: var(--fb);
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,.2);
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.mono-book {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mono-book-inner {
  width: 260px;
  height: 340px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-25deg) rotateX(5deg);
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.mono-book:hover .mono-book-inner {
  transform: rotateY(-15deg) rotateX(3deg);
}
.mono-book-cover {
  position: absolute;
  inset: 0;
  background: var(--n700);
  border: .5px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  backface-visibility: hidden;
}
.mono-book-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../assets/projects/int-05-kitchen.jpg') center/cover;
  opacity: .4;
}
.mono-book-title {
  font-family: var(--fd);
  font-weight: 200;
  font-size: 26px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.8);
  position: relative;
  z-index: 1;
}
.mono-book-sub {
  font-family: var(--fd-sc);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n400);
  position: relative;
  z-index: 1;
  margin-top: 6px;
}
.mono-book-spine {
  position: absolute;
  top: 0; left: -24px;
  width: 24px; height: 100%;
  background: var(--n600);
  transform-origin: right;
  transform: rotateY(90deg);
}
.mono-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--n400);
  border: .5px solid rgba(114,149,128,.3);
  padding: 8px 16px;
  margin-top: 36px;
}

/* ================================================================
   OFFICES SECTION
================================================================ */
#offices {
  background: var(--n950);
  padding: 160px var(--g);
}
.offices-inner { max-width: 1280px; margin: 0 auto; }
.offices-header { margin-bottom: 60px; }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
}
.off-card {
  background: var(--n950);
  padding: 48px 32px;
  transition: background .35s;
  position: relative;
}
.off-card:hover { background: var(--n900); }
.off-city {
  font-family: var(--fd);
  font-weight: 200;
  font-size: 30px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.off-time {
  font-family: var(--fb); /* numerals safe — live clock "HH:MM:SS" */
  font-weight: 300;
  font-size: 26px;
  letter-spacing: .08em;
  color: var(--n400);
  font-variant-numeric: tabular-nums;
  margin-bottom: 22px;
}
.off-divider {
  width: 24px;
  height: .5px;
  background: var(--n600);
  margin-bottom: 22px;
}
.off-country {
  font-family: var(--fb); /* numerals safe — contains "UTC+1" etc. */
  font-size: clamp(10px, .75vw, 12px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n300);
  margin-bottom: 10px;
}
.off-address {
  font-size: clamp(13px, .9vw, 15px);
  color: var(--n400);
  line-height: 1.7;
  margin-bottom: 14px;
}
.off-phone {
  font-family: var(--fb); /* numerals safe — phone numbers */
  font-size: clamp(11px, .85vw, 14px);
  letter-spacing: .14em;
  color: var(--n300);
  margin-bottom: 16px;
  display: block;
  transition: color .3s;
}
.off-phone:hover { color: #fff; }
.off-contact {
  font-family: var(--fd-sc);
  font-size: clamp(10px, .75vw, 12px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-bottom: .5px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
  display: inline-block;
}
.off-contact:hover { color: #fff; border-color: #fff; }

/* ================================================================
   CITY MARQUEE BAR
================================================================ */
#mqbar {
  background: var(--n900);
  border-top: .5px solid rgba(255,255,255,.04);
  border-bottom: .5px solid rgba(255,255,255,.04);
  overflow: hidden;
  padding: 22px 0;
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mqscroll 28s linear infinite;
  width: max-content;
}
#mqbar:hover .mq-track { animation-play-state: paused; }
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
}
.mq-city {
  font-family: var(--fd-sc);
  font-size: clamp(11px, .85vw, 13px);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--n400);
  transition: color .3s;
}
.mq-item:hover .mq-city { color: #fff; }
.mq-bullet {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--n500);
  flex-shrink: 0;
}
@keyframes mqscroll { to { transform: translateX(-50%); } }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--n950);
  border-top: .5px solid rgba(255,255,255,.06);
  padding: 72px var(--g) 44px;
}
.ft-top {
  max-width: 1440px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
}
.ft-logo {
  height: 26px;
  mix-blend-mode: lighten;
  margin-bottom: 10px;
}
/* Text-based footer wordmark — crisp at every DPI, matches the nav treatment */
.ft-logo-text {
  display: block;
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.ft-tagline {
  font-family: var(--fd-sc);
  font-size: clamp(9px, .7vw, 11px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--n400);
}
.ft-nav-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ft-nav-col-title {
  font-family: var(--fd-sc);
  font-size: clamp(9.5px, .75vw, 12px);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--n300);
  margin-bottom: 4px;
}
.ft-nav-link {
  font-family: var(--fd-sc);
  font-size: clamp(10px, .75vw, 12px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n400);
  transition: color .3s;
}
.ft-nav-link:hover { color: #fff; }
.ft-bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: .5px solid rgba(255,255,255,.05);
  flex-wrap: wrap;
  gap: 18px;
}
.ft-copy {
  font-family: var(--fb); /* numerals safe — contains "© 2026" */
  font-size: clamp(10px, .75vw, 12px);
  letter-spacing: .14em;
  color: var(--n400);
}
.ft-social {
  display: flex;
  gap: 24px;
}
.ft-social a {
  font-family: var(--fd-sc);
  font-size: clamp(10px, .75vw, 12px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n400);
  transition: color .3s;
}
.ft-social a:hover { color: #fff; }

/* ================================================================
   CONNECT OVERLAY (all pages)
================================================================ */
#co {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  pointer-events: none;
}
#co.open { pointer-events: all; }
#co-bd {
  position: absolute;
  inset: 0;
  background: rgba(43,57,51,.7);
  opacity: 0;
  transition: opacity .55s;
}
#co.open #co-bd { opacity: 1; }
#co-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(640px, 100vw);
  background: var(--n950);
  border-left: .5px solid rgba(255,255,255,.06);
  transform: translateX(100%);
  transition: transform .7s cubic-bezier(.86,0,.07,1);
  overflow-y: auto;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
}
#co.open #co-panel { transform: translateX(0); }
.co-close {
  position: absolute;
  top: 32px; right: 40px;
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .3s;
  cursor: none;
}
.co-close:hover { color: rgba(255,255,255,.7); }
.co-eyebrow {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 32px;
  margin-top: 20px;
}
.co-title {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.0;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 12px;
}
.co-title .sc { font-family: var(--fs); font-style: normal; color: var(--n400); }
.co-subtitle {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--n500);
  line-height: 1.7;
  margin-bottom: 48px;
}
.co-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}
.co-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background .3s;
}
.co-dot.active { background: var(--n400); }
.co-step { display: none; }
.co-step.active { display: block; }
.co-field { margin-bottom: 28px; }
.co-label {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n500);
  display: block;
  margin-bottom: 10px;
}
.co-input, .co-select, .co-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: .5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-family: var(--fb);
  /* MUST be 16px+ on mobile — anything smaller causes iOS Safari to
     auto-zoom into the input when focused, breaking the layout. */
  font-size: 16px;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color .3s;
}
.co-input::placeholder, .co-textarea::placeholder { color: rgba(255,255,255,.2); }
.co-input:focus, .co-select:focus, .co-textarea:focus { border-color: var(--n400); }
.co-textarea { resize: vertical; min-height: 100px; }
.co-select { -webkit-appearance: none; cursor: none; }
.co-select option { background: var(--n900); }
.co-btn-row { display: flex; gap: 16px; margin-top: 40px; }
.co-btn-next, .co-btn-back {
  font-family: var(--fmc);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: .5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.4);
  transition: background .3s, color .3s, border-color .3s;
  cursor: none;
}
.co-btn-next { background: var(--n500); border-color: var(--n500); color: rgba(255,255,255,.9); }
.co-btn-next:hover { background: var(--n400); border-color: var(--n400); }
.co-btn-back:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.7); }
.co-thanks {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  justify-content: center;
}
.co-thanks.active { display: flex; }
.co-thanks-h {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(34px, 4vw, 52px);
  color: #fff;
  letter-spacing: .02em;
}
.co-thanks-p {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--n400);
  line-height: 1.8;
  max-width: 380px;
}

/* ================================================================
   GALLERY LIGHTBOX
================================================================ */
#lb {
  position: fixed;
  inset: 0;
  z-index: 9600;
  background: rgba(43,57,51,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
#lb.open { opacity: 1; pointer-events: all; }
.lb-close {
  position: absolute;
  top: 32px; right: 40px;
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  cursor: none;
  z-index: 10;
  transition: color .3s;
}
.lb-close:hover { color: rgba(255,255,255,.7); }
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lb-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: center;
}
.lb-nav-btn {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .3s;
  cursor: none;
}
.lb-nav-btn:hover { color: rgba(255,255,255,.7); }
.lb-count {
  font-family: var(--fb); /* numerals safe — shows "1 / 5" */
  font-size: 9px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.2);
}

/* ================================================================
   PROJECTS PAGE
================================================================ */
.page-hero {
  height: 52vh;
  min-height: 320px;
  background: var(--n950);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-h) var(--g) 60px;
  position: relative;
  /* Content capped at 1440px so text doesn't stretch on ultrawide */
  max-width: none; /* full-width background */
}
/* Inner content constrained */
.page-hero-eyebrow,
.page-hero-h1 {
  max-width: calc(1440px - 2 * var(--g));
}
.page-hero-eyebrow {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n500);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 22px;
  height: .5px;
  background: var(--n500);
}
.page-hero-h1 {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: .02em;
  color: #fff;
  line-height: .95;
}
.page-hero-h1 .sc { font-family: var(--fs); font-style: normal; color: var(--n400); }
.filter-bar {
  position: sticky;
  top: 74px;
  z-index: 600;
  background: var(--n950);
  border-bottom: .5px solid rgba(255,255,255,.06);
  padding: 0 var(--g);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  padding: 18px 20px;
  border-bottom: 1.5px solid transparent;
  transition: color .3s, border-color .3s;
  cursor: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-btn.active, .filter-btn:hover {
  color: rgba(255,255,255,.65);
  border-bottom-color: var(--n400);
}
.proj-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.pc {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: none;
  background: var(--n800);
  display: block;
}
.pc.tall { grid-row: span 2; aspect-ratio: unset; }
.pc.wide { grid-column: span 2; aspect-ratio: 16/9; }
.pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.pc:hover img { transform: scale(1.04); }
.pc-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,57,51,.92) 0%, rgba(43,57,51,.1) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px;
}
.pc:hover .pc-info { opacity: 1; }
.pc-type {
  font-family: var(--fd-sc);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n400);
  margin-bottom: 6px;
}
.pc-name {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  margin-bottom: 4px;
}
.pc-loc {
  font-family: var(--fb); /* numerals safe — contains years e.g. "2024" */
  font-size: 8.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.pc-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  font-family: var(--fd-sc);
  font-size: 7.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  background: rgba(43,57,51,.6);
  border: .5px solid rgba(255,255,255,.12);
  padding: 4px 10px;
  backdrop-filter: blur(8px);
}

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-h) var(--g) 80px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/projects/ext-01-pool.jpg') center/cover;
}
.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43,57,51,.5) 0%, rgba(43,57,51,.85) 100%);
}
.about-hero-content { position: relative; z-index: 2; }
.about-name-large {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(52px, 10vw, 130px);
  letter-spacing: .04em;
  line-height: .92;
  color: rgba(255,255,255,.08);
}
.about-name-large span { display: block; }
.about-name-large em { font-style: italic; color: rgba(255,255,255,.12); }
.about-tag {
  font-family: var(--fb); /* numerals safe — "Since 2015" */
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--n400);
  margin-top: 32px;
}
.about-stats {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: .5px solid rgba(255,255,255,.06);
}
.about-stat {
  padding: 52px 36px;
  border-right: .5px solid rgba(255,255,255,.06);
}
.about-stat:last-child { border-right: none; }
.about-stat-n {
  font-family: var(--fb); /* numerals safe — animated counters "50+", "4" */
  font-weight: 300;
  font-size: clamp(40px, 5vw, 68px);
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stat-l {
  font-family: var(--fd-sc);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n500);
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-hero {
  padding: calc(var(--nav-h) + 80px) var(--g) 80px;
  background: var(--n950);
}
.contact-inner { max-width: 1280px; margin: 0 auto; }
.contact-h1 {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 80px;
  line-height: .95;
}
.contact-h1 .sc { font-family: var(--fs); font-style: normal; color: var(--n400); }
.contact-offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  margin-bottom: 100px;
}
.contact-off {
  background: var(--n950);
  padding: 44px 32px;
  transition: background .3s;
}
.contact-off:hover { background: var(--n900); }
.contact-emails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
}
.contact-email-cat {
  background: var(--n950);
  padding: 36px 32px;
  transition: background .3s;
}
.contact-email-cat:hover { background: var(--n900); }
.cec-label {
  font-family: var(--fd-sc);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--n500);
  margin-bottom: 12px;
}
.cec-email {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .3s;
  word-break: break-all;
}
.contact-email-cat:hover .cec-email { color: rgba(255,255,255,.8); }

/* ================================================================
   PROJECT DETAIL PAGE
================================================================ */
.proj-detail-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.proj-detail-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--n900);
}
.proj-detail-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proj-detail-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43,57,51,.3), rgba(43,57,51,.6));
}
.proj-detail-meta {
  position: absolute;
  bottom: 52px;
  left: var(--g);
  z-index: 5;
}
.pdm-coords {
  font-family: var(--fb); /* numerals safe — GPS coordinates */
  font-size: 9px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.pdm-name {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: .03em;
  color: #fff;
  line-height: .95;
  margin-bottom: 12px;
}
.pdm-tags { display: flex; gap: 12px; }
.pdm-tag {
  font-family: var(--fd-sc);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: .5px solid rgba(255,255,255,.12);
  padding: 4px 12px;
}

/* ================================================================
   SERVICES PAGE
================================================================ */
.services-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 80px) var(--g) 80px;
  background: var(--n950);
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/projects/ext-02-facade.jpg') center/cover;
  opacity: .2;
}
.services-hero-inner { position: relative; z-index: 2; max-width: 1280px; }
/* services-intro: max-width caps content + only modest fixed inner padding.
   The OLD bug used var(--g) which grew to 240px+ on wide screens, eating
   into the 1280px container and crushing the right column to one word per line. */
.services-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px clamp(24px, 3vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: var(--n950);
}
.services-intro-body {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.85;
  color: var(--n200);
  padding-top: 20px;
}
.services-grid-section {
  background: var(--n950);
  padding: 0 var(--g) 160px;
}
.services-grid-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
}
.svc-card {
  background: var(--n950);
  padding: 60px 44px;
  position: relative;
  overflow: hidden;
  transition: background .4s;
  cursor: none;
}
.svc-card:hover { background: var(--n900); }
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
  background: linear-gradient(165deg, rgba(74,108,89,.12) 0%, transparent 100%);
}
.svc-card:hover::before { opacity: 1; }
.svc-num {
  /* Jost for numerals — Aristotelica trial substitutes digit glyphs */
  font-family: var(--fb);
  font-weight: 200;
  font-size: 80px;
  color: rgba(255,255,255,.04);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: .02em;
  transition: color .4s;
}
.svc-card:hover .svc-num { color: rgba(114,149,128,.12); }
.svc-icon {
  width: 32px;
  height: 1px;
  background: var(--n500);
  margin-bottom: 32px;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.svc-card:hover .svc-icon { width: 56px; }
.svc-title {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: .03em;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  line-height: 1.1;
  transition: color .4s;
}
.svc-card:hover .svc-title { color: #fff; }
.svc-desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--n500);
  margin-bottom: 32px;
  transition: color .3s;
}
.svc-card:hover .svc-desc { color: var(--n400); }
.svc-link {
  font-family: var(--fd-sc);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  border-bottom: .5px solid rgba(255,255,255,.08);
  padding-bottom: 3px;
  display: inline;
  transition: color .3s, border-color .3s;
}
.svc-card:hover .svc-link { color: var(--n400); border-color: rgba(114,149,128,.4); }
.services-process {
  background: var(--n900);
  padding: 160px var(--g);
}
.services-process-inner { max-width: 1280px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  margin-top: 60px;
}
.process-step { background: var(--n900); padding: 48px 36px; }
.process-step-n {
  font-family: var(--fb); /* numerals safe — "01 / Discovery" etc. */
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n500);
  margin-bottom: 24px;
}
.process-step-h {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: .03em;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  line-height: 1.15;
}
.process-step-p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--n600);
}

/* ================================================================
   SCROLL REVEAL
================================================================ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  /* Refined expo-out easing — slow settle, no bounce. The signature
     "premium agency" reveal curve. */
  transition: opacity 1s cubic-bezier(.16,1,.3,1),
              transform 1.1s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.rv.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { transition: opacity .4s ease; transform: none; }
  #pl .pl-video { animation: none; }
  body.intro-done .hli { animation: none; opacity: 1; transform: none; }
}
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .22s; }
.rv.d3 { transition-delay: .34s; }
.rv.d4 { transition-delay: .46s; }
.rv.d5 { transition-delay: .58s; }

/* ================================================================
   WORLD-CLASS SCROLL ENGINE PRIMITIVES  (data-reveal / scrub / lines)
   Driven by js/scroll.js which toggles .is-in.
   Shared premium expo-out curve.
================================================================ */
:root { --ease-out-expo: cubic-bezier(.16, 1, .3, 1); }

/* Base — every reveal type starts hidden, transitions to revealed on .is-in */
[data-reveal] {
  opacity: 0;
  transition: opacity 1.05s var(--ease-out-expo),
              transform 1.15s var(--ease-out-expo),
              filter 1.15s var(--ease-out-expo),
              clip-path 1.25s var(--ease-out-expo);
  will-change: opacity, transform;
}
/* Directional / stylistic start states */
[data-reveal="up"]        { transform: translate3d(0, 48px, 0); }
[data-reveal="rise"]      { transform: translate3d(0, 90px, 0); }
[data-reveal="fade"]      { transform: none; }
[data-reveal="scale"]     { transform: scale(.92); }
[data-reveal="blur"]      { filter: blur(14px); transform: scale(1.02); }
[data-reveal="clip"]      { clip-path: inset(100% 0 0 0); transform: translate3d(0,40px,0); }
[data-reveal="clip-left"] { clip-path: inset(0 100% 0 0); }

/* CURTAIN — wrapper clips open from the bottom while the image inside
   settles from an oversized scale: the signature editorial unveil.
   Put on a WRAPPER containing an <img>. Opacity stays 1 (pure clip). */
[data-reveal="curtain"]       { opacity: 1; clip-path: inset(100% 0 0 0); transform: none; }
[data-reveal="curtain"] img   { transform: scale(1.24); transition: transform 1.6s var(--ease-out-expo); will-change: transform; }
[data-reveal="curtain"].is-in img { transform: scale(1); }

/* UNVEIL — same idea for a BARE <img> (no wrapper): clip + settle in one. */
[data-reveal="unveil"]        { opacity: 1; clip-path: inset(0 0 100% 0); transform: scale(1.14); }

/* LINE — horizontal rules draw themselves in from the left. */
[data-reveal="line"]          { opacity: 1; transform: scaleX(0); transform-origin: left center; }

/* Project-page gallery images set their own transition (hover zoom) in the
   page <style>, which would clobber the unveil's clip-path transition — this
   higher-specificity rule restores both. */
.proj-img[data-reveal="unveil"] {
  transition: transform 1.4s var(--ease-out-expo), clip-path 1.3s var(--ease-out-expo);
}

/* Revealed state — all converge to natural position */
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

/* Stagger — children of [data-stagger] cascade in */
[data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity .9s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-stagger].is-in > * { opacity: 1; transform: none; }
[data-stagger].is-in > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: .13s; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: .21s; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: .29s; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: .37s; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: .45s; }
[data-stagger].is-in > *:nth-child(7) { transition-delay: .53s; }
[data-stagger].is-in > *:nth-child(8) { transition-delay: .61s; }
[data-stagger].is-in > *:nth-child(9) { transition-delay: .69s; }

/* Line-by-line masked heading reveal (data-split-lines) */
[data-split-lines] { opacity: 1; }   /* host stays visible; lines animate */
.sl-line {
  display: block;
  overflow: hidden;
}
.sl-inner {
  display: block;
  transform: translateY(108%);
  transition: transform 1.05s var(--ease-out-expo);
  will-change: transform;
}
[data-split-lines].is-in .sl-inner { transform: translateY(0); }
.sl-word { display: inline-block; }

/* Per-letter cascade (data-split-letters) — each glyph rises out of its own
   mask with a slight rotation that irons out as it lands. Cursive .sc spans
   are one unit, so the script ligatures stay connected. */
[data-split-letters] { opacity: 1; }
.slt-w {
  display: inline-block;          /* word = unbreakable unit; wraps whole */
  white-space: nowrap;
}
.slt {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .08em;          /* keep descenders (g, y, cursive tails) unclipped */
  margin-bottom: -.08em;
}
.slt-i {
  display: inline-block;
  transform: translateY(118%) rotate(5deg);
  transform-origin: left bottom;
  transition: transform 1s var(--ease-out-expo);
  will-change: transform;
}
[data-split-letters].is-in .slt-i { transform: translateY(0) rotate(0); }

/* Parallax / scrub / velocity layers get GPU compositing (rAF-driven) */
[data-parallax], [data-parallax-x], [data-scrub], [data-vel-skew] {
  will-change: transform;
  backface-visibility: hidden;
}

/* Scramble/decode labels — keep on one line so cycling glyphs don't reflow */
[data-scramble] { white-space: nowrap; }

/* ── DAY → NIGHT IMAGE WIPE (data-reveal-pair) ──
   Two stacked images; the front (day) clips away from the bottom as you
   scroll, smoothly revealing the night image behind it. */
.reveal-pair { position: relative; isolation: isolate; }
.reveal-pair img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reveal-pair .rp-back  { z-index: 1; }
.reveal-pair .rp-front {
  z-index: 2;
  /* --rp is driven 0% → 100% by scroll.js. Instead of a hard clip edge we use a
     soft gradient MASK so the daylight layer FEATHERS into the dusk layer over a
     ~7% band — the seam reads as a gliding band of light, not a cut line. */
  --feather: 7%;
  -webkit-mask-image: linear-gradient(to bottom,
      #000 calc(100% - var(--rp, 0%) - var(--feather)),
      rgba(0,0,0,0) calc(100% - var(--rp, 0%)));
  mask-image: linear-gradient(to bottom,
      #000 calc(100% - var(--rp, 0%) - var(--feather)),
      rgba(0,0,0,0) calc(100% - var(--rp, 0%)));
  will-change: mask-image;
}
/* Soft seam light along the wipe edge for a premium "reveal" glow */
.reveal-pair::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: var(--rp, 0%);
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  opacity: var(--rp-edge, 0);
  pointer-events: none;
}
.reveal-pair[style*="--rp"]::after { opacity: .5; }
/* Day→night pair inside a project gallery grid — spans the full row and
   sizes itself (the pair's layers are absolutely positioned). */
.proj-gallery .proj-pair {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
  /* taller frame on phones so the wipe keeps presence in a single column */
  .proj-gallery .proj-pair { aspect-ratio: 4 / 3; }
}

/* tiny "scroll to reveal" hint that fades as the wipe progresses */
.rp-hint {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-family: var(--fd-sc);
  font-size: clamp(8px, .7vw, 10px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(15,22,30,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-stagger] > *,
  .slt-i,
  .sl-inner {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: opacity .3s ease !important;
  }
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 40px;
  border: .5px solid rgba(255,255,255,.18);
  font-family: var(--fmc);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: background .3s, color .3s, border-color .3s;
  cursor: none;
}
.btn-outline:hover {
  background: var(--n500);
  border-color: var(--n500);
  color: rgba(255,255,255,.9);
}

/* ================================================================
   RESPONSIVE  —  Mobile-first deep format
   Breakpoints:
     ≤1100px  tablet landscape
     ≤900px   tablet portrait
     ≤768px   mobile landscape
     ≤560px   phone portrait
     ≤380px   small phone
================================================================ */

/* ── TABLET LANDSCAPE ── */
@media (max-width: 1100px) {
  :root { --g: 40px; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .mono-inner { grid-template-columns: 1fr; }
  .mono-book { display: none; }
  .services-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ── TABLET PORTRAIT ── */
@media (max-width: 900px) {
  .directors-text-grid { grid-template-columns: 1fr; gap: 32px; }
  .directors-photo-wrap { aspect-ratio: 4 / 3; }   /* wider 16:9 looks band-y at this width */
}

/* ── MOBILE  (≤ 768px) ── */
@media (max-width: 768px) {
  :root {
    --g: 22px;
    --nav-h: 64px;
  }

  /* — Nav — */
  nav#nav { padding: 0 18px; height: var(--nav-h); }
  nav#nav.scrolled { height: 56px; }
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-center { flex: 1; justify-content: flex-start; padding-left: 4px; }
  .nav-logo-text { font-size: clamp(20px, 5.6vw, 26px) !important; letter-spacing: .1em; }
  nav#nav.scrolled .nav-logo-text { font-size: clamp(18px, 5vw, 22px) !important; }
  .nav-logo-tagline { display: none; }

  /* — Mobile drawer — already styled, but tweak link size — */
  #mobile-drawer { padding: 90px 24px 40px; }
  .mobile-nav-link { font-size: clamp(26px, 7vw, 36px); padding: 14px 0; }

  /* — Section padding (all big sections shrink) — */
  #wedo,
  #world,
  #directors,
  #offices,
  #mono,
  .services-process,
  .cta-section,
  .team-section { padding: 70px var(--g); }
  #featured { padding: 56px var(--g); }
  #value-prop { padding: 70px var(--g); }
  #studio { padding: 70px var(--g) 0; }
  .services-intro { padding: 60px var(--g); }
  .services-grid-section { padding: 0 var(--g) 70px; }
  .about-hero { padding: var(--nav-h) var(--g) 60px; }

  /* — Hero — bring elements out from under each other — */
  .hero-headline {
    right: var(--g);
    left: var(--g);
    bottom: 32px;
    text-align: left;
  }
  .hero-h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-project-label {
    position: absolute;
    top: calc(var(--nav-h) + 20px);
    bottom: auto;
    left: var(--g);
    right: var(--g);
  }
  .hpl-name { font-size: clamp(16px, 4.5vw, 22px); }
  .hpl-cta { font-size: 10px; padding-bottom: 3px; }
  .scroll-hint { display: none; }     /* not needed on mobile — touch scroll is obvious */

  /* — Value Proposition — */
  .vp-eyebrow { font-size: 9px; gap: 10px; margin-bottom: 22px; }
  .vp-eyebrow::before, .vp-eyebrow::after { width: 18px; }
  .vp-statement { font-size: clamp(26px, 7vw, 38px); margin-bottom: 22px; }
  .vp-substatement { font-size: clamp(15px, 4vw, 18px); }

  /* — Studio intro — */
  .studio-inner { grid-template-columns: 1fr; gap: 48px; }
  .studio-h2 { font-size: clamp(28px, 7vw, 40px) !important; }
  .studio-h2-alt { font-size: clamp(28px, 7vw, 40px); }
  .studio-portrait, .studio-portrait-fb { aspect-ratio: 4 / 5; }

  /* — Featured project — */
  .featured-h { font-size: clamp(26px, 7vw, 36px); }
  .featured-img-wrap { aspect-ratio: 4 / 3; }
  .featured-meta { flex-direction: column; align-items: flex-start; gap: 18px; padding-top: 20px; }
  .fm-name { font-size: clamp(22px, 6.5vw, 30px); }

  /* — Directors — */
  .directors-inner { gap: 36px; }
  .directors-photo-wrap { aspect-ratio: 4 / 3; }
  .director-eyebrow { gap: 10px; margin-bottom: 18px; }
  .director-h { font-size: clamp(28px, 7vw, 40px); }
  .director-quote { font-size: clamp(15px, 4.2vw, 18px); padding-left: 18px; margin-bottom: 26px; }
  .director-bio { font-size: 14px; }
  .founders-row { padding-top: 28px; }
  .founder-name { font-size: clamp(17px, 4.5vw, 22px); }

  /* — WE DO — */
  .wedo-ghost { display: none; }
  .wedo-header { margin-bottom: 32px; }
  .wedo-h2 { font-size: clamp(28px, 7vw, 40px); }
  .wedo-item { padding: 22px 0; }
  .wedo-item:hover,
  .wedo-item.active { padding-left: 12px; }   /* smaller hover shift on mobile */
  .wedo-name { font-size: clamp(28px, 8vw, 44px); }
  .wedo-num { font-size: 9px; min-width: 20px; }
  .wedo-arrow { font-size: 16px; }
  .wedo-cta { margin-top: 36px; }

  /* — World map — */
  .world-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 36px; }
  .world-h2 { font-size: clamp(26px, 7vw, 38px); }
  .world-tabs { flex-wrap: wrap; width: 100%; }
  .world-tab { padding: 10px 16px; flex: 1; min-width: 0; text-align: center; }
  .world-city { font-size: clamp(22px, 6vw, 32px); }

  /* — Monograph — */
  .mono-h2 { font-size: clamp(28px, 7vw, 40px); }
  .mono-desc { font-size: 14px; }
  .mono-ch { padding: 12px 0; }

  /* — Offices — */
  .offices-grid { grid-template-columns: 1fr; }
  .off-card { padding: 36px 24px; }
  .off-city { font-size: 26px; }
  .off-time { font-size: 22px; }

  /* — About — */
  .about-name-large { font-size: clamp(46px, 13vw, 72px); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat { padding: 32px 22px; }
  .about-stat-n { font-size: clamp(36px, 9vw, 52px); }

  /* — Contact / Services / Project hero — */
  .contact-h1, .page-hero-h1 { font-size: clamp(40px, 11vw, 64px); }
  .contact-offices, .contact-emails { grid-template-columns: 1fr 1fr; }
  .contact-off, .contact-email-cat { padding: 32px 22px; }
  .contact-hero { padding: calc(var(--nav-h) + 48px) var(--g) 48px; }
  .contact-h1 { margin-bottom: 48px; }

  /* — Services grid — */
  .svc-card { padding: 42px 28px; }
  .svc-num { font-size: 56px; margin-bottom: 22px; }
  .svc-title { font-size: clamp(22px, 6vw, 28px); }
  .svc-desc { font-size: 13.5px; }
  .process-step { padding: 36px 24px; }

  /* — Projects grid — */
  .proj-grid { grid-template-columns: 1fr; }
  .pc.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .pc-info { padding: 22px; }
  .filter-bar { padding: 0 var(--g); gap: 0; }
  .filter-btn { padding: 16px 14px; font-size: 9px; letter-spacing: .15em; }

  /* — Footer — */
  footer { padding: 56px var(--g) 36px; }
  .ft-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ft-logo { height: 22px; }

  /* — Connect overlay — full bleed on mobile, no slide aesthetics — */
  #co-panel {
    width: 100vw;
    padding: 80px 24px 40px;
  }
  .co-close {
    top: 22px;
    right: 22px;
    padding: 8px 14px;
    border: .5px solid rgba(255,255,255,.18);
    border-radius: 999px;
  }
  .co-eyebrow { margin-top: 0; margin-bottom: 22px; }
  .co-title { font-size: clamp(32px, 9vw, 44px); margin-bottom: 8px; }
  .co-subtitle { margin-bottom: 32px; }
  .co-dots { margin-bottom: 32px; }
  .co-field { margin-bottom: 22px; }
  .co-btn-row { flex-wrap: wrap; gap: 12px; margin-top: 28px; }
  .co-btn-next, .co-btn-back { flex: 1; padding: 14px 20px; min-height: 48px; }

  /* — Preloader — */
  #pl-skip { bottom: 22px; right: 22px; padding: 8px 14px; font-size: 9px; }
  #pl-title { letter-spacing: .08em; }

  /* — Gallery controls — */
  #gc { top: calc(var(--nav-h) + 12px); right: var(--g); gap: 16px; }
  .gc-btn { font-size: 9px; letter-spacing: .18em; }
}

/* ── PHONE PORTRAIT (≤ 560px) ── */
@media (max-width: 560px) {
  .contact-offices, .contact-emails { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .services-grid-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  /* Hero — smallest readable size */
  .hero-h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-eyebrow { font-size: 8px; letter-spacing: .22em; }

  /* Featured */
  .featured-h { font-size: clamp(24px, 8vw, 32px); }
  .fm-name { font-size: clamp(20px, 6vw, 26px); }

  /* WE DO names smaller still */
  .wedo-name { font-size: clamp(26px, 9vw, 38px); }

  /* Project meta — already stacks at 2-col on phone */
  .proj-meta-row { grid-template-columns: 1fr 1fr !important; }
}

/* ── SMALL PHONE (≤ 380px) ── */
@media (max-width: 380px) {
  :root { --g: 18px; }
  .hero-h1 { font-size: clamp(38px, 13vw, 52px); }
  .vp-statement { font-size: clamp(22px, 7vw, 30px); }
  .director-h, .featured-h, .wedo-h2, .world-h2, .mono-h2 { font-size: clamp(24px, 7vw, 32px); }
  .about-name-large { font-size: clamp(38px, 13vw, 56px); }
  .contact-h1, .page-hero-h1 { font-size: clamp(34px, 12vw, 52px); }
  .nav-logo-text { font-size: clamp(18px, 5.2vw, 22px) !important; }
}

/* OLD selector for back-compat — kept he
/* ================================================================
   DIRECTOR CUT — about page pinned hero (Yodezeen-style scrub)
   Section = 300vh; sticky child = 100vh. JS (director.js) drives
   per-frame transforms from scroll progress. CSS holds the FINAL
   state so no-JS / reduced-motion still reads perfectly.
================================================================ */
.dcut {
  height: 300vh;
  position: relative;
  background: #16201b; /* near-black army green */
}
.dcut-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dcut-sticky::after { /* soft vignette so portraits melt into bg */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 60%, transparent 55%, rgba(22,32,27,.8) 100%);
  z-index: 1;
}
.dcut-person {
  position: absolute;
  bottom: 0;
  height: 82vh;
  width: 34vw;
  margin: 0;
  z-index: 0;
  will-change: transform, filter;
}
.dcut-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.04) brightness(.9);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.dcut-person-l { left: 2vw; }
.dcut-person-r { right: 2vw; }
.dcut-caption {
  position: absolute;
  bottom: 84px;
  left: 20px;
  font-family: var(--fb, 'Archivo', sans-serif);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  opacity: 0;
  transition: opacity .5s;
}
.dcut-caption span { display: block; color: rgba(255,255,255,.3); margin-top: 4px; }
.dcut-title {
  position: relative;
  z-index: 2;
  text-align: center;
  will-change: transform;
}
.dcut-title h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Inter Tight', var(--fd), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: .88;
  margin: 0;
}
.dcut-name {
  font-size: clamp(72px, 12.5vw, 230px);
  color: #fff;
}
.dcut-were {
  font-size: clamp(40px, 6.8vw, 125px);
  color: #8f918c; /* solid plaster grey at rest (final state) */
  will-change: transform, opacity;
}
.dcut-body {
  /* the page's opening statement — must hold its own under the giant name */
  max-width: 620px;
  margin: 5vh auto 0;
  font-family: var(--fb, 'Archivo', sans-serif);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.95;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-align: center;
  will-change: transform, opacity;
}
@media (max-width: 560px) {
  .dcut-body { font-size: 13.5px; max-width: 92vw; }
}
.dcut-tagline {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--fb, 'Archivo', sans-serif);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  opacity: 0; /* start-only element: JS raises it at p=0 */
}
.dcut-meta {
  position: absolute;
  bottom: 34px;
  left: var(--g, 40px);
  right: var(--g, 40px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--fb, 'Archivo', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.dcut-meta-a { opacity: 0; }  /* start state — JS shows */
.dcut-meta-b { opacity: 1; }  /* final state — no-JS fallback shows this */

/* JS-enabled initial states (html.js set by director.js before paint) */
html.js-dcut .dcut-were   { opacity: .07; transform: translateY(58%) scale(1.04); }
html.js-dcut .dcut-body   { opacity: 0; transform: translateY(44px); }
html.js-dcut .dcut-meta-b { opacity: 0; }
html.js-dcut .dcut-meta-a { opacity: 1; }
html.js-dcut .dcut-tagline{ opacity: 1; }

@media (max-width: 860px) {
  .dcut { height: auto; }
  .dcut-sticky { position: relative; height: auto; min-height: 100vh; padding: calc(var(--nav-h, 80px) + 40px) 24px 120px; flex-direction: column; justify-content: flex-end; }
  .dcut-person { position: relative; height: 44vh; width: 78vw; margin-bottom: -10vh; }
  .dcut-person-l { left: -12vw; align-self: flex-start; }
  .dcut-person-r { right: -12vw; align-self: flex-end; margin-top: -22vh; }
  .dcut-title { margin-top: 8vh; }
  .dcut-body { font-size: 13.5px; max-width: 92%; }
  .dcut-tagline { display: none; }
  .dcut-meta { position: relative; bottom: auto; left: 0; right: 0; margin-top: 60px; }
  .dcut-meta-a { display: none; }
  html.js-dcut .dcut-were, html.js-dcut .dcut-body, html.js-dcut .dcut-meta-b { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html.js-dcut .dcut-were, html.js-dcut .dcut-body, html.js-dcut .dcut-meta-b { opacity: 1; transform: none; }
  html.js-dcut .dcut-meta-a, html.js-dcut .dcut-tagline { opacity: 0; }
  .dcut { height: 100vh; }
}
