/* ============================================================
   CHIC COCOON — The Folio, Gallery White edition
   Pure white wall · neutral ink · rose as jewelry · black scenes
   Ink #171411 · White #FFFFFF · Rose #CFB7AD · Black #16130F
   Type: Fraunces (display) · Albert Sans (annotations)
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* native scroll; smooth applies only to anchor clicks, offset for fixed header */
html { scroll-behavior: smooth; scroll-padding-top: 84px; background: var(--canvas); }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.66;
  color: var(--ink);
  background: transparent;          /* lets the ambient wave layer show through */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   AMBIENT WAVE — slow flowing background, site-wide, behind content
   ============================================================ */
.wave-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.wave-bg span {
  position: absolute;
  left: -30%;
  width: 160%;
  height: 46vh;
  border-radius: 45%;
  opacity: 0.55;
  will-change: transform;
  filter: blur(40px);
}
.wave-bg .w1 {
  top: 4%;
  background: radial-gradient(60% 80% at 50% 50%, rgba(207, 183, 173, 0.30), transparent 70%);
  animation: waveA 24s ease-in-out infinite alternate;
}
.wave-bg .w2 {
  top: 40%;
  background: radial-gradient(60% 80% at 50% 50%, rgba(222, 200, 178, 0.26), transparent 70%);
  animation: waveB 32s ease-in-out infinite alternate;
}
.wave-bg .w3 {
  top: 66%;
  background: radial-gradient(60% 80% at 50% 50%, rgba(207, 183, 173, 0.22), transparent 70%);
  animation: waveA 28s ease-in-out infinite alternate-reverse;
}
@keyframes waveA {
  0%   { transform: translate3d(-8%, 0, 0) rotate(-3deg) scaleY(1); }
  100% { transform: translate3d(8%, 4%, 0) rotate(3deg) scaleY(1.12); }
}
@keyframes waveB {
  0%   { transform: translate3d(6%, 2%, 0) rotate(2deg) scaleY(1.1); }
  100% { transform: translate3d(-7%, -3%, 0) rotate(-2deg) scaleY(0.95); }
}
@media (prefers-reduced-motion: reduce) {
  .wave-bg span { animation: none !important; }
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
::selection { background: var(--ink); color: var(--canvas); }

@media (hover: hover) and (pointer: fine) {
  html.js.has-cursor, html.js.has-cursor a, html.js.has-cursor button { cursor: none; }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 300;
  background: var(--ink);
  color: var(--canvas);
  padding: 0.8rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.skip-link:focus { top: 1rem; }

/* ---------- Utilities ---------- */
.container { width: min(1280px, 100% - 3rem); margin-inline: auto; }

.note {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.note--ink { color: var(--ink-soft); }

.fleuron {
  display: inline-block;
  color: var(--rose);
  font-size: 0.85rem;
  letter-spacing: 0;
}

.h-display {
  font-family: var(--font-serif);
  font-weight: 380;
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
/* the italic IS the emphasis — no color doing typography's job */
.h-display em, .h-hero em {
  font-style: italic;
  font-weight: 330;
  color: inherit;
}

.rule-double {
  border: 0;
  height: 4px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.rule { border: 0; border-top: 1px solid var(--line); }

/* Reveals — whisper grade, gated on JS */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
html.js .reveal.in-view { opacity: 1; transform: none; }
html.js .reveal-img {
  clip-path: inset(8% 0 8% 0);
  opacity: 0;
  transition: clip-path 1.3s var(--ease-out), opacity 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
html.js .reveal-img > img {
  transform: scale(1.06);
  transition: transform 1.6s var(--ease-out);
  transition-delay: var(--d, 0s);
}
html.js .reveal-img.in-view { clip-path: inset(0 0 0 0); opacity: 1; }
html.js .reveal-img.in-view > img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal, html.js .reveal-img { opacity: 1; transform: none; clip-path: none; transition: none; }
  html.js .reveal-img > img { transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Buttons — soft pills, like the approved navbar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--canvas);
  border: 1px solid var(--ink);
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--canvas); }
.btn--light { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }
.btn--light:hover { background: transparent; color: var(--paper); }
.btn--outline-light { background: transparent; color: var(--paper); border-color: rgba(247, 246, 244, 0.45); }
.btn--outline-light:hover { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }
.btn svg { width: 0.95em; height: 0.95em; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* rose underline — one of the jewelry touches */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rose);
  transition: color 0.3s, border-color 0.3s;
}
.link-arrow svg { width: 0.9em; height: 0.9em; transition: transform 0.3s var(--ease-out); }
.link-arrow:hover { color: var(--rose-deep); border-color: var(--rose-deep); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--light { color: var(--paper); border-color: var(--rose); }
.link-arrow--light:hover { color: var(--rose); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

/* image captions — museum metadata, rose hairline survives */
.figcap {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-top: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.figcap::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--rose);
  align-self: center;
}

/* ============================================================
   CURSOR — ONE motion system: a precise dot + a softly trailing ring.
   Both are driven by the same rAF loop with fixed easing, so the cursor
   reads as a single cohesive object (was: instant dot + lagging pill).
   ============================================================ */
.cursor-glow, .cursor-dot, .cursor-ring, .cursor-view {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.35s var(--ease-out);
}
/* the gallery picture-light — a soft warm pool that follows the hand, as if a
   spotlight is washing the wall you point at. Kept restrained and professional. */
.cursor-glow {
  width: 230px; height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 186, 168, 0.42) 0%, rgba(212, 184, 166, 0.16) 32%, rgba(212, 184, 166, 0) 66%);
  transition: opacity 0.5s var(--ease-out), width 0.5s var(--ease-out), height 0.5s var(--ease-out);
}
/* the precise point inside the light — white + difference blend (adaptive) */
.cursor-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ffffff;
  mix-blend-mode: difference;
  transition: opacity 0.3s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
/* focus ring — HIDDEN until the pointer meets a link/button, then the diffuse
   light "resolves" into a crisp frame so interactivity reads clearly (the glow
   alone wouldn't signal an action). White via difference blend = adaptive. */
.cursor-ring {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  mix-blend-mode: difference;
  transform-origin: center;
  transition: opacity 0.32s var(--ease-out),
              width 0.4s var(--ease-out), height 0.4s var(--ease-out),
              border-width 0.3s var(--ease-out);
}
html.cursor-visible .cursor-glow,
html.cursor-visible .cursor-dot { opacity: 1; }
/* interactive hover: light focuses — pool tightens, crisp ring frames the action */
html.cursor-hover .cursor-glow { width: 132px; height: 132px; opacity: 0.85; }
html.cursor-hover .cursor-ring { opacity: 1; }
html.cursor-hover .cursor-dot { width: 4px; height: 4px; }
/* press: the focus snaps in tight — a crisp, tactile click response */
html.cursor-down .cursor-ring { width: 30px; height: 30px; border-width: 1.5px; }
html.cursor-down .cursor-glow { width: 104px; height: 104px; }
/* over portfolio: light + point give way to the "View" pill */
html.cursor-view .cursor-glow,
html.cursor-view .cursor-dot,
html.cursor-view .cursor-ring { opacity: 0; }
.cursor-view {
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  background: rgba(23, 20, 17, 0.85);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  color: var(--paper);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease-out);
}
html.cursor-view .cursor-view { opacity: 1; }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-glow, .cursor-dot, .cursor-ring, .cursor-view { display: none !important; }
}


