/* ==========================================================================
   Cassian Laurent Veyrane — fictional character study
   Design system: quiet luxury, editorial restraint.
   ========================================================================== */

/* ---------- Fonts (self-hosted, SIL OFL) ------------------------------- */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-300-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
}

/* ---------- Tokens ------------------------------------------------------ */
:root {
  /* palette */
  --ink: #0f0e0d;
  --ink-2: #141210;
  --ink-3: #1c1916;
  --ink-4: #26221e;
  --ivory: #ece6da;
  --ivory-2: #c4bcae;
  --mute: #9d968a;
  --brass: #b99a6b;
  --brass-soft: rgba(185, 154, 107, 0.35);
  --parchment: #e8e1d3;
  --parchment-2: #ded6c6;
  --ink-on-light: #1a1816;
  --ink-soft-on-light: #4a453e;
  --brass-on-light: #6f5630;

  /* contextual (dark default) */
  --bg: var(--ink);
  --bg-alt: var(--ink-2);
  --fg: var(--ivory);
  --fg-2: var(--ivory-2);
  --fg-3: var(--mute);
  --accent: var(--brass);
  --line: rgba(236, 230, 218, 0.12);
  --line-strong: rgba(236, 230, 218, 0.28);

  /* type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-body: 1.0625rem;
  --lh-body: 1.7;
  --fs-label: 0.6875rem;
  --ls-label: 0.2em;
  --fs-h2: clamp(2rem, 1.2rem + 3.2vw, 3.75rem);
  --fs-h3: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  --fs-display: clamp(2.75rem, 1rem + 8vw, 7.5rem);

  /* spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-section: clamp(5rem, 3rem + 7.5vw, 10rem);
  --gutter: clamp(1rem, 4vw, 4rem);
  --container: 82rem;
  --measure: 62ch;
  --measure-narrow: 52ch;

  /* motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast: 220ms;
  --dur: 600ms;
  --dur-slow: 1100ms;
  --dur-image: 1500ms;

  /* misc */
  --header-h: 4.5rem;
}

/* ---------- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.05; }
p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd, dt, figure, blockquote { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
em { font-style: italic; }
::selection { background: var(--brass); color: var(--ink); }

/* Focus: visible, consistent, never removed */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 1px; }
.section--light :focus-visible { outline-color: var(--ink-on-light); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ---------- Utilities --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 56rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 0.75rem; left: 0.75rem; z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ivory); color: var(--ink);
  font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform var(--dur-fast) var(--ease-out);
}
.skip-link:focus-visible { transform: none; outline-color: var(--ink); }

/* Labels: small caps, tracked, the site's typographic signature */
.label {
  display: flex; align-items: center; gap: 0.9rem;
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
.label--center { justify-content: center; }
.label__num {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.label__num::after {
  content: ""; display: inline-block; vertical-align: middle;
  width: 1.5rem; height: 1px; margin-left: 0.9rem;
  background: var(--accent); opacity: 0.7;
}
.label__rule { display: inline-block; width: 2rem; height: 1px; background: var(--accent); opacity: 0.8; }

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.8rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--fg);
}

.fiction-mark {
  display: inline-block;
  padding: 0.45em 0.9em;
  border: 1px solid var(--brass-soft);
  color: var(--accent);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.fiction-mark--inline { margin-top: 1.25rem; }

.button {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-size: var(--fs-label); font-weight: 500;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.button::after {
  content: ""; width: 1.25rem; height: 1px; background: currentColor;
  transition: width var(--dur-fast) var(--ease-out);
}
.button:hover, .button:focus-visible { border-color: var(--accent); color: var(--accent); }
.button:hover::after { width: 2rem; }
.button:active { transform: translateY(1px); }

/* Tags: inline list separated by small rules */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem 0; margin: 1.5rem 0; color: var(--fg-2); font-size: 0.9375rem; }
.tags li { display: inline-flex; align-items: center; }
.tags li + li::before { content: ""; width: 3px; height: 3px; background: var(--accent); margin: 0 0.9rem; border-radius: 50%; }

/* ---------- Reveal (scroll-triggered, JS-gated, motion-respecting) ------ */
.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity var(--dur-slow) ease, transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Masked image reveals */
.js .figure.reveal, .js .chapter__figure, .js .pursuit__figure { overflow: hidden; }
.js .figure.reveal img,
.js .chapter.reveal .chapter__figure img,
.js .pursuit.reveal .pursuit__figure img {
  transform: scale(1.06);
  transition: transform var(--dur-image) var(--ease-out);
}
.js .figure.reveal.is-visible img,
.js .chapter.reveal.is-visible .chapter__figure img,
.js .pursuit.reveal.is-visible .pursuit__figure img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .figure.reveal img,
  .js .chapter.reveal .chapter__figure img,
  .js .pursuit.reveal .pursuit__figure img { transform: none; transition: none; }
}

