/* =============================================================================
   directedbysuby — foundation stylesheet
   -----------------------------------------------------------------------------
   BRAND IS DEFERRED BY DESIGN. Everything a future brand touches is a token
   below. When you have the name, colours, type and hero photograph:
     • --hero-image  -> point at the real photograph (or a local file)
     • --canvas / --ink / --accent -> the real palette
     • --font-display -> the real brand type
   Nothing else should need to change.
   ========================================================================== */

:root {
  /* --- The one image slot. Swap this single line for the real work. --------
     To use a local file instead of the placeholder, drop it in /assets and set:
     --hero-image: url("../assets/hero.jpg");                                 */
  --hero-image: url("../assets/hero-poster.jpg");   /* still from the hero reel (upright) */

  /* --- About images. Swap for his own work. -------------------------------
     For the exact JUUN.J "type behind the head" look, make --portrait-image a
     background-removed PNG (transparent) and it drops straight in.           */
  --portrait-image: url("../assets/suby-cam.jpg");   /* founder, camera in hand */
  /* Real work photographs */
  --work-veil: url("../assets/work-veil.jpg");
  --work-henna: url("../assets/work-henna.jpg");
  --work-como: url("../assets/work-como.jpg");
  --work-garden: url("../assets/work-garden.jpg");
  --about-img-left: url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=800&q=85");
  --about-img-right: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=800&q=85");

  /* --- Contact showreel still (shows until assets/reel.mp4 is added) ------- */
  --reel-poster: url("../assets/contact-poster.jpg");   /* still from his reception film */

  /* --- Footer CTA image. Swap for one of his event photographs. ----------- */
  --foot-cta-image: url("../assets/work-forest.jpg");   /* his work */

  /* --- Palette (placeholders — a near-black cinematic canvas so the
         photograph is the only colour on the page) ------------------------- */
  --canvas:        #0b0b0d;   /* page ground — not pure black */
  --canvas-raise:  #141416;   /* faint lift for reserved bands */
  --ink:           #f4f1ea;   /* warm off-white — primary text */
  --ink-dim:       #a8a49c;   /* secondary text */
  --ink-faint:     #918d84;   /* tertiary text — kept ≥4.5:1 on canvas */
  --hairline:      rgba(244, 241, 234, 0.12);
  --accent:        #c9b79c;   /* PLACEHOLDER brand accent — deliberately quiet */

  /* --- Type ---------------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-editorial: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --font-text: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-ui: var(--font-text);

  /* --- Motion -------------------------------------------------------------- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bloom: cubic-bezier(0.7, 0, 0.2, 1);
}

/* --- Reset ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
h1 { margin: 0; font-weight: 400; }
img { max-width: 100%; display: block; }

/* Lock scroll while the intro runs */
body[data-intro="pending"],
body[data-intro="running"] {
  overflow: hidden;
  height: 100dvh;
}

/* --- Themed browser surfaces (cheap signal it was built, not assembled) ---- */
::selection { background: var(--accent); color: var(--canvas); }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
* { scrollbar-width: thin; scrollbar-color: var(--ink-faint) var(--canvas); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb {
  background: #26262a;
  border: 2px solid var(--canvas);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: #34343a; }

/* =============================================================================
   INTRO OVERLAY — "reveal through the letters"
   ========================================================================== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--canvas);
  overflow: hidden;
  padding: clamp(1rem, 5vw, 4rem);
}
.intro.is-done { display: none; }

/* The wordmark, filled with the photograph via background-clip. The image is
   painted once on this element and clipped to the glyph shapes, so it stays
   continuous across every letter. */
.intro__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 12.5vw, 12rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;

  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  /* start hidden — JS "develops" it in with a left-to-right wipe */
  clip-path: inset(0 100% 0 0);
  transform: scale(1.04);
  opacity: 0;
  will-change: clip-path, transform, opacity;
}
.intro__word-inner { display: inline-block; }

/* Subtle floor glow of the image so pure-black gaps between thin strokes
   don't read as dead space while the word develops. */
.intro__word::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro__skip {
  position: absolute;
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s, border-color 0.3s, opacity 0.6s var(--ease-out);
}
.intro__skip.is-visible { opacity: 1; }
.intro__skip:hover { color: var(--ink); border-color: var(--ink-dim); }

/* =============================================================================
   SITE HEADER
   ========================================================================== */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.6vw, 2rem) clamp(1.25rem, 4vw, 3rem);
  mix-blend-mode: difference;      /* keeps the mark legible over any photo */
  color: #fff;
  /* hidden until the intro hands off */
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
body[data-intro="done"] .site-head { opacity: 1; transform: none; }

.site-head__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: -0.03em;
}
.site-head__nav {
  display: flex;
  gap: clamp(1.1rem, 2.5vw, 2.25rem);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.site-head__nav a {
  position: relative;
  padding-bottom: 2px;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.25s;
}
.site-head__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.site-head__nav a:hover { opacity: 1; }
.site-head__nav a:hover::after { transform: scaleX(1); }

/* =============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}
.hero__image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 40%;
  z-index: -3;                     /* poster fallback, behind the video */
  transform: scale(1.06);          /* slow drift settles after reveal */
  transition: transform 6s var(--ease-out);
}
body[data-intro="done"] .hero__image { transform: scale(1); }
/* The hero showreel (upright, muted, looping) fades in once it plays */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.is-playing { opacity: 1; }