/* ============================================================
   SCROLL RAIL — folio chapter indicator
   ============================================================ */
.scroll-rail {
  position: fixed;
  right: clamp(1.2rem, 2.4vw, 2.2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
html.js .scroll-rail.is-ready { opacity: 1; }
.rail-chapter {
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  min-height: 7.5em;
  display: flex;
  align-items: center;
  transition: opacity 0.35s;
}
.rail-chapter.is-switching { opacity: 0; }
.rail-track {
  position: relative;
  width: 1px;
  height: 128px;
  background: var(--line);
  overflow: hidden;
}
.rail-thumb {
  position: absolute;
  left: 0; top: 0;
  width: 1px;
  height: 30px;
  background: var(--ink);
  transition: transform 0.18s linear;
}
.rail-count {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
@media (hover: none), (pointer: coarse), (max-width: 1100px) {
  .scroll-rail { display: none; }
}

/* ============================================================
   HEADER — single-row bar (brand · nav · contact pill)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  /* over the dark cinematic hero: transparent bar, light text */
  background: linear-gradient(to bottom, rgba(18, 15, 12, 0.58) 0%, rgba(18, 15, 12, 0.12) 68%, rgba(18, 15, 12, 0) 100%);
  transition: height 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
/* hero header reads light until it docks into the white bar on scroll */
.site-header:not(.is-scrolled):not(.nav-open) .brand-name,
.site-header:not(.is-scrolled):not(.nav-open) .header-nav a,
.site-header:not(.is-scrolled):not(.nav-open) .nav-cta {
  color: var(--paper);
}
.site-header:not(.is-scrolled):not(.nav-open) .brand-sub { color: var(--rose); }
.site-header:not(.is-scrolled):not(.nav-open) .nav-cta { border-color: rgba(247, 246, 244, 0.5); }
.site-header:not(.is-scrolled):not(.nav-open) .nav-cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.site-header:not(.is-scrolled):not(.nav-open) .nav-toggle span { background: var(--paper); }
.site-header.is-scrolled {
  height: 66px;
  /* the white bar from the approved screenshot */
  /* solid bar — no backdrop-filter: blur was the scroll-jank source as
     large graded images passed beneath the fixed header */
  background: #ffffff;
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(0, 0, 0, 0.25);
}
/* menu open over the white sheet → dark icon/brand regardless of scroll */
.site-header.nav-open {
  background: transparent;
  box-shadow: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1380px, 100% - 3rem);
  margin-inline: auto;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1.3; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 450;
  font-size: 1.25rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.4s;
}
.brand-sub {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.62em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  transition: color 0.4s;
}
.header-nav { display: flex; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.header-nav a {
  font-size: 0.72rem;
  font-weight: 570;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.header-nav a:hover { color: var(--ink); }
.header-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.nav-cta:hover { background: var(--ink); border-color: var(--ink); color: #ffffff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, background 0.4s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav ol { counter-reset: mnav; }
.mobile-nav li { counter-increment: mnav; }
.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 7.5vw, 2.8rem);
  line-height: 1.55;
  color: var(--ink);
  transition: color 0.25s, transform 0.3s var(--ease-out);
}
.mobile-nav a::before {
  content: counter(mnav, decimal-leading-zero);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.mobile-nav a:hover { color: var(--rose-deep); transform: translateX(8px); }
.mobile-nav-meta { margin-top: 2.6rem; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.08em; }

/* ============================================================
   HERO — full-bleed cinematic cover
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;         /* content vertically centered — balanced, no dead gap up top */
  overflow: hidden;
  background: var(--canvas-2);
}
.hero-bg { position: absolute; inset: 0; will-change: transform; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: kenburns 16s var(--ease-out) forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
html.gsap .hero-bg img { animation: none; } /* GSAP owns the settle when present */
/* cinematic scrim — a soft DARK grade pooled at the lower-left so the light
   title reads crisply, fading to clear on the right where the room shows.
   No "white fog": this darkens, it doesn't haze. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(102deg, rgba(18, 15, 12, 0.86) 0%, rgba(18, 15, 12, 0.66) 28%, rgba(18, 15, 12, 0.38) 48%, rgba(18, 15, 12, 0.12) 64%, rgba(18, 15, 12, 0) 80%),
    linear-gradient(to top, rgba(18, 15, 12, 0.55) 0%, rgba(18, 15, 12, 0.12) 26%, rgba(18, 15, 12, 0) 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4.5rem;         /* clears the fixed header, biases just below centre */
  max-width: 60rem;
  color: var(--paper);
}
.hero-content .note {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--paper);
  margin-bottom: 1.8rem;
}
.hero-content .note::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--rose);
}
.h-hero {
  font-family: var(--font-serif);
  font-weight: 350;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 1px 30px rgba(18, 15, 12, 0.35);
}
.h-hero em, .h-hero .w.it { font-style: italic; font-weight: 330; color: var(--paper); }
.hero-sub {
  max-width: 32rem;
  margin-top: 1.9rem;
  color: rgba(247, 246, 244, 0.84);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  margin-top: 2.6rem;
}
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(2rem, 7vw, 7rem);
  bottom: clamp(5rem, 13vh, 9.5rem);
  width: 118px;
  height: 118px;
  animation: spin 34s linear infinite;
}
.hero-stamp svg { width: 100%; height: 100%; }
.hero-stamp text {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3.1px;
  text-transform: uppercase;
  fill: rgba(247, 246, 244, 0.82);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* scroll cue — a thin line that pulses down, centered at the base */
.hero-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 64px;
  background: rgba(23, 20, 17, 0.18);
  overflow: hidden;
}
.hero-cue::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 100%;
  height: 50%;
  background: var(--rose-deep);
  animation: cue 2.2s var(--ease-out) infinite;
}
@keyframes cue { 0% { top: -50%; } 100% { top: 110%; } }