/* ---------- Header / navigation ---------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  color: var(--ivory);
  transition: background-color var(--dur) ease, border-color var(--dur) ease, backdrop-filter var(--dur) ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(15, 14, 13, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.site-header__inner {
  height: 100%;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-header__brand {
  display: inline-flex; align-items: baseline; gap: 0.9rem;
  font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.site-header__monogram {
  font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.06em;
  color: var(--brass); text-transform: none; font-weight: 500;
}
.site-header__tag {
  color: var(--mute); font-weight: 400; letter-spacing: 0.16em; font-size: 0.625rem;
  padding-left: 0.9rem; border-left: 1px solid var(--line-strong);
}
@media (max-width: 54rem) { .site-header__tag { display: none; } }
@media (max-width: 22rem) { .site-header__name { display: none; } }
.site-header__brand { min-width: 0; }

.site-nav__list { display: flex; gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.site-nav__list a {
  position: relative; display: inline-block; padding: 0.5rem 0;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 500;
  color: var(--ivory-2);
  transition: color var(--dur-fast) ease;
}
.site-nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.15rem; height: 1px;
  background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.site-nav__list a:hover, .site-nav__list a:focus-visible, .site-nav__list a.is-active { color: var(--ivory); }
.site-nav__list a:hover::after, .site-nav__list a.is-active::after { transform: scaleX(1); }
.site-nav__list a.is-active { color: var(--brass); }

.nav-toggle {
  display: none; align-items: center; gap: 0.9rem;
  padding: 0.75rem 0.25rem; margin-right: -0.25rem;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 500;
  color: var(--ivory);
  min-height: 44px;
}
.nav-toggle__icon { position: relative; width: 1.5rem; height: 0.75rem; }
.nav-toggle__icon i { position: absolute; left: 0; right: 0; height: 1px; background: currentColor; transition: transform var(--dur-fast) var(--ease-out); }
.nav-toggle__icon i:first-child { top: 0; }
.nav-toggle__icon i:last-child { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { transform: translateY(0.34rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { transform: translateY(-0.34rem) rotate(-45deg); }

@media (max-width: 54rem) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15, 14, 13, 0.96);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-header:has(.site-nav.is-open) { background: rgba(15, 14, 13, 0.96); border-bottom-color: var(--line); }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav__list li + li { border-top: 1px solid var(--line); }
  .site-nav__list a { display: block; padding: 0.95rem 0; font-size: 0.8125rem; }
  .site-nav__list a::after { display: none; }
  .site-nav__list a.is-active { padding-left: 1rem; }
  .site-nav__list a.is-active::before {
    content: ""; position: absolute; left: 0; top: 50%; width: 0.4rem; height: 1px; background: var(--brass);
  }
}

/* ---------- Sections (shared) ------------------------------------------ */
.section { position: relative; padding-block: var(--space-section); }
.section__head { max-width: 46rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.005em;
 
}
.section__intro { margin-top: 1.5rem; max-width: var(--measure); color: var(--fg-2); }

.section p { max-width: var(--measure); }
.section h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; margin-bottom: 0.9rem; }

/* Figures */
.figure { position: relative; }
.figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); transition: filter var(--dur) ease; }
.figure:hover img { filter: saturate(1); }
.figure--wide { aspect-ratio: 16 / 9; margin-top: clamp(3rem, 6vw, 5.5rem); }
.figure--wide img { aspect-ratio: 16 / 9; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--tall img { aspect-ratio: 4 / 5; }
.figure figcaption {
  position: absolute; left: 0; bottom: 0;
  padding: 1.25rem var(--gutter) 1.25rem 0;
  transform: translateY(100%);
  font-size: 0.75rem; letter-spacing: 0.08em; color: var(--fg-3);
  max-width: 40rem;
}
.figure--wide { margin-bottom: 3rem; }

/* Light sections override tokens */
.section--light {
  --bg: var(--parchment);
  --bg-alt: var(--parchment-2);
  --fg: var(--ink-on-light);
  --fg-2: var(--ink-soft-on-light);
  --fg-3: var(--ink-soft-on-light);
  --accent: var(--brass-on-light);
  --line: rgba(26, 24, 22, 0.12);
  --line-strong: rgba(26, 24, 22, 0.32);
  background: var(--bg); color: var(--fg);
}

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 3rem) var(--gutter) clamp(4rem, 10vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__image {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%;
  opacity: 0.92;
}
@media (max-width: 54rem) {
  .hero__image { object-position: 78% 18%; opacity: 0.7; }
}
.hero__light {
  position: absolute; inset: -20%;
  background: radial-gradient(38% 45% at 35% 30%, rgba(236, 230, 218, 0.10), transparent 70%);
  animation: hero-light 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-light {
  from { transform: translate3d(-3%, -2%, 0); }
  to   { transform: translate3d(3%, 4%, 0); }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(15, 14, 13, 0.92) 0%, rgba(15, 14, 13, 0.55) 40%, rgba(15, 14, 13, 0.1) 75%);
}
.hero__content { max-width: var(--container); width: 100%; margin-inline: auto; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 16ch;
}
.hero__roles {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0;
  margin: 1.75rem 0 2.25rem;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 500;
  color: var(--ivory-2);
}
.hero__roles span { display: inline-flex; align-items: center; }
.hero__roles span + span::before { content: ""; width: 1.25rem; height: 1px; background: var(--brass); margin: 0 1rem; opacity: 0.8; }
.hero__quote p {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.75rem); line-height: 1.35;
  max-width: 36ch; color: var(--ivory);
}
.hero__fiction { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2.5rem; }
.hero__fiction-note { font-size: 0.8125rem; color: var(--mute); letter-spacing: 0.02em; }