/* Legibility scrim — darker at the edges where text sits */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(11,11,13,0.72) 0%, rgba(11,11,13,0) 42%),
    linear-gradient(to bottom, rgba(11,11,13,0.45) 0%, rgba(11,11,13,0) 30%);
}

.hero__frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(4.5rem, 12vh, 8rem);
}
.hero__caption { max-width: 60ch; }
.hero__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

/* Reveal-in for hero foreground bits, staggered after handoff */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
body[data-intro="done"] [data-reveal] { opacity: 1; transform: none; }
body[data-intro="done"] .hero__scroll { transition-delay: 0.2s; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.4rem, 4vh, 2.5rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero__scroll .hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--ink-dim), transparent);
  animation: scrollPulse 2.4s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =============================================================================
   SCROLL REVEAL — base states (only when JS is present, so no-JS shows all)
   ========================================================================== */
.js [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.is-in [data-animate] { opacity: 1; transform: none; }

/* =============================================================================
   ABOUT — dark editorial (Boffi-inspired): Our Legacy film, the founder,
   a journey timeline, and selected frames.
   ========================================================================== */
.about {
  position: relative;
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
}
.about > * { max-width: 1240px; margin-inline: auto; }
.about > * + * { margin-top: clamp(4rem, 10vh, 7.5rem); }
.char--space { display: inline-block; width: 0.42em; }

/* --- Our Legacy + film --------------------------------------------------- */
.lg__title {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 13vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  perspective: 1000px;
}
.lg__title .char { display: inline-block; will-change: transform; }
.lg__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111114;
  border: 1px solid var(--hairline);
  box-shadow: 0 50px 100px -45px rgba(0, 0, 0, 0.85);
}
.lg__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}
.lg__video.is-playing { opacity: 1; }
.lg__cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: clamp(1.1rem, 2vw, 1.6rem);
}
.lg__cap-text { margin: 0; max-width: 52ch; font-size: clamp(0.9rem, 1vw, 1.02rem); line-height: 1.55; color: var(--ink-dim); }
.lg__cap-link {
  display: inline-flex; align-items: center; gap: 0.6rem; flex: none;
  font-size: 0.82rem; letter-spacing: 0.02em; color: var(--ink);
  border-bottom: 1px solid var(--hairline); padding-bottom: 0.3rem;
  transition: border-color 0.25s;
}
.lg__cap-link svg { width: 1.1rem; height: 1.1rem; transition: transform 0.25s var(--ease-out); }
.lg__cap-link:hover { border-color: var(--ink); }
.lg__cap-link:hover svg { transform: translateX(4px); }