.hero .fade-up {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 1.2s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
/* when GSAP choreographs the intro, the CSS fallback stands down */
html.gsap .hero .fade-up { animation: none; opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .hero-cue::after { animation: none; } }

/* ---------- line-mask reveals (GSAP splits headlines into lines) ---------- */
.split .line {
  display: block;
  overflow: hidden;
  padding-block: 0.08em;     /* keep descenders unclipped */
  margin-block: -0.08em;
}
.split .line-inner { display: block; will-change: transform; }
.split .w.it { font-style: italic; font-weight: 330; }

/* ---------- Unified photo grade ----------
   one warm, slightly muted editorial tone so every image — real project
   shot or stock — reads as one commissioned set. */
.hero-bg img,
.work-figure img,
.story-figures img,
.step-figure img,
.services-figure img,
.post-fig img {
  filter: saturate(0.92) contrast(1.04) brightness(1.01) sepia(0.10);
}

/* ============================================================
   INTERLUDE — epigraph
   ============================================================ */
.interlude {
  padding: clamp(2.8rem, 5vw, 4.25rem) 0;
  text-align: center;
}
.interlude .fleuron { display: block; margin-bottom: 1.7rem; font-size: 1rem; }
.interlude blockquote { max-width: 46rem; margin-inline: auto; }
.interlude p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.interlude cite {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.7rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.interlude cite::before, .interlude cite::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--rose);
}