.hero__cue {
  position: absolute; right: var(--gutter); bottom: clamp(4rem, 10vh, 7rem);
  display: none; flex-direction: column; align-items: flex-end; gap: 0.75rem;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--mute);
  transition: color var(--dur-fast) ease;
}
.hero__cue:hover, .hero__cue:focus-visible { color: var(--ivory); }
.hero__cue-line { width: 1px; height: 3.5rem; background: var(--line-strong); position: relative; overflow: hidden; }
.hero__cue-line::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--brass);
  animation: cue-drop 2.8s var(--ease-out) infinite;
}
@keyframes cue-drop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
@media (min-width: 54rem) { .hero__cue { display: flex; } }

/* Hero entrance: CSS only, so it never waits for the script */
.hero-in { animation: hero-in 900ms var(--ease-out) both; }
.hero-in:nth-child(2) { animation-delay: 120ms; }
.hero-in:nth-child(3) { animation-delay: 260ms; }
.hero-in:nth-child(4) { animation-delay: 400ms; }
.hero-in:nth-child(5) { animation-delay: 520ms; }
@keyframes hero-in { from { opacity: 0; transform: translateY(1.25rem); } to { opacity: 1; transform: none; } }

/* ---------- 01 The Man -------------------------------------------------- */
.man__grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 60rem) {
  .man__grid { grid-template-columns: 7fr 4fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
}
.man__chain {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 0;
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: 1.125rem; color: var(--fg-2);
}
.man__chain span { display: inline-flex; align-items: center; }
.man__chain span + span::before { content: "→"; margin: 0 0.75rem; color: var(--accent); font-size: 0.9em; }

.profile { border-top: 1px solid var(--line); }
.profile__row { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.profile dt { font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--fg-3); padding-top: 0.35rem; font-weight: 500; }
.profile dd { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.35; }

/* ---------- 02 Origins -------------------------------------------------- */
.section--origins { background: var(--bg-alt); }
.origins__grid { display: grid; gap: 3rem; }
@media (min-width: 60rem) {
  .origins__grid { grid-template-columns: 5fr 6fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
  .origins__grid .figure--tall { position: sticky; top: calc(var(--header-h) + 2rem); }
}
.parents { display: grid; gap: 2rem; margin: 2.5rem 0; }
@media (min-width: 40rem) { .parents { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.parents__person h3 { font-size: 1.625rem; margin-bottom: 0.5rem; }
.parents__person p:last-child { color: var(--fg-2); font-size: 0.9875rem; }

.principle { margin-top: 3rem; padding: 2rem 0 0; border-top: 1px solid var(--line); }
.principle__text { font-family: var(--font-display); font-size: clamp(1.625rem, 1.2rem + 1.6vw, 2.375rem); line-height: 1.2; font-weight: 300; }
.principle__note { color: var(--fg-2); font-size: 0.9875rem; margin-top: 1.25rem; }

/* ---------- 03 What do you see ----------------------------------------- */
.section--see { background: var(--ink); padding-block: 0; }
.see__stage {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-section) var(--gutter);
  max-width: var(--container); margin-inline: auto;
}
.see__title {
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 1rem + 15vw, 16rem);
  font-weight: 300; line-height: 0.88; letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 40rem) {
  .see__line:nth-child(2) { padding-left: 0.3em; }
  .see__line:nth-child(3) { padding-left: 0.7em; }
}
.see__line { display: block; }
.see__line:nth-child(2) { padding-left: 0.6em; color: var(--ivory-2); }
.see__line:nth-child(3) { padding-left: 1.4em; color: var(--brass); }
.see__line:nth-child(2).reveal { --reveal-delay: 180ms; }
.see__line:nth-child(3).reveal { --reveal-delay: 360ms; }
.see__answer { display: grid; gap: 3rem; padding-bottom: var(--space-section); }
@media (min-width: 60rem) {
  .see__answer { grid-template-columns: 6fr 5fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
  .see__figure { margin-top: 6rem; }
}
.see__prose p { max-width: var(--measure-narrow); }
.see__repeat {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); line-height: 1.2;
  color: var(--brass); margin: 2rem 0 !important;
}

/* ---------- 04 Formation ------------------------------------------------ */
.section--formation { background: var(--bg-alt); }
.formation__grid { display: grid; gap: 3.5rem; }
@media (min-width: 60rem) { .formation__grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); } }
.formation__h { padding-bottom: 1rem; border-bottom: 1px solid var(--line); margin-bottom: 1.5rem !important; }
.fields { margin: 2rem 0; border-top: 1px solid var(--line); }
.fields > div { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.fields dt { font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--fg-3); padding-top: 0.25rem; font-weight: 500; }
.fields dd { font-family: var(--font-display); font-size: 1.1875rem; color: var(--fg-2); }
.formation__note { color: var(--fg-2); }