/* --- The founder: face + story ------------------------------------------ */
.st__head { margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.st__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  perspective: 800px;
}
.st__title .char { display: inline-block; will-change: transform; }
.st__kicker { margin: 0; max-width: 40ch; font-size: clamp(0.95rem, 1.1vw, 1.1rem); color: var(--ink-dim); }
.st__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.st__portrait { position: relative; margin: 0; }
.st__portrait-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-image: var(--portrait-image);
  background-size: cover;
  background-position: center 30%;
  border-radius: 12px;
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.8);
  transition: clip-path 1.15s var(--ease-out) 0.1s;
}
.js .st__portrait-img { clip-path: inset(0 0 100% 0); }
.is-in .st__portrait-img { clip-path: inset(0 0 0 0); }
.st__portrait figcaption {
  display: flex; flex-direction: column; gap: 0.15rem;
  margin-top: 0.9rem;
}
.st__portrait-name { font-family: var(--font-editorial); font-style: italic; font-size: 1.25rem; color: var(--ink); }
.st__portrait-role { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.st__bio { display: grid; gap: 1.1rem; align-self: center; }
.st__lead {
  margin: 0 0 0.4rem;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
.st__bio p:not(.st__lead) {
  margin: 0;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.68;
  color: var(--ink-dim);
  max-width: 60ch;
}

/* --- Journey timeline --------------------------------------------------- */
.tl {
  list-style: none;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.tl__item { display: flex; flex-direction: column; gap: 0.6rem; }
.tl__year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.tl__text { font-size: clamp(0.9rem, 1vw, 1rem); line-height: 1.5; color: var(--ink-dim); max-width: 26ch; }

/* --- Selected frames ---------------------------------------------------- */
.fr__title {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
  perspective: 800px;
}
.fr__title .char { display: inline-block; will-change: transform; }
.fr__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.fr__cell {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.fr__cell--tall { grid-row: span 1; }
.fr__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.fr__cell:hover .fr__img { transform: scale(1.05); }
.fr__cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.85) 0%, rgba(8,8,10,0) 45%);
}
.fr__cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 1rem;
}
.fr__name { font-family: var(--font-editorial); font-size: 1.1rem; color: #fff; }
.fr__meta { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

@media (max-width: 860px) {
  .st__grid { grid-template-columns: 1fr; gap: 2rem; }
  .st__portrait { max-width: 22rem; }
  .tl { grid-template-columns: 1fr; gap: 1.5rem; }
  .fr__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================================
   RESERVED SECTIONS (empty placeholders)
   ========================================================================== */
.reserved {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: clamp(3rem, 10vh, 8rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, var(--canvas) 0%, var(--canvas-raise) 100%);
}
.reserved__label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.reserved__note {
  margin: 0;
  max-width: 46ch;
  font-size: 0.95rem;
  color: var(--ink-faint);
}

/* =============================================================================
   OUR WORK — light editorial gallery + All Projects overlay
   ========================================================================== */
.work,
.allwork {
  --w-bg: #e7e0d4;
  --w-ink: #2a241c;
  --w-dim: #6f6556;
  --w-line: rgba(42, 36, 28, 0.16);
  --w-btn: #5a4a35;
  --w-title: #4a3a24;
}
.work {
  position: relative;
  background: var(--w-bg);
  color: var(--w-ink);
  padding: clamp(3rem, 7vh, 6rem) clamp(1.25rem, 5vw, 5rem) clamp(4rem, 9vh, 7rem);
  overflow: hidden;
}
.work__ghost {
  margin: 0;
  text-align: center;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(3.5rem, 18vw, 17rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: rgba(42, 36, 28, 0.10);
  white-space: nowrap;
  perspective: 1000px;
  user-select: none;
}
.work__ghost .char { display: inline-block; will-change: transform; }

.work__feature { position: relative; z-index: 1; max-width: 640px; margin: clamp(-4rem, -7vw, -2rem) auto 0; }
.work__pair {
  max-width: 900px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* --- Project card -------------------------------------------------------- */
.pc { margin: 0; }
.pc__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d8d0c2;
  box-shadow: 0 30px 60px -34px rgba(30, 22, 12, 0.5);
}
.pc--featured .pc__media { aspect-ratio: 16 / 11; }
.pc__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.pc:hover .pc__img { transform: scale(1.04); }
.pc__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.5), rgba(20,14,8,0) 42%);
  opacity: 0; transition: opacity 0.4s;
}
.pc:hover .pc__scrim { opacity: 1; }
.pc--featured .pc__scrim { opacity: 1; background: linear-gradient(to top, rgba(20,14,8,0.6) 0%, rgba(20,14,8,0.05) 55%); }

.pc__icons { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 0.4rem; }
.pc__icon {
  width: 1.7rem; height: 1.7rem; border-radius: 999px; display: grid; place-items: center;
  background: rgba(20,14,8,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff;
}
.pc__icon svg { width: 0.85rem; height: 0.85rem; }
.pc__tags { position: absolute; left: 12px; bottom: 12px; z-index: 3; display: flex; gap: 0.35rem; }
.pc__tag {
  font-size: 0.54rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.55rem; border-radius: 999px; color: #f3ece0;
  background: rgba(20,14,8,0.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
}
.pc__details {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 0.8rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--w-btn); color: #f3ece0; transition: background 0.25s;
}
.pc__details:hover { background: #6d5940; }
.pc__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem; gap: 0.4rem; pointer-events: none;
}
.pc__overlay .pc__couple { color: rgba(255,255,255,0.85); }
.pc__overlay .pc__title { color: #fff; }
.pc__cap { text-align: center; margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.2rem; }
.pc__couple { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--w-dim); }
.pc__title {
  font-family: var(--font-editorial); font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem); line-height: 1.05; color: var(--w-title);
}
.pc--featured .pc__title { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* --- More / categories --------------------------------------------------- */
.work__more { max-width: 760px; margin: clamp(2.5rem, 6vw, 5rem) auto 0; text-align: center; }
.work__more-label { margin: 0 0 clamp(1.5rem, 3vw, 2.5rem); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--w-dim); }
.work__cat {
  width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: clamp(1rem, 2vw, 1.4rem) 0; border: 0; border-bottom: 1px solid var(--w-line);
  background: transparent; cursor: pointer; text-align: left;
}
.work__cat:first-of-type { border-top: 1px solid var(--w-line); }
.work__cat-name { font-family: var(--font-editorial); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--w-title); }
.work__cat-name sup { font-size: 0.5em; color: var(--w-dim); vertical-align: super; }
.work__cat-see {
  flex: none; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--w-dim);
  border: 1px solid var(--w-line); border-radius: 999px; padding: 0.45rem 0.9rem; transition: color 0.25s, border-color 0.25s;
}
.work__cat:hover .work__cat-see { color: var(--w-ink); border-color: var(--w-ink); }
.work__all {
  margin-top: clamp(2rem, 4vw, 3rem); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 1.8rem; border-radius: 999px; border: 0; cursor: pointer; background: var(--w-btn); color: #f3ece0; transition: background 0.25s;
}
.work__all:hover { background: #6d5940; }

/* --- ALL PROJECTS overlay ------------------------------------------------ */
.allwork {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--w-bg); color: var(--w-ink);
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease-out), visibility 0.5s;
  display: flex; flex-direction: column;
}
.allwork.is-open { opacity: 1; visibility: visible; }
.allwork__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 4vw, 3rem); border-bottom: 1px solid var(--w-line);
}
.allwork__filters { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.allwork__sel {
  appearance: none; -webkit-appearance: none; font: inherit; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w-ink); background-color: transparent; border: 1px solid var(--w-line); border-radius: 999px;
  padding: 0.5rem 1.9rem 0.5rem 0.9rem; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f6556' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 0.6rem center; background-size: 0.8rem;
}
.allwork__reset { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; background: transparent; border: 0; color: var(--w-dim); cursor: pointer; padding: 0.5rem; }
.allwork__reset:hover { color: var(--w-ink); }
.allwork__close {
  flex: none; width: 2.6rem; height: 2.6rem; border-radius: 999px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--w-line); color: var(--w-ink); cursor: pointer; transition: background 0.25s;
}
.allwork__close:hover { background: rgba(42,36,28,0.06); }
.allwork__close svg { width: 1.1rem; height: 1.1rem; }
.allwork__scroll { flex: 1; overflow-y: auto; padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem); }
.allwork__feature { max-width: 900px; margin: 0 auto clamp(1rem, 2vw, 1.5rem); }
.allwork__grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.75rem); }
.allwork__grid .pc[data-hidden="1"] { display: none; }
.allwork__loadwrap { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.allwork__load {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem 1.8rem;
  border-radius: 999px; border: 1px solid var(--w-line); cursor: pointer; background: transparent; color: var(--w-ink);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.allwork__load:hover { background: var(--w-btn); color: #f3ece0; border-color: var(--w-btn); }
.allwork__load[hidden] { display: none; }
body.allwork-open { overflow: hidden; }

/* --- PROJECT DETAIL (dark cinematic case study) -------------------------- */
.pd {
  position: fixed; inset: 0; z-index: 2100;
  background: var(--canvas); color: var(--ink);
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.pd.is-open { opacity: 1; visibility: visible; }
.pd__close {
  position: fixed; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); z-index: 3;
  width: 2.8rem; height: 2.8rem; border-radius: 999px; display: grid; place-items: center;
  background: rgba(0,0,0,0.42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--hairline); color: #fff; cursor: pointer; transition: background 0.25s;
}
.pd__close:hover { background: rgba(0,0,0,0.65); }
.pd__close svg { width: 1.2rem; height: 1.2rem; }
.pd__scroll { height: 100%; overflow-y: auto; }
.pd__hero { position: relative; height: min(72vh, 48rem); }
.pd__hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pd__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,13,0.96) 0%, rgba(11,11,13,0.12) 55%); }
.pd__hero-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; width: 100%; max-width: 1100px; margin: 0 auto; padding: clamp(1.5rem, 5vw, 3.5rem); }
.pd__couple { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.pd__title { font-family: var(--font-editorial); font-weight: 500; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1; margin: 0.4rem 0 0.9rem; color: var(--ink); }
.pd__meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pd__meta span { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.7rem; border: 1px solid var(--hairline); border-radius: 999px; color: var(--ink-dim); }
.pd__body { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 2rem) clamp(1.5rem, 4vw, 2.5rem); }
.pd__lead { font-family: var(--font-editorial); font-size: clamp(1.4rem, 2.6vw, 2.2rem); line-height: 1.2; color: var(--ink); margin: 0 0 1.5rem; text-wrap: balance; }
.pd__body p:not(.pd__lead) { color: var(--ink-dim); line-height: 1.7; margin: 0 0 1.1rem; }
.pd__label { max-width: 1100px; margin: 0 auto clamp(0.9rem, 2vw, 1.25rem); padding: 0 clamp(1.5rem, 5vw, 2rem); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); }
.pd__film { max-width: 1100px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); padding: 0 clamp(1.5rem, 5vw, 2rem); }
.pd__film-frame { border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9; background: #111; box-shadow: 0 40px 80px -34px rgba(0,0,0,0.8); }
.pd__film-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd__gallery { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 2rem) clamp(3.5rem, 8vw, 7rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.5rem, 1.5vw, 1rem); }
.pd__gallery span { display: block; aspect-ratio: 3 / 4; border-radius: 10px; background-size: cover; background-position: center; }
body.pd-open { overflow: hidden; }
@media (max-width: 720px) { .pd__gallery { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 720px) {
  .work__pair { grid-template-columns: 1fr; }
  .allwork__grid { grid-template-columns: 1fr; }
  .work__cat { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  /* Don't let the featured card cover the "Our Work" heading on mobile */
  .work__ghost { color: rgba(42, 36, 28, 0.18); }
  .work__feature { margin-top: clamp(1rem, 4vw, 2rem); }
}

/* =============================================================================
   TESTIMONIALS — light. Rotating feature + marquee of reviews
   ========================================================================== */
.tms {
  --lo-ink: #0c0c0d;
  --lo-dim: #55554f;
  position: relative;
  background: #f4f3f1;
  color: var(--lo-ink);
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
}
.tms__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 0.9fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;   /* NOT stretch — stretch + aspect-ratio blows the feature up */
}
.tms__intro { align-self: center; }
.tms__title {
  margin: 0 0 clamp(1rem, 2.5vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 3.4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--lo-ink);
}
.tms__line { display: block; perspective: 800px; }
.tms__title .char { display: inline-block; will-change: transform; }
.tms__sub {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.55;
  color: var(--lo-dim);
}

/* --- Rotating feature testimonial --------------------------------------- */
.tms__feature {
  position: relative;
  width: 100%;
  max-width: 27rem;          /* keep it modest, like the reference */
  margin-inline: auto;
  aspect-ratio: 4 / 4.6;
  border-radius: 20px;
  overflow: hidden;
  background: #131316;
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.5);
}
.feature__card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.feature__card.is-active { opacity: 1; }
.feature__img {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  animation: featureZoom 9s ease-in-out infinite alternate;
}
@keyframes featureZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.feature__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.9) 0%, rgba(8,8,10,0.1) 45%, rgba(8,8,10,0) 70%);
}
.feature__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  color: #f6f5f2;
}
.feature__quote {
  margin: 0 0 0.9rem;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.25;
}
.feature__by { font-size: 0.85rem; color: rgba(246,245,242,0.75); }
.feature__by strong { color: #fff; font-weight: 600; margin-right: 0.5rem; }

/* --- Marquee of review cards -------------------------------------------- */
.tms__marquee {
  position: relative;
  height: clamp(28rem, 60vh, 38rem);   /* fixed viewport — the track scrolls inside */
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
}
.tms__track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: tmsScroll 34s linear infinite;
  will-change: transform;
}
.tms__marquee:hover .tms__track { animation-play-state: paused; }
@keyframes tmsScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.review {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, 0.4);
}
.review__text {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #23231f;
}
.review__stars { display: flex; gap: 0.15rem; margin-bottom: 0.85rem; color: #d99a2b; }
.review__stars svg { width: 0.95rem; height: 0.95rem; }
.review__by { display: flex; align-items: center; gap: 0.65rem; }
.review__avatar {
  width: 2.35rem; height: 2.35rem; border-radius: 999px;
  background-size: cover; background-position: center;
  filter: grayscale(0.15);
  flex: none;
}
.review__name { font-size: 0.85rem; font-weight: 600; color: #111114; line-height: 1.2; }
.review__role { font-size: 0.75rem; color: #6f6f68; }

@media (max-width: 940px) {
  .tms__grid { grid-template-columns: 1fr 1fr; }
  .tms__intro { grid-column: 1 / -1; align-self: start; }
}
@media (max-width: 640px) {
  .tms__grid { grid-template-columns: 1fr; }
  .tms__feature { aspect-ratio: 4 / 4.2; max-width: 26rem; }
  .tms__marquee { height: 26rem; }
}

/* =============================================================================
   CONTACT — enquiry card over a full-bleed showreel
   ========================================================================== */
.contact {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vh, 7rem) clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.contact__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
/* Ken-Burns still stands in for the reel until assets/reel.mp4 is dropped in */
.contact__reel {
  position: absolute;
  inset: -6%;
  background-image: var(--reel-poster);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) contrast(1.05);
  animation: reelDrift 26s ease-in-out infinite alternate;
}
@keyframes reelDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-2%, -2%, 0); }
}
.contact__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;                 /* revealed only once a real reel plays */
  transition: opacity 0.8s ease;
}
.contact__video.is-playing { opacity: 1; }
.contact__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%),
    radial-gradient(120% 100% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.4) 100%);
}