/* ============================================================
   SPREADS — shared furniture
   ============================================================ */
.spread { padding: clamp(2.7rem, 4.8vw, 4.4rem) 0; }
.spread-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem;
  border-top: 1px solid var(--line-strong);
  padding-top: 1rem;
  margin-bottom: clamp(1.9rem, 3.2vw, 2.8rem);
}
.spread-no {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}
.story-copy { grid-column: 1 / 6; }
.story-copy h2 { font-size: clamp(2rem, 3.3vw, 3.1rem); line-height: 1.08; margin-bottom: 1.3rem; }
.story-copy p { color: var(--ink-soft); margin-bottom: 1.35rem; }
.story-copy p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.3em;
  line-height: 0.8;
  float: left;
  padding: 0.1em 0.14em 0 0;
  color: var(--ink);
}
.story-copy .link-arrow { margin-top: 0.6rem; }
.story-figures {
  grid-column: 7 / 13;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.story-fig-a { grid-column: 1 / 7; position: relative; }
.story-fig-a .ph { aspect-ratio: 16 / 11; overflow: hidden; background: var(--canvas-2); }
.story-fig-b { grid-column: 2 / 6; margin-top: -3.2rem; position: relative; z-index: 2; }
.story-fig-b .ph {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--canvas-2);
  border: 7px solid var(--canvas);
  box-shadow: 0 26px 56px -26px rgba(0, 0, 0, 0.32);
}
.story-figures img { width: 100%; height: 100%; object-fit: cover; }
.story-stamp {
  position: absolute;
  right: -0.9rem;
  top: -1.1rem;
  z-index: 3;
  transform: rotate(2.5deg);
  background: var(--black);
  color: var(--canvas);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  padding: 0.85rem 1.3rem;
}