/* ---------- 05 Career --------------------------------------------------- */
.timeline { border-top: 1px solid var(--line); }
.timeline__item {
  display: grid; gap: 1rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 48rem) { .timeline__item { grid-template-columns: 14rem 1fr; gap: 3rem; padding: 3.5rem 0; } }
.timeline__when { display: flex; flex-direction: column; gap: 0.25rem; }
.timeline__age { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.1; }
.timeline__where { font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent); font-weight: 500; }
.timeline__item--accent .timeline__age { color: var(--brass); font-style: italic; font-weight: 300; }
.timeline__lesson { font-family: var(--font-display); font-size: 1.375rem; line-height: 1.35; color: var(--fg); margin-top: 1.5rem; }
.timeline__philosophy { display: flex; flex-direction: column; gap: 0.15rem; margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.375rem; color: var(--brass); }

/* ---------- 06 Craft: the journey ------------------------------------- */
.section--craft { background: var(--bg-alt); }
.journey { display: grid; gap: 2rem; }
@media (min-width: 60rem) {
  .journey { grid-template-columns: 15rem 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
  .journey__index { position: sticky; top: calc(var(--header-h) + 3rem); }
}
.journey__index { display: none; }
@media (min-width: 60rem) { .journey__index { display: block; } }
.journey__list { display: flex; flex-direction: column; gap: 0.1rem; }
.journey__list a {
  display: flex; align-items: center; gap: 0.9rem; padding: 0.55rem 0;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 500;
  color: var(--fg-3);
  transition: color var(--dur-fast) ease, padding-left var(--dur) var(--ease-out);
}
.journey__list a::before {
  content: attr(data-stage); font-family: var(--font-display); font-size: 0.9375rem; letter-spacing: 0; color: var(--fg-3);
  transition: color var(--dur-fast) ease;
}
.journey__list a:hover, .journey__list a:focus-visible { color: var(--fg); }
.journey__list a.is-active { color: var(--fg); }
.journey__list a.is-active::before { color: var(--accent); }
.journey__progress { position: relative; width: 1px; height: 6rem; margin-top: 1.5rem; background: var(--line); }
.journey__progress span { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--brass); transition: height 300ms var(--ease-out); }

.stages { border-top: 1px solid var(--line); }
.stage { position: relative; display: grid; gap: 0.25rem; padding: clamp(2rem, 4vw, 3.25rem) 0; border-bottom: 1px solid var(--line); }
@media (min-width: 40rem) {
  .stage { grid-template-columns: 5rem 1fr; column-gap: 2rem; }
  .stage__num { grid-row: 1 / span 3; }
}
.stage__num { font-family: var(--font-display); font-size: clamp(2rem, 1.5rem + 2vw, 3rem); line-height: 1; color: var(--accent); font-weight: 300; margin: 0; }
.stage__title { margin-bottom: 0.25rem !important; }
.stage__sub { font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--fg-3); font-weight: 500; margin-bottom: 1rem; }
.stage__text { color: var(--fg-2); max-width: var(--measure-narrow); }
.stage.is-active .stage__title { color: var(--fg); }