/* The floating light card (left, like the reference) */
.contact__card {
  position: relative;
  width: min(100%, 33rem);
  margin: 0 auto 0 clamp(0rem, 4vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 22px;
  background: rgba(244, 243, 241, 0.97);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.7);
  color: #111114;
}
.contact__title {
  margin: 0 0 0.7rem;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #111114;
}
.contact__sub {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #55554f;
}

/* --- Form --------------------------------------------------------------- */
.enquiry { display: flex; flex-direction: column; gap: clamp(0.5rem, 1.4vw, 1rem); }
.enquiry__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.field { position: relative; }
.field__input {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 0;
  padding: 1.45rem 0 0.55rem;
  font-family: var(--font-text);
  font-size: 1rem;
  color: #111114;
  transition: border-color 0.25s;
}
.field--select .field__input { padding-right: 1.6rem; cursor: pointer; }
.field__input:focus { outline: none; border-bottom-color: #111114; }
.field__label {
  position: absolute;
  left: 0;
  top: 1.2rem;
  font-family: var(--font-text);
  font-size: 1rem;
  color: #6f6f68;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
/* Float the label up when the field is focused or filled */
.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field--select:has(select:focus) .field__label,
.field--select:has(select:valid) .field__label {
  transform: translateY(-1.15rem) scale(0.76);
  color: #111114;
}
.field__chev {
  position: absolute;
  right: 0;
  top: 1.35rem;
  width: 1.15rem;
  height: 1.15rem;
  color: #6f6f68;
  pointer-events: none;
}

/* Consent */
.enquiry__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #55554f;
  cursor: pointer;
}
.enquiry__consent input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.enquiry__consent-box {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.05rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: #f4f3f1;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.enquiry__consent-box svg { width: 0.9rem; height: 0.9rem; opacity: 0; transition: opacity 0.15s; }
.enquiry__consent input:checked + .enquiry__consent-box {
  background: #111114;
  border-color: #111114;
}
.enquiry__consent input:checked + .enquiry__consent-box svg { opacity: 1; }
.enquiry__consent input:focus-visible + .enquiry__consent-box {
  outline: 2px solid #111114;
  outline-offset: 2px;
}
.enquiry__consent a { color: #111114; text-decoration: underline; text-underline-offset: 2px; }

/* Submit */
.enquiry__submit {
  align-self: flex-start;
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem 0.85rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: #111114;
  color: #f6f5f2;
  font-family: var(--font-text);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.enquiry__submit svg {
  width: 1.35rem;
  height: 1.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.25s var(--ease-out);
}
.enquiry__submit:hover { background: #000; }
.enquiry__submit:hover svg { transform: translateX(3px); }
.enquiry__submit:focus-visible { outline: 2px solid #111114; outline-offset: 3px; }

.enquiry__done {
  margin: 0.5rem 0 0;
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  line-height: 1.35;
  color: #111114;
}

@media (max-width: 620px) {
  .enquiry__row { grid-template-columns: 1fr; gap: clamp(0.5rem, 1.4vw, 1rem); }
  /* Frosted glass so the film is visible behind the form on phones */
  .contact__card {
    margin: 0 auto;
    background: rgba(245, 242, 236, 0.55);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    backdrop-filter: blur(18px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  /* let more of the video show through around the card */
  .contact__scrim { background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.25)); }
}

/* =============================================================================
   FOOTER
   ========================================================================== */
.site-foot {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: clamp(3rem, 7vh, 6rem) clamp(1.5rem, 6vw, 6rem) clamp(1.5rem, 3vh, 2.5rem);
  color: var(--ink-dim);
}

/* --- Enquiry CTA (was the newsletter box) ------------------------------- */
.foot-cta {
  max-width: 1200px;
  margin: 0 auto clamp(3rem, 7vh, 5rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 24px;
  overflow: hidden;
  background: #141417;
  border: 1px solid var(--hairline);
  box-shadow: 0 50px 100px -42px rgba(0, 0, 0, 0.85);
}
.foot-cta__media {
  min-height: 15rem;
  background-image: var(--foot-cta-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05);
}
.foot-cta__body {
  padding: clamp(1.75rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.foot-cta__title {
  margin: 0 0 0.7rem;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.foot-cta__sub {
  margin: 0 0 clamp(1.4rem, 2.5vw, 2rem);
  max-width: 42ch;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.55;
  color: var(--ink-dim);
}
.foot-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem 0.8rem 1.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--canvas);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.foot-cta__btn svg {
  width: 1.35rem;
  height: 1.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.12);
  transition: transform 0.25s var(--ease-out);
}
.foot-cta__btn:hover { background: #fff; }
.foot-cta__btn:hover svg { transform: translateX(3px); }

/* --- Main columns ------------------------------------------------------- */
.foot-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
}
.foot-brand__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.foot-brand__desc {
  margin: 1rem 0 1.5rem;
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-faint);
}
.foot-social { display: flex; gap: 0.6rem; }
.foot-social__link {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--ink-dim);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.foot-social__link svg { width: 1.15rem; height: 1.15rem; }
.foot-social__link:hover { color: var(--ink); border-color: var(--ink-dim); background: rgba(255, 255, 255, 0.04); }

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.foot-col { display: flex; flex-direction: column; gap: 0.75rem; }
.foot-col__head {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
}
.foot-col a,
.foot-col span {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--ink); }
.foot-col--contact span { color: var(--ink-faint); }

/* --- Bottom bar --------------------------------------------------------- */
.foot-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: clamp(1.5rem, 3vh, 2rem);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.foot-bar__by {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-faint);
  transition: opacity 0.2s;
}
.foot-bar__by:hover { opacity: 0.7; }
.foot-bar__by img { height: 20px; width: auto; display: block; }
.foot-bar__links { display: flex; gap: 1.5rem; }
.foot-bar__links a { color: var(--ink-faint); transition: color 0.2s; }
.foot-bar__links a:hover { color: var(--ink-dim); }

@media (max-width: 780px) {
  .foot-cta { grid-template-columns: 1fr; }
  .foot-cta__media { min-height: 10rem; }
  .foot-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 460px) {
  .foot-cols { grid-template-columns: 1fr; }
}

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 860px) {
  .about__headline { font-size: clamp(2.6rem, 15vw, 6rem); }
  .portrait { width: min(100%, 19rem); }
  .about__bio { max-width: none; }
}

@media (max-width: 600px) {
  .site-head__nav { gap: 1.1rem; font-size: 0.78rem; }
  .hero__frame { align-items: flex-end; }
  .work__head, .work__foot { align-items: flex-start; }
  .work__note { text-align: left; max-width: none; }
}

/* =============================================================================
   REDUCED MOTION — skip the show, keep the substance
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .intro { display: none; }
  .hero__scroll-line { animation: none; opacity: 0.6; }

  /* Reveal everything immediately — keep the substance, skip the show */
  .js [data-animate] { opacity: 1 !important; transform: none !important; }
  .st__portrait-img { clip-path: none !important; }
  .lg__video, .hero__video, .contact__video { opacity: 1 !important; }
  .lg__title .char,
  .st__title .char,
  .fr__title .char,
  .work__ghost .char,
  .tms__title .char { transform: none !important; }
  .tms__track { animation: none !important; }
  .feature__img, .contact__reel { animation: none !important; }
}