/* ============================================================
   PRINCIPLES — manifesto rows
   ============================================================ */
.principles { padding-bottom: clamp(2.7rem, 4.8vw, 4.4rem); }
.principle {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr 0.9fr;
  gap: clamp(1.4rem, 3.5vw, 4rem);
  align-items: baseline;
  padding: clamp(1.4rem, 2.5vw, 2.1rem) 0;
  border-top: 1px solid var(--line);
}
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle-head { display: flex; align-items: baseline; gap: 1.1rem; }
.principle-head .rn {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  min-width: 1.6rem;
}
.principle-head h3 {
  font-family: var(--font-serif);
  font-weight: 420;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.18;
  color: var(--ink);
}
.principle p { color: var(--ink-soft); font-size: 0.98rem; max-width: 36rem; }
.principle .link-arrow { justify-self: end; }

/* ============================================================
   PROCESS — contents with dotted leaders (white wall)
   ============================================================ */
.process { background: var(--canvas); }
.step {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1.6rem, 3.4vw, 3.6rem);
  align-items: center;
  padding: clamp(1.9rem, 3.4vw, 2.9rem) 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-toc {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}
.step-toc .sn {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}
.step-toc h3 {
  font-family: var(--font-serif);
  font-weight: 420;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--ink);
  white-space: nowrap;
}
.step-toc .leader {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-0.45em);
  min-width: 2rem;
}
.step-toc .phase {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.step-body p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1rem; max-width: 34rem; }
.step-body p:last-child { margin-bottom: 0; }
.step-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.06rem;
}
.step-figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--canvas-2);
}
.step-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
@media (hover: hover) { .step:hover .step-figure img { transform: scale(1.04); } }
.step:nth-child(even) .step-figure { order: -1; }
.step:nth-child(even) { grid-template-columns: 1fr 1.35fr; }

/* ============================================================
   SERVICES — black scene
   ============================================================ */
.services-band {
  background: var(--black);
  color: var(--paper);
  padding: clamp(3.2rem, 5.2vw, 5rem) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
}
.services-figure {
  grid-column: 1 / 6;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 250px 250px 0 0;
  overflow: hidden;
  background: var(--black-2);
}
.services-figure img { width: 100%; height: 100%; object-fit: cover; }
.services-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 250px 250px 0 0;
  border: 1px solid rgba(207, 183, 173, 0.4);
  transform: translate(-10px, 10px);
  pointer-events: none;
}
.services-copy { grid-column: 7 / 13; }
/* rose small caps survive only on black — foil stamping */
.services-copy .note { color: var(--rose); }
.services-copy h2 { color: var(--paper); margin: 1.2rem 0 1.7rem; }
.services-copy h2 em { color: inherit; }
.services-copy p { color: rgba(247, 246, 244, 0.76); margin-bottom: 1.25rem; max-width: 33rem; }
.services-copy .btn { margin-top: 1.1rem; }
.services-rule {
  border: 0;
  height: 4px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  margin-bottom: clamp(2.6rem, 5vw, 4.5rem);
}