/* ---------- 07 The Stones ---------------------------------------------- */
.chapters { border-top: 1px solid var(--line); }
.chapter {
  display: grid; gap: 2rem;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  max-width: var(--container); margin-inline: auto;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 60rem) {
  .chapter { grid-template-columns: repeat(12, 1fr); align-items: center; column-gap: 2rem; }
  .chapter__figure { grid-column: 1 / span 5; }
  .chapter__text { grid-column: 7 / span 6; }
  .chapter--reverse .chapter__figure { grid-column: 8 / span 5; grid-row: 1; }
  .chapter--reverse .chapter__text { grid-column: 1 / span 6; grid-row: 1; }
}
.chapter__figure { aspect-ratio: 1; background: var(--ink); }
.chapter__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.chapter__text h3 { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); font-weight: 300; margin-bottom: 1.25rem; }
.chapter__text p { color: var(--fg-2); }
.chapter__quote { margin: 1.75rem 0; padding-left: 1.5rem; border-left: 1px solid var(--accent); }
.chapter__quote p { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; color: var(--fg); }

.sourcing { margin-top: clamp(4rem, 8vw, 7rem); padding-top: 3rem; border-top: 1px solid var(--line); }
.sourcing__grid { display: grid; gap: 2rem; }
@media (min-width: 60rem) { .sourcing__grid { grid-template-columns: 6fr 5fr; gap: clamp(3rem, 8vw, 8rem); } }
.sourcing__lede { font-family: var(--font-display); font-size: 1.375rem; line-height: 1.4; }
.sourcing__list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); color: var(--fg-2); }
.sourcing__list li:first-child { border-top: 1px solid var(--line); }
.sourcing__note { margin-top: 2rem; font-size: 0.8125rem; color: var(--fg-3); max-width: var(--measure); }

/* ---------- 08 Maison --------------------------------------------------- */
.section--maison { background: var(--ink); }
.maison__wordmark {
  font-size: clamp(2.75rem, 1.5rem + 6vw, 6.5rem);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 300; line-height: 1;
}
.maison__lines {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0;
  margin-top: 1.5rem;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--fg-2); font-weight: 500;
}
.maison__lines span + span::before { content: ""; display: inline-block; width: 1.25rem; height: 1px; background: var(--brass); margin: 0 1rem; vertical-align: middle; opacity: 0.8; }
.maison__grid { display: grid; gap: 3rem; margin-top: 2rem; }
@media (min-width: 60rem) { .maison__grid { grid-template-columns: 7fr 4fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; } }
.maison__facts { border-top: 1px solid var(--line); }
.maison__facts li { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.1875rem; }
.maison__fact-k { font-family: var(--font-body); font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--fg-3); padding-top: 0.35rem; font-weight: 500; }
.maison__disclosure { margin-top: 3.5rem; font-size: 0.8125rem; color: var(--fg-3); max-width: var(--measure); }

/* ---------- 09 Discretion ---------------------------------------------- */
.section--discretion {
  background: #0b0a09;
  min-height: 90svh; display: grid; place-items: center;
}
.discretion__inner { max-width: 40rem; padding-inline: var(--gutter); text-align: center; }
.discretion__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.375rem, 1rem + 1.4vw, 2.125rem); line-height: 1.4;
  color: var(--ivory-2);
}
.discretion__title.reveal { transition-duration: 2200ms; --reveal-delay: 200ms; }
.discretion__note { margin-top: 2.5rem; font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--mute); --reveal-delay: 900ms; }

/* ---------- 10 Foundation ---------------------------------------------- */
.section--foundation { background: var(--bg-alt); }
.foundation__grid { display: grid; gap: 3rem; }
@media (min-width: 60rem) { .foundation__grid { grid-template-columns: 7fr 4fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; } }
.foundation__areas { border-top: 1px solid var(--line); }
.foundation__areas li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.25rem; display: flex; align-items: baseline; gap: 1rem; }
.foundation__areas li::before { content: ""; width: 0.75rem; height: 1px; background: var(--accent); flex: none; transform: translateY(-0.3em); }
.foundation__disclosure { margin-top: 2rem; font-size: 0.8125rem; color: var(--fg-3); max-width: var(--measure); }

/* ---------- 11 Character ----------------------------------------------- */
.character__grid { display: grid; gap: 3rem; }
@media (min-width: 48rem) { .character__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .character__grid { grid-template-columns: 1fr 1fr 1.3fr; gap: clamp(2rem, 5vw, 5rem); } }
.character__h { font-size: 1.125rem !important; font-family: var(--font-body) !important; letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 500 !important; color: var(--fg-3); padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.character__list li { padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.1875rem; }
.character__col--quotes { display: flex; flex-direction: column; gap: 2.5rem; }
.character__q { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); line-height: 1.25; font-weight: 300; }
.flaw { margin-top: clamp(4rem, 8vw, 7rem); padding-top: 3rem; border-top: 1px solid var(--line); max-width: 46rem; }
.flaw h3 { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); font-weight: 300; }
.flaw p:last-child { color: var(--fg-2); }

/* ---------- 12 Off Duty (light) --------------------------------------- */
.pursuits { display: grid; gap: 3rem; }
@media (min-width: 48rem) { .pursuits { grid-template-columns: 1fr 1fr; gap: 3rem clamp(2rem, 5vw, 5rem); } .pursuit--wide { grid-column: 1 / -1; } }
.pursuit__figure { aspect-ratio: 3 / 2; margin-bottom: 1.25rem; background: var(--bg-alt); }
.pursuit__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
@media (min-width: 48rem) { .pursuit--wide .pursuit__figure { aspect-ratio: 21 / 9; } .pursuit--wide .pursuit__figure img { aspect-ratio: 21 / 9; } }
.pursuit__text h3 { font-size: 1.625rem; margin-bottom: 0.5rem; }
.pursuit__text p { color: var(--fg-2); max-width: 44ch; }
.pursuit--wide .pursuit__text { display: grid; gap: 0.5rem 3rem; }
@media (min-width: 48rem) { .pursuit--wide .pursuit__text { grid-template-columns: 1fr 2fr; } }

.style { margin-top: clamp(4rem, 8vw, 7rem); padding-top: 3rem; border-top: 1px solid var(--line); }
.style__grid { display: grid; gap: 2rem; }
@media (min-width: 40rem) { .style__grid { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); } }
.style__h { font-size: 1.375rem !important; }
.style p { color: var(--fg-2); }

.cities { margin-top: clamp(4rem, 8vw, 7rem); padding-top: 3rem; border-top: 1px solid var(--line); }
.cities__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
@media (min-width: 48rem) { .cities__list { grid-template-columns: 1fr 1fr 1fr; border-top: 0; } }
.cities__list li { display: flex; flex-direction: column; gap: 0.35rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 48rem) { .cities__list li { padding: 2rem 2rem 2rem 0; border-top: 1px solid var(--line); } }
.cities__name { font-family: var(--font-display); font-size: clamp(1.75rem, 1.3rem + 1.4vw, 2.375rem); font-weight: 300; line-height: 1; }
.cities__why { font-size: 0.9375rem; color: var(--fg-2); }

/* ---------- 13 In his words ------------------------------------------- */
.section--words { background: var(--ink); }
.words { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 60rem) { .words { grid-template-columns: repeat(12, 1fr); } }
.words__q p {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem); line-height: 1.3;
  max-width: 24ch;
}
.words__q footer { margin-top: 1rem; font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--fg-3); font-weight: 500; }
.words__q--lg p { font-size: clamp(2rem, 1.2rem + 3vw, 4rem); line-height: 1.15; max-width: 20ch; }
@media (min-width: 60rem) {
  .words__q:nth-child(1) { grid-column: 1 / span 10; }
  .words__q:nth-child(2) { grid-column: 7 / span 6; }
  .words__q:nth-child(3) { grid-column: 1 / span 7; }
  .words__q:nth-child(4) { grid-column: 8 / span 5; }
  .words__q:nth-child(5) { grid-column: 3 / span 6; }
  .words__q:nth-child(6) { grid-column: 6 / span 7; }
}

/* ---------- 14 Project / 15 Contact ---------------------------------- */
.section--project { background: var(--bg-alt); border-top: 1px solid var(--line); }
.project__text p { color: var(--fg-2); }
.project__text .lede { color: var(--fg); }

.section--contact { padding-top: 0; padding-bottom: var(--space-section); background: var(--bg-alt); }
.contact__title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 300; margin-bottom: 1rem; max-width: 30ch; }
.contact__text { color: var(--fg-2); margin-bottom: 2rem; }