/* ============================================================
   TESTIMONIALS — rose quotation marks survive
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.testimonials-grid > * { min-width: 0; }
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.7s var(--ease-out); }
.t-slide { flex: 0 0 100%; }
.t-slide blockquote p {
  font-family: var(--font-serif);
  font-weight: 350;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.t-slide blockquote p::before { content: "\201C"; color: var(--rose); }
.t-slide blockquote p::after { content: "\201D"; color: var(--rose); }
.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.t-author::before { content: ""; width: 2.4rem; height: 1px; background: var(--rose); }
.t-author strong {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.t-author span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; }

.t-index { border-top: 1px solid var(--line-strong); }
.t-index .t-index-label { display: block; padding: 0.9rem 0 0.6rem; }
.t-index button {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 1.04rem;
  color: var(--muted);
  transition: color 0.3s, padding-left 0.35s var(--ease-out);
}
.t-index button .ti-no {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s;
}
.t-index button:hover { color: var(--ink); }
.t-index button.active {
  color: var(--ink);
  font-style: italic;
  padding-left: 0.7rem;
}
.t-index button.active .ti-no { opacity: 1; }

/* ============================================================
   GALLERY — staggered collage
   ============================================================ */
.gallery-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.4rem) clamp(1.1rem, 2.2vw, 2rem);
  align-items: start;
}
.work { display: block; grid-column: span 4; }
.work:nth-child(12n+1) { grid-column: span 7; }
.work:nth-child(12n+2) { grid-column: span 5; margin-top: clamp(2rem, 5vw, 4.5rem); }
.work:nth-child(12n+4) { margin-top: clamp(1.4rem, 3vw, 2.6rem); }
.work:nth-child(12n+6) { grid-column: span 5; margin-top: clamp(1.6rem, 4vw, 3.4rem); }
.work:nth-child(12n+7) { grid-column: span 7; }
.work:nth-child(12n+9) { margin-top: clamp(1.4rem, 3vw, 2.6rem); }
.work:nth-child(12n+11) { grid-column: span 6; }
.work:nth-child(12n+12) { grid-column: span 6; margin-top: clamp(1.8rem, 4vw, 3.6rem); }
.work-figure {
  overflow: hidden;
  background: var(--canvas-2);
  aspect-ratio: 4 / 3;
}
.work:nth-child(12n+1) .work-figure,
.work:nth-child(12n+7) .work-figure { aspect-ratio: 16 / 10; }
.work:nth-child(12n+2) .work-figure,
.work:nth-child(12n+6) .work-figure { aspect-ratio: 4 / 4.6; }
.work-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
@media (hover: hover) { .work:hover .work-figure img { transform: scale(1.045); } }
.work-caption {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.95rem 0.1rem 0;
}
.work-caption .work-no {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  white-space: nowrap;
}
.work-caption h3 {
  font-family: var(--font-serif);
  font-weight: 420;
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.3s;
}
.work-caption .leader {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-0.4em);
  min-width: 1rem;
}
.work-caption .work-view {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.3s;
}
.work:hover .work-caption h3 { color: var(--rose-deep); }
.work:hover .work-caption .work-view { color: var(--ink); }

/* ============================================================
   JOURNAL — index of notes
   ============================================================ */
.journal .spread-head { margin-bottom: 0; }
.post-row {
  display: grid;
  grid-template-columns: 0.55fr 1.8fr 0.8fr;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.3rem, 2.6vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}
.post-fig { overflow: hidden; aspect-ratio: 3 / 2; background: var(--canvas-2); }
.post-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
@media (hover: hover) { .post-row:hover .post-fig img { transform: scale(1.05); } }
.post-body h3 {
  font-family: var(--font-serif);
  font-weight: 430;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s;
}
.post-row:hover .post-body h3 { color: var(--rose-deep); }
.post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.post-meta .post-cat { color: var(--ink-soft); }
.post-row .link-arrow { justify-self: end; }

/* ============================================================
   COLOPHON / CTA — black scene
   ============================================================ */