/* ---------- Footer ----------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: 3.5rem 0 3rem; color: var(--fg-2); font-size: 0.875rem; }
.site-footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.site-footer__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--fg); margin: 0; }
.site-footer__sub { margin: 0.25rem 0 0; font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--fg-3); }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; }
.site-footer__nav a {
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 500; color: var(--fg-2);
  padding: 0.5rem 0; position: relative;
}
.site-footer__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.2rem; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out); }
.site-footer__nav a:hover::after, .site-footer__nav a:focus-visible::after { transform: scaleX(1); }
.site-footer__legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); max-width: var(--measure); }
.site-footer__meta { margin-top: 1rem; font-size: 0.75rem; color: var(--fg-3); max-width: var(--measure); }

/* ---------- Print ------------------------------------------------------- */
@media print {
  .site-header, .hero__cue, .journey__index { display: none !important; }
  body { background: #fff; color: #000; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Version 2: live and interactive details. Every effect here stops under
   prefers-reduced-motion (see the block at the end of this file).
   ========================================================================== */

/* ---------- First-visit loader (session-scoped, CSS-timed) -------------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--ink); color: var(--brass);
  pointer-events: none;
  animation: loader-out 1.05s ease forwards;
}
.loader__stone { opacity: 0; filter: blur(10px); transform: scale(0.9); animation: loader-focus 0.8s var(--ease-out) forwards; }
@keyframes loader-focus {
  0%   { opacity: 0; filter: blur(10px); transform: scale(0.9); }
  70%  { opacity: 1; filter: blur(0);   transform: none; }
  100% { opacity: 1; filter: blur(0);   transform: none; }
}
@keyframes loader-out {
  0%, 72% { opacity: 1; visibility: visible; }
  100%    { opacity: 0; visibility: hidden; }
}
.no-loader .loader { display: none; }

/* ---------- Hero ticker: slow, quiet ---------------------------------- */
.hero { padding-bottom: clamp(7rem, 14vh, 9.5rem); }
.hero__cue { bottom: clamp(7rem, 14vh, 9.5rem); }
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex; width: max-content;
  animation: ticker 80s linear infinite;
  font-family: var(--font-display); font-size: 1.0625rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
}
.ticker__track li { display: flex; align-items: center; white-space: nowrap; padding-right: 3.5rem; }
.ticker__track li::after { content: ""; width: 3px; height: 3px; margin-left: 3.5rem; background: var(--brass); border-radius: 50%; opacity: 0.8; }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }

/* ---------- Clocks strip ---------------------------------------------- */
.clocks { background: var(--ink); border-bottom: 1px solid var(--line); }
.clocks__inner {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 0.6rem 2rem; padding-block: 1.1rem;
}
.clocks__list { display: flex; flex-wrap: wrap; gap: 0.75rem 2.5rem; }
.clock { display: flex; align-items: baseline; gap: 0.75rem; }
.clock__city { font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--mute); font-weight: 500; }
.clock__time { font-family: var(--font-display); font-size: 1.25rem; color: var(--ivory-2); font-variant-numeric: tabular-nums; min-width: 3.2ch; }
.clocks__routine { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.0625rem; color: var(--mute); max-width: none; }

/* ---------- The loupe -------------------------------------------------- */
@media (min-width: 60rem) {
  .see__answer { grid-template-rows: auto auto; }
  .see__prose { grid-column: 1; grid-row: 1; }
  .see__figure { grid-column: 2; grid-row: 1; margin-top: 0; aspect-ratio: 3 / 2; align-self: start; }
  .see__figure img { aspect-ratio: 3 / 2; }
  .loupe { grid-column: 1 / -1; grid-row: 2; }
}
.loupe { margin-top: 1rem; }
.loupe__hint { margin-bottom: 1rem; }
.loupe__hint-text { transition: opacity var(--dur) ease; }
.loupe__stage {
  position: relative;
  background: #0b0a09;
  border: 1px solid var(--line);
  touch-action: none;
  user-select: none; -webkit-user-select: none;
  cursor: none;
}
.loupe__svg { display: block; width: 100%; height: auto; }
.loupe__svg .lens-ring { transition: none; }
.loupe__svg .stone-base { transition: opacity var(--dur) ease; }
.loupe__svg .stone-mark { opacity: 0; transition: opacity var(--dur-slow) ease; }
.loupe__svg .stone-mark.is-found { opacity: 1; }

.loupe__controls { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; margin-top: 1.25rem; }
.loupe__btn {
  display: inline-flex; align-items: baseline; gap: 0.75rem;
  padding: 0.6rem 0; min-height: 44px;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 500;
  color: var(--fg-3); position: relative;
  transition: color var(--dur-fast) ease;
}
.loupe__btn-num { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.04em; color: var(--accent); }
.loupe__btn::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.4rem; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out); }
.loupe__btn:hover, .loupe__btn:focus-visible { color: var(--fg); }
.loupe__btn.is-found { color: var(--fg); }
.loupe__btn.is-found::after { transform: scaleX(1); }

.loupe__notes { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.loupe__note {
  display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.35; color: var(--fg-2);
  opacity: 0; transform: translateY(0.5rem);
  transition: opacity var(--dur-slow) ease, transform var(--dur-slow) var(--ease-out);
}
.loupe__note.is-found { opacity: 1; transform: none; }
.loupe__note-k { color: var(--accent); }

.loupe__reveal { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line-strong); max-width: var(--measure); }
.loupe__question {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.875rem, 1.2rem + 2.4vw, 3rem); line-height: 1.15; color: var(--brass);
  margin-bottom: 1.25rem !important;
}
.loupe__answer { color: var(--fg-2); }
.loupe__reveal:not([hidden]) > * { animation: rise 1.1s var(--ease-out) both; }
.loupe__reveal:not([hidden]) > :nth-child(2) { animation-delay: 250ms; }
.loupe__reveal:not([hidden]) > :nth-child(3) { animation-delay: 500ms; }
@keyframes rise { from { opacity: 0; transform: translateY(0.75rem); } to { opacity: 1; transform: none; } }