.cta {
  background: var(--black);
  color: var(--paper);
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}
.cta .fleuron { display: block; margin-bottom: 1.8rem; font-size: 1rem; color: var(--rose); }
.cta .note { color: var(--rose); margin-bottom: 1.6rem; display: inline-block; }
.cta h2 {
  font-family: var(--font-serif);
  font-weight: 360;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 17em;
  margin-inline: auto;
  text-wrap: balance;
}
.cta h2 em { font-style: italic; color: inherit; }
.cta-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(247, 246, 244, 0.72);
  margin-top: 1.6rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.8rem;
}

.site-footer {
  background: var(--black-2);
  color: rgba(247, 246, 244, 0.64);
  padding: clamp(3.4rem, 6vw, 5rem) 0 2.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand { align-items: flex-start; text-align: left; }
.footer-brand .brand-name { color: var(--paper); font-size: 1.3rem; text-indent: 0; }
.footer-brand .brand-sub { text-indent: 0; color: var(--rose); }
.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  margin-top: 1.1rem;
  font-size: 1rem;
  color: rgba(247, 246, 244, 0.5);
  max-width: 20rem;
}
.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--paper); }
.footer-col a svg { width: 1rem; height: 1rem; opacity: 0.7; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(247, 246, 244, 0.38);
}
.footer-bottom nav { display: flex; gap: 1.8rem; }
.footer-bottom a:hover { color: var(--paper); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-copy, .story-figures { grid-column: auto; }
  .story-figures { margin-top: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-figure { grid-column: auto; max-width: 460px; margin-inline: auto; }
  .services-copy { grid-column: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-index { order: 2; }
  .step, .step:nth-child(even) { grid-template-columns: 1fr; gap: 1.4rem; }
  .step:nth-child(even) .step-figure { order: 0; }
  .post-row { grid-template-columns: 0.7fr 2fr; }
  .post-row .link-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .work, .work:nth-child(n) { grid-column: span 6; margin-top: 0; }
  .work-figure, .work:nth-child(n) .work-figure { aspect-ratio: 4 / 3; }
}

@media (max-width: 860px) {
  .header-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .step-toc { flex-wrap: wrap; }
  .step-toc .leader, .step-toc .phase { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 0.99rem; }
  .hero-stamp { display: none; }
  /* light lift from the base only on phone — no all-over fog */
  .hero-scrim {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 34%, rgba(255, 255, 255, 0.12) 62%, rgba(255, 255, 255, 0) 80%);
  }
  .principle { grid-template-columns: 1fr; gap: 0.9rem; }
  .principle .link-arrow { justify-self: start; }
  .gallery .container { width: 100%; }
  .gallery .spread-head, .gallery .gallery-headline { width: calc(100% - 3rem); margin-inline: auto; }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1.5rem 1.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .work, .work:nth-child(n) { flex: 0 0 82%; scroll-snap-align: center; margin-top: 0; }
  html.js .gallery-grid .reveal { opacity: 1; transform: none; }
  html.js .gallery-grid .reveal-img { clip-path: none; opacity: 1; }
  html.js .gallery-grid .reveal-img > img { transform: none; }
  .post-row { grid-template-columns: 1fr; }
  .post-fig { max-width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; }
}

@media print {
  .site-header, .mobile-nav, .cursor-glow, .cursor-dot, .cursor-ring, .cursor-view, .scroll-rail, .hero-stamp, .wave-bg, .cc-particles, .imagery-switch { display: none !important; }
  body { background: #fff; }
}

/* ============================================================
   STOCK VERSION — interactive particle field + imagery switch
   The particle canvas and its formations are EXCLUSIVE to the stock
   imagery version; on the original-photo version the calm wave layer
   shows instead.
   ============================================================ */
.cc-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: none;
}
body.stock-on .cc-particles { display: block; }
body.stock-on .wave-bg { display: none; }

.imagery-switch {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px -22px rgba(0, 0, 0, 0.4);
}
.imagery-switch__label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.imagery-switch button {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.imagery-switch button:hover { color: var(--ink); }
.imagery-switch button.is-active { background: var(--ink); color: var(--canvas); }
@media (max-width: 600px) {
  .imagery-switch { left: 50%; transform: translateX(-50%); }
}