/* ---------- Journey: one stone, transforming -------------------------- */
.journey__visual { width: 100%; max-width: 15rem; aspect-ratio: 1; margin-bottom: 1.5rem; }
.jstone { width: 100%; height: auto; overflow: visible; }
.j {
  opacity: 0;
  transform-box: view-box; transform-origin: 220px 200px;
  transition: opacity 900ms var(--ease-out), transform 1100ms var(--ease-out);
}
.journey__visual[data-stage="01"] .j-ground { opacity: 1; }
.journey__visual[data-stage="01"] .j-rough { opacity: 0; transform: translate(-20px, 60px) scale(0.55); }
.journey__visual[data-stage="02"] .j-rough,
.journey__visual[data-stage="03"] .j-rough { opacity: 1; }
.journey__visual[data-stage="03"] .j-eval { opacity: 1; }
.journey__visual[data-stage="04"] .j-rough { opacity: 0; transform: scale(1.06); }
.journey__visual[data-stage="04"] .j-cut,
.journey__visual[data-stage="05"] .j-cut { opacity: 1; }
.journey__visual[data-stage="05"] .j-cert { opacity: 1; }
.journey__visual[data-stage="06"] .j-cut,
.journey__visual[data-stage="07"] .j-cut,
.journey__visual[data-stage="08"] .j-cut { opacity: 1; transform: scale(0.72) translate(0, -14px); }
.journey__visual[data-stage="06"] .j-design { opacity: 1; }
.journey__visual[data-stage="07"] .j-create,
.journey__visual[data-stage="08"] .j-create { opacity: 1; }
.journey__visual[data-stage="08"] .j-collect { opacity: 1; }

@media (max-width: 59.99rem) {
  .journey__index {
    display: block; position: sticky; top: var(--header-h); z-index: 2;
    background: var(--bg-alt); padding: 0.75rem 0 0.5rem;
    border-bottom: 1px solid var(--line);
  }
  .journey__visual { max-width: 8.5rem; margin: 0 auto; }
  .journey__list, .journey__progress { display: none; }
}

/* ---------- Light across a heading, once, on entry -------------------- */
.js .section__head.is-visible .section__title,
.js .section__head.is-visible .maison__wordmark {
  background-image: linear-gradient(100deg, var(--fg) 0%, var(--fg) 42%, var(--accent) 50%, var(--fg) 58%, var(--fg) 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--fg);
  animation: sheen 2.6s var(--ease-out) 350ms 1 both;
}
@keyframes sheen { from { background-position: 100% 0; } to { background-position: 0% 0; } }

/* ---------- Staggered text reveals ------------------------------------ */
.js .reveal.stagger { transform: none; }
.js .stagger > * {
  opacity: 0; transform: translateY(0.75rem);
  transition: opacity 900ms ease, transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .stagger > :nth-child(2) { transition-delay: calc(70ms + var(--reveal-delay, 0ms)); }
.js .stagger > :nth-child(3) { transition-delay: calc(140ms + var(--reveal-delay, 0ms)); }
.js .stagger > :nth-child(4) { transition-delay: calc(210ms + var(--reveal-delay, 0ms)); }
.js .stagger > :nth-child(5) { transition-delay: calc(280ms + var(--reveal-delay, 0ms)); }
.js .stagger > :nth-child(n+6) { transition-delay: calc(350ms + var(--reveal-delay, 0ms)); }
.js .is-visible.stagger > *, .js .is-visible .stagger > * { opacity: 1; transform: none; }

/* ---------- Stones: colour shifts under a different light ------------- */
.js .chapter.reveal .chapter__figure img { transition: transform var(--dur-image) var(--ease-out), filter 1400ms ease; }
.chapter:hover .chapter__figure img, .chapter:focus-within .chapter__figure img { filter: saturate(1.28) brightness(1.14) hue-rotate(-7deg); }

/* ---------- Reduced motion: everything above stops -------------------- */
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .ticker__track { animation: none; }
  .loupe__note, .loupe__reveal > * { opacity: 1; transform: none; animation: none; }
  .loupe__note { transition: none; }
  .loupe__note:not(.is-found) { display: none; }
  .j { transition: none; }
  .js .section__head.is-visible .section__title,
  .js .section__head.is-visible .maison__wordmark { animation: none; background-image: none; -webkit-text-fill-color: currentColor; }
  .js .stagger > * { opacity: 1; transform: none; transition: none; }
  .chapter:hover .chapter__figure img { filter: saturate(0.92); transition: none; }
}

[hidden] { display: none !important; }
