/*
 * Art de l'Anglage — direction immersive V2
 * Restores the cinematic hero, pinned horizontal stories, interactive macro reading
 * and editorial book collection while keeping the simplified information architecture.
 */

:root {
  --ink: #03070c;
  --ink-soft: #071019;
  --navy: #061a2b;
  --navy-2: #0a2b45;
  --night-blue: #04131f;
  --night-blue-2: #08253c;
  --ivory: #f4efe5;
  --paper: #fbf8f1;
  --paper-2: #e8dfd0;
  --steel: #b0bac4;
  --muted: #8997a5;
  --champagne: #c8a96f;
  --champagne-2: #f0ddb2;
  --champagne-deep: #9d7740;
  --ice: #b9e3ef;
  --line: rgba(240, 221, 178, .18);
  --line-dark: rgba(4, 10, 16, .14);
  --shadow: 0 34px 110px rgba(0, 0, 0, .34);
  --shadow-soft: 0 20px 70px rgba(0, 0, 0, .18);
  --radius-sm: .65rem;
  --radius-md: 1.15rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --container: 82rem;
  --header-h: 5rem;
  --ease-luxe: cubic-bezier(.16, .78, .18, 1);
}

html {
  background: var(--ink);
  scrollbar-color: var(--champagne) #050a10;
}

body {
  min-width: 0;
  overflow-x: clip;
  background:
    radial-gradient(65rem 40rem at 92% 0%, rgba(21, 83, 124, .22), transparent 67%),
    radial-gradient(44rem 32rem at -8% 38%, rgba(185, 227, 239, .055), transparent 70%),
    linear-gradient(180deg, #03070c 0%, #050b12 42%, #03070c 100%);
}

body::before {
  content: "";
  position: fixed;
  z-index: 3000;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

main { position: relative; }

.container { width: min(calc(100% - 3rem), var(--container)); }

h1, h2, h3, .display {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.038em;
}

h1 { line-height: .96; }
h2 { line-height: 1; }

.eyebrow {
  color: var(--champagne-2);
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .19em;
}

.eyebrow::before {
  width: 2.8rem;
  background: linear-gradient(90deg, transparent, currentColor);
}

.lede,
.section-intro {
  letter-spacing: -.01em;
}

/* Header --------------------------------------------------------------- */
.site-header {
  height: var(--header-h);
  border-bottom-color: rgba(255, 255, 255, .075);
  background: rgba(3, 7, 12, .72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .02);
  backdrop-filter: blur(22px) saturate(145%);
  transition: background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.page-home .site-header {
  position: fixed;
  width: 100%;
  background: linear-gradient(180deg, rgba(2, 6, 10, .82), rgba(2, 6, 10, .12));
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.page-home .site-header.is-scrolled,
.site-header.is-scrolled {
  background: rgba(3, 7, 12, .92);
  border-bottom-color: rgba(255,255,255,.09);
  box-shadow: 0 18px 48px rgba(0,0,0,.20);
  backdrop-filter: blur(24px) saturate(150%);
}

.brand { gap: .9rem; }
.brand img {
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(240, 221, 178, .22);
  box-shadow: 0 0 0 .32rem rgba(200, 169, 111, .035), 0 10px 28px rgba(0,0,0,.32);
}
.brand-copy strong { font-size: 1.08rem; letter-spacing: -.02em; }
.brand-copy small { color: rgba(240, 221, 178, .63); letter-spacing: .13em; }

.main-nav ul { gap: clamp(.9rem, 1.65vw, 1.55rem); }
.main-nav a {
  color: rgba(244, 239, 229, .79);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .012em;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  bottom: -.75rem;
  background: linear-gradient(90deg, transparent, var(--champagne-2), transparent);
}

.lang-switch {
  gap: .14rem;
  padding: .2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.lang-switch a { min-width: 2.15rem; min-height: 2.15rem; }
.lang-switch a[aria-current="true"] {
  color: #17130c;
  background: linear-gradient(145deg, #f4e4bd, #c9a96f);
  box-shadow: 0 6px 20px rgba(200,169,111,.18);
}

/* Buttons -------------------------------------------------------------- */
.button {
  position: relative;
  min-height: 3.2rem;
  overflow: hidden;
  padding: .82rem 1.35rem;
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .015em;
  isolation: isolate;
  transition: transform .28s var(--ease-luxe), border-color .28s ease, color .28s ease, background .28s ease, box-shadow .28s ease;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.34) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease-luxe);
}
.button:hover::before { transform: translateX(130%); }
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: #151109;
  background: linear-gradient(135deg, #f5e4bc 0%, #cfad71 58%, #b58d52 100%);
  box-shadow: 0 15px 45px rgba(182, 139, 79, .24), inset 0 1px rgba(255,255,255,.6);
}
.button-primary:hover {
  background: linear-gradient(135deg, #faeccb, #d8b97d 62%, #bd9659);
  box-shadow: 0 20px 55px rgba(182, 139, 79, .32), inset 0 1px rgba(255,255,255,.7);
}
.button-secondary {
  border-color: rgba(240, 221, 178, .28);
  background: rgba(7, 16, 25, .42);
  box-shadow: inset 0 1px rgba(255,255,255,.045);
  backdrop-filter: blur(10px);
}
.button-secondary:hover { border-color: rgba(240,221,178,.62); background: rgba(255,255,255,.075); }
.button-text::before { display: none; }
.button-text { color: #9a6f2f; }
.section:not(.section-light) .button-text { color: var(--champagne-2); }

/* Global sections and surfaces ---------------------------------------- */
.section { position: relative; padding-block: clamp(5.5rem, 10vw, 9.5rem); }
.section-light {
  color: #10161d;
  background:
    radial-gradient(52rem 32rem at 90% -12%, rgba(191, 157, 100, .13), transparent 68%),
    linear-gradient(180deg, #fbf8f1 0%, #f3ede3 100%);
}
.section-navy {
  background:
    radial-gradient(56rem 38rem at 85% 0%, rgba(38, 117, 166, .22), transparent 68%),
    radial-gradient(42rem 30rem at 10% 100%, rgba(190, 224, 236, .08), transparent 68%),
    linear-gradient(160deg, #06131f 0%, #061a2b 55%, #030a11 100%);
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.8rem); }
.section-head h2 { max-width: 17ch; font-size: clamp(2.8rem, 5vw, 5.6rem); }
.section-head .section-intro { max-width: 43rem; font-size: clamp(1rem, 1.4vw, 1.22rem); }

.surface,
.card,
.training-card,
.quote-card,
.contact-panel,
.contact-form,
.timeline-content {
  border-color: rgba(240, 221, 178, .14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.018) 44%, rgba(255,255,255,.012)),
    rgba(6, 13, 21, .68);
  box-shadow: 0 24px 75px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.055);
  backdrop-filter: blur(9px);
}
.section-light .surface,
.section-light .card,
.section-light .training-card,
.section-light .quote-card,
.section-light .timeline-content {
  border-color: rgba(18, 24, 31, .105);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,243,234,.78)),
    #fff;
  box-shadow: 0 28px 80px rgba(41, 34, 24, .105), inset 0 1px rgba(255,255,255,.95);
}

/* Page heroes ---------------------------------------------------------- */
.page-hero {
  min-height: min(42rem, 72svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(8rem, 14vw, 12rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(50rem 35rem at 92% 8%, rgba(41, 123, 177, .25), transparent 68%),
    radial-gradient(35rem 30rem at 12% 80%, rgba(200,169,111,.10), transparent 70%),
    linear-gradient(145deg, #03080d, #071827 58%, #03070c);
}
.page-hero::before {
  top: auto;
  right: -8rem;
  bottom: -18rem;
  width: min(58rem, 75vw);
  border: 1px solid rgba(240, 221, 178, .16);
  background: transparent;
  box-shadow: 0 0 0 4rem rgba(185,227,239,.018), 0 0 0 8rem rgba(200,169,111,.012), inset 0 0 90px rgba(185,227,239,.04);
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -25% -30%;
  opacity: .28;
  background: linear-gradient(112deg, transparent 41%, rgba(240, 221, 178, .05) 47%, rgba(185,227,239,.13) 49%, transparent 55%);
  transform: translateX(var(--hero-reflection, -18%)) rotate(-8deg);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 17ch; font-size: clamp(3.4rem, 7vw, 7rem); }
.page-hero .lede { max-width: 45rem; color: rgba(237,240,242,.77); }
.breadcrumbs { color: rgba(240,221,178,.58); letter-spacing: .035em; }

/* Cinematic home hero -------------------------------------------------- */
.hero-cinematic {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #03070c;
}
.hero-cinematic__media,
.hero-cinematic__media video,
.hero-cinematic__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-cinematic__media { z-index: -5; overflow: hidden; }
.hero-cinematic__media video,
.hero-cinematic__fallback {
  object-fit: cover;
  object-position: 61% center;
}
.hero-cinematic__fallback { z-index: -2; transition: opacity 1.15s ease; }
.hero-video-ready .hero-cinematic__fallback { opacity: 0; }
.hero-cinematic__media video { z-index: -1; transform: scale(1.025); filter: saturate(.86) contrast(1.04) brightness(.82); }
.hero-cinematic__veil {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,10,.98) 0%, rgba(2,6,10,.89) 32%, rgba(2,6,10,.38) 68%, rgba(2,6,10,.12) 100%),
    linear-gradient(0deg, #03070c 0%, rgba(3,7,12,.58) 22%, transparent 60%),
    radial-gradient(50rem 36rem at 87% 43%, rgba(193, 225, 235, .12), transparent 67%);
}
.hero-cinematic__reflection {
  position: absolute;
  z-index: -2;
  inset: -35% -30%;
  pointer-events: none;
  opacity: .65;
  background: linear-gradient(116deg, transparent 42%, rgba(255,249,232,.025) 46%, rgba(239,216,168,.23) 48.2%, rgba(185,227,239,.17) 49.2%, rgba(255,255,255,.03) 51.5%, transparent 56%);
  mix-blend-mode: screen;
  transform: translate3d(var(--hero-sweep, -33%), 0, 0) rotate(-8deg);
  filter: blur(.6px);
}
.hero-cinematic__content {
  position: relative;
  z-index: 3;
  max-width: 68rem;
  padding-block: clamp(9rem, 18vh, 13rem) clamp(4rem, 8vh, 6.3rem);
}
.hero-cinematic__title {
  max-width: 12.8ch;
  font-size: clamp(4.2rem, 8.25vw, 9.2rem);
  line-height: .87;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.hero-cinematic__title .hero-accent {
  display: block;
  margin-left: clamp(0rem, 6vw, 5.5rem);
  color: var(--champagne-2);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 45px rgba(200,169,111,.16);
}
.hero-cinematic__lede {
  max-width: 42rem;
  margin: 1.8rem 0 0;
  color: rgba(235,239,242,.82);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}
.hero-cinematic__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-cinematic__meta li {
  padding: .6rem .86rem;
  border: 1px solid rgba(240,221,178,.18);
  border-radius: 999px;
  color: rgba(239,242,244,.74);
  background: rgba(4,10,16,.36);
  font-size: .7rem;
  font-weight: 690;
  letter-spacing: .025em;
  backdrop-filter: blur(9px);
}
.hero-cinematic__controls {
  position: absolute;
  z-index: 5;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero-video-toggle {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 2.75rem;
  padding: .65rem .95rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(3,7,12,.44);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(14px);
}
.hero-video-toggle::before {
  content: "Ⅱ";
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border: 1px solid rgba(240,221,178,.4);
  border-radius: 50%;
  color: var(--champagne-2);
  font-size: .58rem;
}
.hero-video-toggle[aria-pressed="false"]::before { content: "▶"; padding-left: .08rem; }
.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.48);
  font-size: .66rem;
  font-weight: 680;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-scroll-cue::before {
  content: "";
  width: 3.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,221,178,.7));
}

.hero-reveal { opacity: 0; transform: translateY(2rem); }
.js .hero-cinematic.is-ready .hero-reveal {
  animation: heroReveal 1.05s var(--ease-luxe) forwards;
}
.js .hero-cinematic.is-ready .hero-reveal:nth-child(2) { animation-delay: .08s; }
.js .hero-cinematic.is-ready .hero-reveal:nth-child(3) { animation-delay: .16s; }
.js .hero-cinematic.is-ready .hero-reveal:nth-child(4) { animation-delay: .24s; }
.js .hero-cinematic.is-ready .hero-reveal:nth-child(5) { animation-delay: .32s; }
@keyframes heroReveal { to { opacity: 1; transform: none; } }

/* Intro signature strip ------------------------------------------------ */
.signature-strip {
  position: relative;
  z-index: 4;
  border-block: 1px solid rgba(240,221,178,.12);
  background: linear-gradient(90deg, #03080d, #071724 48%, #03080d);
}
.signature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.signature-strip__item {
  min-height: 9rem;
  padding: 2.2rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(240,221,178,.10);
}
.signature-strip__item:last-child { border-right: 0; }
.signature-strip__item span {
  display: block;
  color: var(--champagne-2);
  font-size: .66rem;
  font-weight: 780;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.signature-strip__item strong {
  display: block;
  max-width: 18ch;
  margin-top: .72rem;
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.08;
}

/* Interactive macro wheel --------------------------------------------- */
.macro-reading {
  overflow: hidden;
  background:
    radial-gradient(60rem 46rem at 78% 44%, rgba(31, 99, 142, .18), transparent 66%),
    linear-gradient(150deg, #03070c 0%, #06131f 55%, #020609 100%);
}
.macro-reading::before {
  content: "";
  position: absolute;
  top: -20rem;
  right: -24rem;
  width: 58rem;
  aspect-ratio: 1;
  border: 1px solid rgba(185,227,239,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(185,227,239,.018), 0 0 0 8rem rgba(200,169,111,.012);
}
.macro-reading__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, .55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.macro-reading__intro h2 { max-width: 15ch; font-size: clamp(3rem, 5.6vw, 6.2rem); }
.macro-reading__intro p { max-width: 34rem; color: rgba(223,230,235,.68); }
.macro-reading__hint {
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(240,221,178,.16);
  border-radius: 1rem;
  color: rgba(240,221,178,.78) !important;
  background: rgba(255,255,255,.03);
  font-size: .78rem;
  line-height: 1.55;
}
.macro-reading__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(20rem, .66fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}
.macro-stage {
  position: relative;
  min-height: min(70vw, 50rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240,221,178,.16);
  border-radius: clamp(1.6rem, 3vw, 2.8rem);
  background:
    radial-gradient(circle at 50% 50%, rgba(29,64,86,.42), rgba(0,0,0,.95) 67%),
    #000;
  box-shadow: 0 40px 130px rgba(0,0,0,.44), inset 0 1px rgba(255,255,255,.06);
  isolation: isolate;
}
.macro-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 38%, rgba(0,0,0,.18) 74%, rgba(0,0,0,.65) 100%);
}
.macro-stage__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.015);
  filter: contrast(1.05) brightness(.94);
}
.macro-labels { position: absolute; z-index: 5; inset: 0; }
.macro-label {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.78);
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.macro-label__dot {
  position: relative;
  display: block;
  width: .86rem;
  height: .86rem;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: rgba(3,7,12,.5);
  box-shadow: 0 0 0 .45rem rgba(255,255,255,.055);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.macro-label__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
}
.macro-label__text {
  position: absolute;
  top: var(--ty);
  left: var(--tx);
  width: max-content;
  max-width: 10rem;
  padding: .58rem .72rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .7rem;
  background: rgba(3,7,12,.72);
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  font-size: .68rem;
  font-weight: 730;
  letter-spacing: .04em;
  backdrop-filter: blur(12px);
  opacity: .74;
  transition: opacity .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.macro-label:hover .macro-label__dot,
.macro-label:focus-visible .macro-label__dot,
.macro-label.is-active .macro-label__dot {
  color: var(--champagne-2);
  border-color: var(--champagne-2);
  background: rgba(200,169,111,.18);
  box-shadow: 0 0 0 .5rem rgba(200,169,111,.10), 0 0 34px rgba(200,169,111,.28);
  transform: scale(1.16);
}
.macro-label.is-active .macro-label__text {
  color: #171109;
  border-color: rgba(240,221,178,.65);
  background: linear-gradient(135deg, #f4e3bd, #c8a96f);
  opacity: 1;
  transform: translateY(-2px);
}
.macro-stage__tools {
  position: absolute;
  z-index: 8;
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  pointer-events: none;
}
.macro-stage__tools > * { pointer-events: auto; }
.loupe-toggle,
.loupe-close {
  min-height: 2.8rem;
  padding: .65rem .95rem;
  border: 1px solid rgba(240,221,178,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(3,7,12,.64);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .06em;
  cursor: pointer;
  backdrop-filter: blur(14px);
}
.macro-hint { margin: 0; color: rgba(255,255,255,.54); font-size: .68rem; }
.loupe-stage { position: absolute; z-index: 7; inset: 0; pointer-events: none; }
.loupe-lens {
  --lx: 0px;
  --ly: 0px;
  position: absolute;
  width: clamp(9.8rem, 15vw, 13.5rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(var(--lx), var(--ly), 0) scale(.85);
  background-repeat: no-repeat;
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 .55rem rgba(3,7,12,.46), inset 0 0 0 1px rgba(240,221,178,.6);
  transition: opacity .2s ease, transform .2s var(--ease-luxe);
}
.loupe-lens.is-active { opacity: 1; transform: translate3d(var(--lx), var(--ly), 0) scale(1); }
.macro-stage.is-loupe-mode { cursor: crosshair; }
.macro-stage.is-loupe-mode .macro-labels { opacity: 0; pointer-events: none; }
.macro-stage.is-loupe-mode .macro-hint { opacity: 0; }
.macro-stage.is-loupe-mode .loupe-toggle { display: none; }
.macro-cards { display: grid; gap: .75rem; align-content: center; }
.macro-card {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.65rem);
  overflow: hidden;
  border: 1px solid rgba(240,221,178,.12);
  border-radius: 1.1rem;
  background: rgba(255,255,255,.032);
  cursor: pointer;
  transition: border-color .28s ease, background .28s ease, transform .28s var(--ease-luxe), box-shadow .28s ease;
}
.macro-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--champagne);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease-luxe);
}
.macro-card:hover,
.macro-card.is-active {
  border-color: rgba(240,221,178,.35);
  background: linear-gradient(115deg, rgba(200,169,111,.11), rgba(255,255,255,.035));
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  transform: translateX(.45rem);
}
.macro-card.is-active::after { transform: scaleY(1); }
.macro-card__head { display: flex; align-items: baseline; gap: .85rem; }
.macro-card__index { color: var(--champagne-2); font-size: .66rem; font-weight: 800; letter-spacing: .14em; }
.macro-card h3 { font-family: inherit; font-size: 1.05rem; font-weight: 740; letter-spacing: -.012em; }
.macro-card p { margin: .55rem 0 0 2.15rem; color: rgba(220,228,233,.63); font-size: .82rem; line-height: 1.55; }

/* Pinned horizontal story --------------------------------------------- */
.horizontal-story {
  position: relative;
  overflow: clip;
  padding-block: clamp(6rem, 10vw, 10rem) 0;
  background:
    radial-gradient(58rem 38rem at 78% 8%, rgba(31, 97, 139, .24), transparent 66%),
    linear-gradient(180deg, #06131f 0%, #02070c 100%);
}
.horizontal-story__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, .55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.horizontal-story__intro h2 { max-width: 14ch; font-size: clamp(3.2rem, 6vw, 6.5rem); }
.horizontal-story__intro-copy p { color: rgba(222,230,235,.67); }
.horizontal-story__hint { color: var(--champagne-2) !important; font-size: .74rem; font-weight: 700; letter-spacing: .06em; }
.horizontal-story__stage { position: relative; }
.horizontal-story__viewport {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--champagne) rgba(255,255,255,.06);
  overscroll-behavior-inline: contain;
}
.immersive-js .horizontal-story__viewport { scrollbar-width: none; }
.immersive-js .horizontal-story__viewport::-webkit-scrollbar { display: none; }
.horizontal-story__stage.is-enhanced .horizontal-story__viewport {
  overflow: hidden;
  scroll-snap-type: none;
}
.horizontal-story__track {
  display: flex;
  width: max-content;
  gap: clamp(1rem, 2.2vw, 2rem);
  padding: 0 max(1.5rem, calc((100vw - var(--container)) / 2)) clamp(6rem, 9vw, 9rem);
}
.horizontal-story__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, .67fr) minmax(28rem, 1.33fr);
  flex: 0 0 min(72rem, calc(100vw - 8rem));
  min-height: min(72vh, 47rem);
  overflow: hidden;
  border: 1px solid rgba(240,221,178,.13);
  border-radius: clamp(1.6rem, 3vw, 2.8rem);
  background: linear-gradient(145deg, rgba(15,27,38,.98), rgba(3,8,13,.98));
  box-shadow: 0 34px 110px rgba(0,0,0,.36), inset 0 1px rgba(255,255,255,.05);
  scroll-snap-align: center;
  opacity: .72;
  transform: scale(.97);
  transition: opacity .55s ease, transform .7s var(--ease-luxe), border-color .45s ease;
}
.horizontal-story__panel.is-current {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(240,221,178,.34);
}
.horizontal-story__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}
.horizontal-story__index {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--champagne-2);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.horizontal-story__index::after { content: ""; width: 3rem; height: 1px; background: currentColor; opacity: .6; }
.horizontal-story__copy h3 { margin-top: 1.6rem; font-size: clamp(3.4rem, 7vw, 7rem); line-height: .9; }
.horizontal-story__copy p { max-width: 29rem; margin: 1.45rem 0 0; color: rgba(226,232,236,.66); font-size: clamp(.95rem, 1.25vw, 1.12rem); }
.horizontal-story__criterion { margin-top: auto !important; padding-top: 2rem; color: rgba(240,221,178,.68) !important; font-size: .7rem !important; font-weight: 770; letter-spacing: .12em; text-transform: uppercase; }
.horizontal-story__media { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.horizontal-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,11,17,.85), transparent 40%), linear-gradient(0deg, rgba(2,6,10,.55), transparent 48%);
}
.horizontal-story__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.05); transform: scale(1.06); transition: transform 1.2s var(--ease-luxe), filter .7s ease; }
.horizontal-story__panel.is-current .horizontal-story__media img { transform: scale(1); filter: saturate(.93) contrast(1.04); }
.horizontal-story__controls {
  position: absolute;
  z-index: 8;
  right: max(1.5rem, calc((100vw - var(--container)) / 2));
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.horizontal-story__controls button,
.portfolio-immersive__controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(3,7,12,.72);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.horizontal-story__controls button:hover,
.horizontal-story__controls button:focus-visible,
.portfolio-immersive__controls button:hover,
.portfolio-immersive__controls button:focus-visible {
  color: #161109;
  border-color: var(--champagne);
  background: var(--champagne-2);
  transform: scale(1.05);
}
.horizontal-story__controls button:disabled,
.portfolio-immersive__controls button:disabled { opacity: .28; cursor: default; transform: none; }
.horizontal-story__progress {
  position: absolute;
  z-index: 8;
  right: max(9.5rem, calc((100vw - var(--container)) / 2 + 8rem));
  bottom: 2.95rem;
  left: max(1.5rem, calc((100vw - var(--container)) / 2));
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.13);
  transform-origin: left;
}
.horizontal-story__progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--champagne), var(--ice)); transform: scaleX(0); transform-origin: left; }

/* Training cards ------------------------------------------------------- */
.training-grid { gap: clamp(1rem, 2vw, 1.7rem); }
.training-card {
  border-radius: 1.55rem;
  transition: transform .35s var(--ease-luxe), border-color .35s ease, box-shadow .35s ease;
}
.training-card:hover { transform: translateY(-7px); border-color: rgba(157,119,64,.35); box-shadow: 0 35px 95px rgba(44,34,19,.17); }
.training-card.reference {
  overflow: hidden;
  border-color: rgba(157,119,64,.38);
  background:
    radial-gradient(30rem 22rem at 90% 8%, rgba(200,169,111,.18), transparent 68%),
    linear-gradient(145deg, #0a2438, #06131f 64%, #03080d);
  box-shadow: 0 40px 100px rgba(3,11,19,.34), inset 0 1px rgba(255,255,255,.08);
}
.training-card.reference::before {
  content: "100";
  position: absolute;
  right: -1rem;
  bottom: -2.8rem;
  color: rgba(255,255,255,.04);
  font-family: Iowan Old Style, Georgia, serif;
  font-size: 13rem;
  line-height: 1;
  pointer-events: none;
}
.training-status { letter-spacing: .14em; }
.training-price { color: var(--champagne-deep); }
.training-card.reference .training-price { color: var(--champagne-2); }

/* Progression comparison gallery -------------------------------------- */
.progression-lab {
  overflow: hidden;
  color: #111820;
  background:
    radial-gradient(48rem 34rem at 88% 5%, rgba(200,169,111,.15), transparent 70%),
    linear-gradient(180deg, #fbf8f1, #eee6d9);
}
.progression-lab__grid {
  display: grid;
  grid-template-columns: minmax(17rem, .62fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.progression-lab__copy h2 { max-width: 12ch; font-size: clamp(3rem, 5.6vw, 6rem); }
.progression-lab__copy p { max-width: 31rem; color: #59626b; }
.progression-gallery { min-width: 0; }
.progression-stage {
  --position: 50%;
  position: relative;
  min-height: clamp(30rem, 58vw, 49rem);
  overflow: hidden;
  border: 1px solid rgba(10,16,23,.14);
  border-radius: clamp(1.5rem, 3vw, 2.6rem);
  background: #111820;
  box-shadow: 0 36px 110px rgba(41,32,20,.20), inset 0 1px rgba(255,255,255,.09);
  isolation: isolate;
}
.progression-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.progression-stage__after { position: absolute; z-index: 2; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.progression-stage__divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 1px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 0 24px rgba(255,255,255,.45);
  transform: translateX(-50%);
  pointer-events: none;
}
.progression-stage__divider::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 1px solid rgba(10,16,23,.2);
  border-radius: 50%;
  color: #17120a;
  background: linear-gradient(145deg, #fff7e8, #d5b77d);
  box-shadow: 0 15px 38px rgba(0,0,0,.30);
  transform: translate(-50%,-50%);
}
.progression-stage input[type="range"] { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.progression-stage__label {
  position: absolute;
  z-index: 4;
  top: 1rem;
  padding: .58rem .78rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.83);
  background: rgba(2,6,10,.58);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.progression-stage__label--before { left: 1rem; }
.progression-stage__label--after { right: 1rem; }
.progression-gallery__meta { display: flex; justify-content: space-between; gap: 1.5rem; margin: 1rem .2rem 0; }
.progression-gallery__meta strong { color: #111820; font-size: .86rem; }
.progression-gallery__meta span { color: #65707a; font-size: .76rem; }
.progression-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(5.6rem, 1fr);
  gap: .65rem;
  margin-top: 1.1rem;
  overflow-x: auto;
  padding: .15rem .15rem .5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--champagne) transparent;
}
.progression-thumb {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10,16,23,.12);
  border-radius: .8rem;
  background: #101820;
  cursor: pointer;
  opacity: .62;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}
.progression-thumb img { width: 100%; aspect-ratio: 1.3; object-fit: cover; }
.progression-thumb span { display: block; padding: .48rem .55rem; overflow: hidden; color: rgba(255,255,255,.75); font-size: .6rem; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.progression-thumb:hover,
.progression-thumb.is-active { opacity: 1; border-color: rgba(157,119,64,.55); transform: translateY(-2px); }

/* Alexandra film ------------------------------------------------------- */
.atelier-portrait {
  overflow: hidden;
  background:
    radial-gradient(50rem 34rem at 12% 12%, rgba(200,169,111,.12), transparent 70%),
    linear-gradient(145deg, #06131f, #03070c);
}
.atelier-portrait__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(18rem, .78fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.atelier-portrait__media {
  position: relative;
  min-height: clamp(32rem, 62vw, 52rem);
  overflow: hidden;
  border: 1px solid rgba(240,221,178,.14);
  border-radius: clamp(1.6rem,3vw,2.7rem);
  box-shadow: 0 38px 120px rgba(0,0,0,.38);
}
.atelier-portrait__media::after { content:""; position:absolute; inset:0; pointer-events:none; background: linear-gradient(0deg, rgba(2,6,10,.55), transparent 50%); }
.atelier-portrait__media video,
.atelier-portrait__media img { width: 100%; height: 100%; object-fit: cover; }
.atelier-portrait__copy h2 { max-width: 12ch; font-size: clamp(3.1rem, 5.5vw, 6rem); }
.atelier-portrait__copy p { color: rgba(221,229,234,.68); }
.atelier-portrait__quote { margin-top: 2.2rem; padding-left: 1.3rem; border-left: 1px solid var(--champagne); color: rgba(240,221,178,.8) !important; font-family: Iowan Old Style, Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.35; }

/* Home books preview --------------------------------------------------- */
.books-preview {
  overflow: hidden;
  background:
    radial-gradient(48rem 34rem at 85% 8%, rgba(34,112,160,.24), transparent 66%),
    linear-gradient(160deg, #061827, #02070c 70%);
}
.books-preview__grid { display:grid; grid-template-columns:minmax(17rem,.7fr) minmax(0,1.3fr); gap:clamp(2rem,6vw,6rem); align-items:center; }
.books-preview__copy h2 { max-width: 11ch; font-size: clamp(3rem,5.6vw,6.2rem); }
.books-preview__copy p { max-width: 32rem; color: rgba(223,230,235,.66); }
.book-stack {
  position: relative;
  min-height: clamp(34rem, 57vw, 48rem);
  perspective: 1400px;
}
.book-stack__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42%, 18rem);
  aspect-ratio: 419 / 596;
  border-radius: .3rem .9rem .9rem .3rem;
  box-shadow: 30px 42px 80px rgba(0,0,0,.55);
  transform-origin: left center;
  transition: transform .8s var(--ease-luxe), filter .5s ease;
}
.book-stack__item img { width:100%; height:100%; object-fit:cover; border-radius:inherit; }
.book-stack__item:nth-child(1) { z-index:3; transform:translate(-77%,-52%) rotateY(-10deg) rotateZ(-5deg); }
.book-stack__item:nth-child(2) { z-index:2; transform:translate(-30%,-50%) rotateY(-15deg) rotateZ(4deg); filter:brightness(.82); }
.book-stack__item:nth-child(3) { z-index:1; transform:translate(12%,-48%) rotateY(-18deg) rotateZ(10deg); filter:brightness(.67); }
.book-stack:hover .book-stack__item:nth-child(1) { transform:translate(-88%,-55%) rotateY(-5deg) rotateZ(-8deg); }
.book-stack:hover .book-stack__item:nth-child(2) { transform:translate(-28%,-50%) rotateY(-6deg) rotateZ(1deg); filter:brightness(.92); }
.book-stack:hover .book-stack__item:nth-child(3) { transform:translate(28%,-46%) rotateY(-8deg) rotateZ(11deg); filter:brightness(.8); }
.book-stack__count { position:absolute; right:2%; bottom:4%; z-index:5; color:rgba(255,255,255,.09); font-family:Iowan Old Style,Georgia,serif; font-size:clamp(7rem,16vw,14rem); line-height:.8; }

/* Proof and business refinements -------------------------------------- */
#prouver {
  overflow: clip;
  background:
    radial-gradient(56rem 34rem at 82% 18%, rgba(30, 102, 146, .15), transparent 68%),
    radial-gradient(44rem 28rem at 12% 48%, rgba(200, 169, 111, .07), transparent 72%);
}
#prouver .section-head { margin-bottom: clamp(2rem, 4vw, 3.3rem); }
#prouver .section-head h2 { max-width: 15ch; }
#prouver .section-intro { margin-top: 1rem; color: rgba(223, 230, 235, .64); }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin: 0 0 clamp(2.5rem, 5vw, 4.8rem);
}
.trust-stat {
  position: relative;
  min-width: 0;
  min-height: clamp(20rem, 32vw, 27rem);
  padding: clamp(1.35rem, 3vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(240, 221, 178, .18);
  border-radius: clamp(1.25rem, 2.2vw, 2rem);
  background:
    radial-gradient(26rem 18rem at 50% 34%, rgba(200, 169, 111, .11), transparent 69%),
    linear-gradient(145deg, rgba(10, 28, 42, .93), rgba(3, 9, 15, .97));
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .045);
  isolation: isolate;
  transition: border-color .5s ease, box-shadow .5s ease, transform .7s var(--ease-luxe);
}
.trust-stat::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -35% 32% 48% -16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 221, 178, .12), transparent 67%);
  filter: blur(10px);
  opacity: .75;
}
.trust-stat::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -1px;
  left: clamp(1.4rem, 3vw, 2.5rem);
  width: clamp(4.5rem, 9vw, 8rem);
  height: 1px;
  background: linear-gradient(90deg, #e5bd73, transparent);
  box-shadow: 0 0 22px rgba(215, 173, 99, .55);
}
.trust-stat:hover {
  border-color: rgba(240, 221, 178, .32);
  box-shadow: 0 42px 115px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .065);
  transform: translateY(-4px);
}
.trust-stat:nth-child(2) { --trust-delay: 140ms; }
.trust-stat dt,
.trust-stat dd { margin: 0; }

.trust-stat__stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(11.5rem, 18vw, 15rem);
  place-items: center;
  perspective: 950px;
  opacity: 0;
  transform: translate3d(0, 2.8rem, 0) rotateX(58deg) rotateY(-34deg) scale(.76);
  transform-origin: 50% 64%;
}
.trust-stat.is-visible .trust-stat__stage {
  animation: trust-stage-enter 1.35s var(--ease-luxe) var(--trust-delay, 0ms) both;
}
.trust-stat__scene {
  position: relative;
  display: grid;
  width: min(100%, 24rem);
  min-height: clamp(10rem, 16vw, 13.5rem);
  place-items: center;
  transform-style: preserve-3d;
  transition: transform .85s var(--ease-luxe);
}
.trust-stat:hover .trust-stat__scene {
  transform: rotateX(-5deg) rotateY(8deg) translate3d(0, -2px, 18px);
}
.trust-stat:nth-child(2):hover .trust-stat__scene {
  transform: rotateX(-5deg) rotateY(-8deg) translate3d(0, -2px, 18px);
}
.trust-stat__layers {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}
.trust-stat.is-visible .trust-stat__layers {
  animation: trust-number-float 6s ease-in-out calc(var(--trust-delay, 0ms) + 1.25s) infinite;
}
.trust-stat__layer {
  grid-area: 1 / 1;
  font-family: Iowan Old Style, Georgia, serif;
  font-size: clamp(7.4rem, 15vw, 12.5rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.075em;
  transform-style: preserve-3d;
  user-select: none;
}
.trust-stat__layer--back {
  color: rgba(64, 40, 13, .82);
  -webkit-text-stroke: 1px rgba(229, 189, 115, .22);
  text-shadow: 18px 25px 35px rgba(0, 0, 0, .48);
  transform: translate3d(15px, 17px, -38px);
}
.trust-stat__layer--middle {
  color: rgba(145, 98, 40, .55);
  -webkit-text-stroke: 1px rgba(245, 214, 158, .3);
  transform: translate3d(8px, 9px, -17px);
}
.trust-stat__layer--front {
  color: #e6bd73;
  background: linear-gradient(112deg, #8f6128 4%, #f5d99f 35%, #b57b34 59%, #ffeab7 76%, #a56d2d 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(215, 173, 99, .16));
  transform: translateZ(26px);
}
.trust-stat__ring {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(229, 189, 115, .22);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(229, 189, 115, .05), 0 0 22px rgba(185, 227, 239, .04);
  transform-style: preserve-3d;
}
.trust-stat__ring::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f5d99f;
  box-shadow: 0 0 12px rgba(245, 217, 159, .85);
}
.trust-stat__ring--outer {
  width: clamp(12rem, 24vw, 19rem);
  aspect-ratio: 1.8;
  animation: trust-orbit-outer 13s linear infinite;
}
.trust-stat__ring--inner {
  width: clamp(9rem, 18vw, 14rem);
  aspect-ratio: 1.65;
  border-color: rgba(185, 227, 239, .14);
  animation: trust-orbit-inner 9s linear infinite reverse;
}
.trust-stat dd {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(7rem, auto) minmax(0, 1fr);
  gap: clamp(.8rem, 2vw, 1.5rem);
  align-items: start;
  padding-top: clamp(1.2rem, 2vw, 1.7rem);
  border-top: 1px solid rgba(240, 221, 178, .14);
}
.trust-stat dd strong {
  color: #f0ddb2;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.trust-stat dd span {
  max-width: 28rem;
  color: rgba(223, 230, 235, .72);
  font-size: clamp(.92rem, 1.25vw, 1.06rem);
  line-height: 1.55;
}

.proof-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .92fr);
  align-items: stretch;
}
.proof-grid > .card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.45rem);
}
.proof-grid > .card h3 { max-width: 18ch; }
.proof-grid > .card > .button-row { margin-top: auto; padding-top: 1.35rem; }
#prouver .logo-row { gap: .65rem; margin-top: 1.35rem; }
#prouver .logo-card { min-height: 7.5rem; padding: 1rem; }
#prouver .logo-card img { max-width: 88%; max-height: 4.3rem; }
#prouver .evidence-list { margin-top: 1.25rem; }

.proof-quote {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240,221,178,.16);
  border-radius: 1.7rem;
  background:
    radial-gradient(32rem 22rem at 90% 0%, rgba(200,169,111,.12), transparent 65%),
    linear-gradient(145deg, rgba(10,31,48,.88), rgba(3,9,15,.92));
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255,255,255,.055);
}
.proof-quote::before { content:"U J"; position:absolute; right:-.5rem; bottom:-2.5rem; color:rgba(255,255,255,.035); font-family:Iowan Old Style,Georgia,serif; font-size:12rem; line-height:1; }
.proof-quote > * { position:relative; z-index:2; }

@keyframes trust-stage-enter {
  0% { opacity: 0; transform: translate3d(0, 2.8rem, 0) rotateX(58deg) rotateY(-34deg) scale(.76); }
  62% { opacity: 1; }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1); }
}
@keyframes trust-number-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotateZ(0deg); }
  50% { transform: translate3d(0, -.45rem, 16px) rotateZ(.35deg); }
}
@keyframes trust-orbit-outer {
  from { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg) translateZ(-18px); }
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg) translateZ(-18px); }
}
@keyframes trust-orbit-inner {
  from { transform: translate(-50%, -50%) rotateX(73deg) rotateZ(28deg) translateZ(4px); }
  to { transform: translate(-50%, -50%) rotateX(73deg) rotateZ(388deg) translateZ(4px); }
}

@media (max-width: 860px) {
  .trust-stats,
  .proof-grid { grid-template-columns: 1fr; }
  .trust-stat { min-height: 21rem; }
  .trust-stat__layer { font-size: clamp(7.8rem, 28vw, 12rem); }
  .trust-stat__ring--outer { width: clamp(13rem, 52vw, 19rem); }
  .trust-stat__ring--inner { width: clamp(10rem, 39vw, 14rem); }
}
@media (max-width: 520px) {
  .trust-stat { min-height: 19rem; padding: 1.2rem; }
  .trust-stat__stage { min-height: 10.5rem; }
  .trust-stat dd { grid-template-columns: 1fr; gap: .5rem; }
  #prouver .logo-row { grid-template-columns: 1fr; }
  #prouver .logo-card { min-height: 6.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .trust-stat,
  .trust-stat__stage,
  .trust-stat__scene,
  .trust-stat__layers,
  .trust-stat__ring {
    animation: none !important;
    transition: none !important;
  }
  .trust-stat__stage { opacity: 1; transform: none; }
  .trust-stat__scene { transform: none !important; }
  .trust-stat__ring--outer { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(24deg) translateZ(-18px); }
  .trust-stat__ring--inner { transform: translate(-50%, -50%) rotateX(73deg) rotateZ(-24deg) translateZ(4px); }
}

/* Availability calendar ------------------------------------------------ */
.availability-section {
  overflow: clip;
  background:
    radial-gradient(48rem 34rem at 88% 8%, rgba(35, 109, 151, .18), transparent 68%),
    radial-gradient(38rem 28rem at 7% 80%, rgba(200, 169, 111, .08), transparent 72%),
    linear-gradient(160deg, #061827 0%, #02070c 75%);
}
.availability-heading { align-items: end; }
.availability-heading h2 { max-width: 14ch; }
.availability-updated {
  display: inline-flex;
  flex: none;
  gap: .65rem;
  align-items: center;
  margin: 0 0 .45rem;
  padding: .62rem .85rem;
  border: 1px solid rgba(240, 221, 178, .16);
  border-radius: 999px;
  color: rgba(240, 221, 178, .76);
  background: rgba(255, 255, 255, .035);
  font-size: .69rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.availability-updated > span {
  width: .42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d9b36e;
  box-shadow: 0 0 0 .25rem rgba(217, 179, 110, .09), 0 0 .9rem rgba(217, 179, 110, .42);
  animation: availability-pulse 2.8s ease-in-out infinite;
}
.availability-board {
  padding: clamp(1.15rem, 2.8vw, 2.35rem);
  border: 1px solid rgba(240, 221, 178, .14);
  border-radius: clamp(1.4rem, 3vw, 2.6rem);
  background:
    radial-gradient(34rem 24rem at 86% 0%, rgba(185, 227, 239, .07), transparent 69%),
    rgba(2, 8, 13, .66);
  box-shadow: 0 38px 120px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .045);
}
.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(240, 221, 178, .1);
}
.availability-status {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  justify-content: center;
  padding: .36rem .65rem;
  border: 1px solid var(--availability-border, rgba(240, 221, 178, .18));
  border-radius: 999px;
  color: var(--availability-text, rgba(240, 221, 178, .82));
  background: var(--availability-bg, rgba(240, 221, 178, .06));
  font-size: .62rem;
  font-weight: 820;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.availability-status--open {
  --availability-border: rgba(129, 201, 181, .32);
  --availability-bg: rgba(82, 158, 139, .1);
  --availability-text: #b9dfd3;
}
.availability-status--low {
  --availability-border: rgba(224, 188, 116, .35);
  --availability-bg: rgba(200, 169, 111, .1);
  --availability-text: #efd9a8;
}
.availability-status--complete {
  --availability-border: rgba(188, 126, 130, .3);
  --availability-bg: rgba(139, 70, 78, .12);
  --availability-text: #dfb9bd;
}
.availability-status--leave {
  --availability-border: rgba(154, 174, 190, .25);
  --availability-bg: rgba(124, 145, 161, .08);
  --availability-text: #bdcbd5;
}
.availability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1rem);
}
.availability-week {
  --week-accent: rgba(240, 221, 178, .25);
  position: relative;
  min-width: 0;
  min-height: 14.5rem;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(240, 221, 178, .11);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, .025);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--week-accent) 8%, transparent), transparent 48%),
    rgba(255, 255, 255, .025);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
  transition: border-color .35s ease, transform .55s var(--ease-luxe), background .35s ease;
}
.availability-week::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.2rem;
  width: 4.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--week-accent), transparent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--week-accent) 55%, transparent);
}
.availability-week:hover {
  border-color: color-mix(in srgb, var(--week-accent) 48%, rgba(240, 221, 178, .12));
  transform: translateY(-3px);
}
.availability-week--open { --week-accent: #81c9b5; }
.availability-week--low { --week-accent: #dfbb73; }
.availability-week--complete { --week-accent: #b97c83; }
.availability-week--leave { --week-accent: #91a6b5; }
.availability-week header {
  display: flex;
  gap: .7rem;
  align-items: center;
  justify-content: space-between;
}
.availability-week header p {
  margin: 0;
  color: rgba(223, 230, 235, .42);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.availability-week h3 {
  margin: clamp(1.5rem, 3vw, 2.2rem) 0 .65rem;
  color: #f0ddb2;
  font-family: Iowan Old Style, Georgia, serif;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.055em;
}
.availability-week__dates {
  min-height: 2.7em;
  margin: 0;
  color: rgba(232, 237, 240, .77);
  font-size: .78rem;
  line-height: 1.4;
}
.availability-week__note {
  margin: .75rem 0 0;
  padding-top: .75rem;
  border-top: 1px solid rgba(240, 221, 178, .09);
  color: rgba(223, 230, 235, .48);
  font-size: .69rem;
  line-height: 1.4;
}
.availability-more {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(240, 221, 178, .12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, .018);
}
.availability-more summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  list-style: none;
}
.availability-more summary::-webkit-details-marker { display: none; }
.availability-more summary > span:first-child { display: grid; gap: .18rem; }
.availability-more summary strong {
  color: rgba(240, 221, 178, .86);
  font-size: .78rem;
  letter-spacing: .035em;
}
.availability-more summary small { color: rgba(223, 230, 235, .47); font-size: .68rem; }
.availability-more__icon {
  position: relative;
  width: 2.1rem;
  aspect-ratio: 1;
  flex: none;
  border: 1px solid rgba(240, 221, 178, .18);
  border-radius: 50%;
  transition: transform .45s var(--ease-luxe);
}
.availability-more__icon::before,
.availability-more__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: .72rem;
  height: 1px;
  background: #d8b36e;
  transform: translate(-50%, -50%);
}
.availability-more__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.availability-more[open] .availability-more__icon { transform: rotate(45deg); }
.availability-more__content { padding: 0 1rem 1rem; }
.availability-grid--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.availability-grid--compact .availability-week { min-height: 13.6rem; }
.availability-caveat {
  max-width: 56rem;
  margin: 1.25rem 0 0;
  color: rgba(223, 230, 235, .48);
  font-size: .72rem;
  line-height: 1.6;
}
.availability-bridge__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(240, 221, 178, .14);
  border-radius: clamp(1.4rem, 3vw, 2.4rem);
  background:
    radial-gradient(28rem 18rem at 88% 0%, rgba(200, 169, 111, .1), transparent 70%),
    linear-gradient(145deg, rgba(10, 31, 48, .9), rgba(3, 9, 15, .94));
}
.availability-bridge__card h2 { max-width: 17ch; }
.availability-bridge__card p { max-width: 47rem; }
.availability-bridge__date { color: rgba(240, 221, 178, .58) !important; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

@keyframes availability-pulse {
  0%, 100% { opacity: .58; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.08); }
}
@media (max-width: 1040px) {
  .availability-grid,
  .availability-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .availability-heading { align-items: start; flex-direction: column; }
  .availability-updated { margin: -.8rem 0 0; }
  .availability-grid,
  .availability-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .availability-bridge__card { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 480px) {
  .availability-grid,
  .availability-grid--compact { grid-template-columns: 1fr; }
  .availability-week { min-height: 13.5rem; }
  .availability-more__content { padding-inline: .65rem; }
}
@media (prefers-reduced-motion: reduce) {
  .availability-updated > span { animation: none; }
  .availability-week,
  .availability-more__icon { transition: none; }
}

.cta-band {
  border-radius: 2.1rem;
  background:
    radial-gradient(32rem 24rem at 85% 12%, rgba(185,227,239,.15), transparent 68%),
    linear-gradient(125deg, #0b314d 0%, #071725 58%, #030a11 100%);
  box-shadow: 0 35px 100px rgba(0,0,0,.30), inset 0 1px rgba(255,255,255,.06);
}

/* Immersive books page ------------------------------------------------- */
.portfolio-immersive {
  position: relative;
  overflow: clip;
  padding-block: clamp(5rem, 9vw, 9rem) 0;
  background:
    radial-gradient(60rem 42rem at 82% 4%, rgba(32, 105, 151, .23), transparent 67%),
    radial-gradient(45rem 32rem at 8% 88%, rgba(200,169,111,.08), transparent 70%),
    linear-gradient(160deg, #061827 0%, #02070c 72%);
}
.portfolio-immersive__intro {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(15rem,.38fr);
  gap: clamp(2rem,6vw,6rem);
  align-items: end;
  margin-bottom: clamp(3rem,6vw,5rem);
}
.portfolio-immersive__intro h2 { max-width: 13ch; font-size: clamp(3.3rem,6vw,6.7rem); }
.portfolio-immersive__intro p { max-width: 44rem; color: rgba(225,232,236,.67); }
.portfolio-immersive__count { display:flex; align-items:baseline; gap:.8rem; padding-top:1.4rem; border-top:1px solid rgba(255,255,255,.13); }
.portfolio-immersive__count strong { color:var(--champagne-2); font-family:Iowan Old Style,Georgia,serif; font-size:clamp(4.2rem,7vw,7.2rem); font-weight:400; line-height:.8; }
.portfolio-immersive__count span { color:rgba(255,255,255,.52); font-size:.68rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.portfolio-immersive__viewport { position:relative; width:100%; overflow-x:auto; overflow-y:hidden; scroll-snap-type:x mandatory; scrollbar-width:none; overscroll-behavior-inline:contain; }
.portfolio-immersive__viewport::-webkit-scrollbar { display:none; }
.portfolio-immersive.is-enhanced .portfolio-immersive__viewport { overflow:hidden; scroll-snap-type:none; }
.portfolio-immersive__track { display:flex; width:max-content; gap:clamp(1.25rem,3vw,2.8rem); padding:1rem max(1.5rem,calc((100vw - var(--container))/2)) 7.2rem; }
.portfolio-book {
  position:relative;
  display:grid;
  grid-template-columns:minmax(20rem,.78fr) minmax(31rem,1.22fr);
  flex:0 0 min(72rem,calc(100vw - 7rem));
  min-height:min(44rem,74vh);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:clamp(1.7rem,3vw,2.8rem);
  background:linear-gradient(145deg,rgba(17,25,33,.98),rgba(3,8,13,.98));
  box-shadow:0 38px 120px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.055);
  scroll-snap-align:center;
  opacity:.64;
  transform:scale(.97);
  transition:opacity .45s ease,transform .7s var(--ease-luxe),border-color .45s ease,box-shadow .45s ease;
}
.portfolio-book.is-active { opacity:1; transform:scale(1); border-color:rgba(240,221,178,.36); box-shadow:0 45px 135px rgba(0,0,0,.55),0 0 0 1px rgba(200,169,111,.06); }
.portfolio-book__copy { position:relative; z-index:3; display:flex; flex-direction:column; justify-content:center; padding:clamp(2.3rem,5.5vw,5.2rem); }
.portfolio-book:nth-child(even) .portfolio-book__copy { order:2; }
.portfolio-book__eyebrow { display:flex; align-items:center; gap:.8rem; color:var(--champagne-2); font-size:.68rem; font-weight:800; letter-spacing:.17em; text-transform:uppercase; }
.portfolio-book__eyebrow::before { content:""; width:2.8rem; height:1px; background:currentColor; opacity:.65; }
.portfolio-book h3 { margin-top:1.8rem; font-size:clamp(3.6rem,6.4vw,7rem); line-height:.87; }
.portfolio-book__copy>p { max-width:30rem; margin:1.4rem 0 0; color:rgba(225,232,236,.66); }
.portfolio-book__meta { display:flex; flex-wrap:wrap; gap:.55rem; margin:1.8rem 0 0; }
.portfolio-book__meta span { padding:.55rem .72rem; border:1px solid rgba(255,255,255,.12); border-radius:999px; color:rgba(255,255,255,.68); background:rgba(255,255,255,.035); font-size:.63rem; font-weight:760; letter-spacing:.08em; text-transform:uppercase; }
.portfolio-book__actions { display:flex; flex-wrap:wrap; align-items:center; gap:1.1rem; margin-top:auto; padding-top:2rem; }
.portfolio-book__download { color:rgba(255,255,255,.72); font-size:.8rem; font-weight:700; text-decoration:none; }
.portfolio-book__download:hover { color:var(--champagne-2); }
.portfolio-book__visual { position:relative; min-width:0; overflow:hidden; background:#05090d; }
.portfolio-book:nth-child(even) .portfolio-book__visual { order:1; }
.portfolio-book__feature { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.28; filter:saturate(.72) contrast(1.1) brightness(.75); transform:scale(1.08); transition:opacity .7s ease,transform 1.1s var(--ease-luxe); }
.portfolio-book__visual::after { content:""; position:absolute; z-index:1; inset:0; background:linear-gradient(90deg,rgba(3,8,13,.9),rgba(3,8,13,.18) 44%,rgba(3,8,13,.08)),linear-gradient(0deg,rgba(0,0,0,.65),transparent 50%); }
.portfolio-book:nth-child(even) .portfolio-book__visual::after { background:linear-gradient(-90deg,rgba(3,8,13,.9),rgba(3,8,13,.18) 44%,rgba(3,8,13,.08)),linear-gradient(0deg,rgba(0,0,0,.65),transparent 50%); }
.portfolio-book.is-active .portfolio-book__feature { opacity:.55; transform:scale(1.01); }
.portfolio-book__object { position:absolute; z-index:2; top:50%; left:54%; width:clamp(14rem,25vw,22rem); aspect-ratio:419/596; transform:translate(-50%,-50%); perspective:1400px; }
.portfolio-book:nth-child(even) .portfolio-book__object { left:46%; }
.portfolio-book__cover { position:relative; display:block; width:100%; height:100%; border-radius:.32rem .9rem .9rem .32rem; transform:rotateY(-14deg) rotateX(1deg) translateY(.35rem); transform-origin:left center; transform-style:preserve-3d; box-shadow:2.2rem 2.8rem 5rem rgba(0,0,0,.6),-.5rem 0 1.4rem rgba(0,0,0,.24); transition:transform .75s var(--ease-luxe),box-shadow .75s ease; }
.portfolio-book__cover::before { content:""; position:absolute; z-index:2; top:0; bottom:0; left:0; width:.85rem; border-radius:.3rem 0 0 .3rem; background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(255,255,255,.14),rgba(0,0,0,.16)); mix-blend-mode:multiply; }
.portfolio-book__cover::after { content:""; position:absolute; z-index:-1; top:.3rem; right:-.7rem; bottom:.3rem; width:.8rem; border-radius:0 .5rem .5rem 0; background:repeating-linear-gradient(0deg,#f3eadc 0 2px,#d6c8b5 2px 3px); }
.portfolio-book__cover img { width:100%; height:100%; object-fit:cover; border-radius:inherit; }
.portfolio-book.is-active .portfolio-book__cover { transform:rotateY(-5deg) translateY(-.55rem); box-shadow:2.7rem 3.2rem 6rem rgba(0,0,0,.67),-.6rem 0 1.8rem rgba(0,0,0,.28); }
.portfolio-book__folio { position:absolute; z-index:3; right:1.3rem; bottom:1rem; color:rgba(255,255,255,.085); font-family:Iowan Old Style,Georgia,serif; font-size:clamp(5.5rem,9vw,9.5rem); line-height:.8; letter-spacing:-.08em; }
.portfolio-book:nth-child(even) .portfolio-book__folio { right:auto; left:1.3rem; }
.portfolio-immersive__controls { position:absolute; z-index:10; left:50%; bottom:1.4rem; display:grid; grid-template-columns:auto minmax(8rem,14rem) auto; align-items:center; gap:.85rem; width:min(92vw,32rem); padding:.7rem .8rem; border:1px solid rgba(255,255,255,.14); border-radius:999px; background:rgba(3,7,12,.78); box-shadow:0 20px 60px rgba(0,0,0,.38); backdrop-filter:blur(18px); transform:translateX(-50%); }
.portfolio-immersive__status { display:grid; grid-template-columns:auto 1fr; align-items:center; gap:.7rem; min-width:0; }
.portfolio-immersive__counter { color:rgba(255,255,255,.55); font-size:.66rem; font-weight:800; letter-spacing:.11em; white-space:nowrap; }
.portfolio-immersive__counter strong { color:#fff; font-size:.82rem; }
.portfolio-immersive__status-copy { min-width:0; }
.portfolio-immersive__status-copy span { display:block; overflow:hidden; color:rgba(255,255,255,.78); font-size:.69rem; font-weight:700; text-overflow:ellipsis; white-space:nowrap; }
.portfolio-immersive__progress { height:2px; margin-top:.4rem; overflow:hidden; border-radius:999px; background:rgba(255,255,255,.13); }
.portfolio-immersive__progress i { display:block; width:100%; height:100%; background:linear-gradient(90deg,var(--champagne),var(--ice)); transform:scaleX(.111); transform-origin:left; }
.portfolio-immersive__foot { padding:1.5rem 1.5rem 5rem; color:rgba(255,255,255,.44); font-size:.72rem; text-align:center; }

/* Existing books grid fallback ---------------------------------------- */
.book-card { border-radius:1.4rem; }
.book-cover { perspective:1200px; }
.book-cover img.cover { transition:transform .55s var(--ease-luxe); transform-origin:left center; }
.book-card:hover .book-cover img.cover { transform:rotateY(-7deg) translateY(-.35rem); }

/* Forms and footer ----------------------------------------------------- */
.contact-form,
.contact-panel { border-radius:1.5rem; }
.field input,
.field select,
.field textarea { border-radius:.8rem; background:rgba(255,255,255,.055); }
.field input:focus,
.field select:focus,
.field textarea:focus { box-shadow:0 0 0 3px rgba(200,169,111,.13),0 16px 45px rgba(0,0,0,.18); }
.site-footer {
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(38rem 24rem at 85% 0%, rgba(31,91,131,.13), transparent 70%),
    #020508;
}
.site-footer::before { content:""; position:absolute; top:-16rem; left:-12rem; width:36rem; aspect-ratio:1; border:1px solid rgba(240,221,178,.07); border-radius:50%; box-shadow:0 0 0 4rem rgba(240,221,178,.01); }
.site-footer .container { position:relative; z-index:1; }

/* Reveal and cursor-light --------------------------------------------- */
.reveal { opacity:0; transform:translateY(1.8rem); transition:opacity .85s var(--ease-luxe),transform .85s var(--ease-luxe); }
.reveal.is-visible { opacity:1; transform:none; }
[data-spotlight] { position:relative; overflow:hidden; }
[data-spotlight]::before { content:""; position:absolute; z-index:0; width:22rem; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle,rgba(240,221,178,.11),transparent 68%); transform:translate(calc(var(--spot-x,50%) - 50%),calc(var(--spot-y,50%) - 50%)); opacity:0; transition:opacity .3s ease; pointer-events:none; }
[data-spotlight]:hover::before { opacity:1; }
[data-spotlight] > * { position:relative; z-index:1; }

/* Responsive ----------------------------------------------------------- */
@media (max-width: 70rem) {
  .container { width:min(calc(100% - 2rem),var(--container)); }
  .macro-reading__grid { grid-template-columns:minmax(0,1.2fr) minmax(17rem,.8fr); }
  .horizontal-story__panel { flex-basis:calc(100vw - 4rem); }
  .portfolio-book { flex-basis:calc(100vw - 4rem); grid-template-columns:minmax(18rem,.82fr) minmax(27rem,1.18fr); }
}

@media (max-width: 58rem) {
  :root { --header-h:4.45rem; }
  .page-home .site-header { position:fixed; }
  .site-header { backdrop-filter:blur(20px); }
  .main-nav { background:linear-gradient(180deg,rgba(3,7,12,.995),rgba(5,16,26,.995)); }
  .macro-reading__intro,
  .horizontal-story__intro,
  .progression-lab__grid,
  .atelier-portrait__grid,
  .books-preview__grid,
  .portfolio-immersive__intro { grid-template-columns:1fr; }
  .macro-reading__grid { grid-template-columns:1fr; }
  .macro-cards { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .macro-card:hover,
  .macro-card.is-active { transform:translateY(-.2rem); }
  .horizontal-story__viewport { overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
  .horizontal-story__viewport::-webkit-scrollbar { display:none; }
  .horizontal-story__track { padding-inline:1rem; }
  .horizontal-story__panel { grid-template-columns:1fr; flex-basis:calc(100vw - 2rem); min-height:46rem; }
  .horizontal-story__copy { order:2; min-height:23rem; }
  .horizontal-story__media { order:1; min-height:23rem; }
  .horizontal-story__media::after { background:linear-gradient(0deg,rgba(5,11,17,.8),transparent 58%); }
  .horizontal-story__controls { right:1rem; }
  .horizontal-story__progress { right:9rem; left:1rem; }
  .atelier-portrait__media { min-height:36rem; }
  .book-stack { min-height:35rem; }
  .portfolio-book { grid-template-columns:1fr; flex-basis:calc(100vw - 2rem); min-height:46rem; }
  .portfolio-book__copy,
  .portfolio-book:nth-child(even) .portfolio-book__copy { order:2; min-height:24rem; padding:2rem; }
  .portfolio-book__visual,
  .portfolio-book:nth-child(even) .portfolio-book__visual { order:1; min-height:24rem; }
  .portfolio-book__visual::after,
  .portfolio-book:nth-child(even) .portfolio-book__visual::after { background:linear-gradient(0deg,rgba(3,8,13,.88),transparent 58%); }
  .portfolio-book__object,
  .portfolio-book:nth-child(even) .portfolio-book__object { left:50%; width:min(50vw,16rem); }
  .portfolio-immersive__track { padding-inline:1rem; }
}

@media (max-width: 42rem) {
  .container { width:min(calc(100% - 1.25rem),var(--container)); }
  .page-home .site-header { background:linear-gradient(180deg,rgba(2,6,10,.88),rgba(2,6,10,.2)); }
  .hero-cinematic__media video,
  .hero-cinematic__fallback { object-position:68% center; }
  .hero-cinematic__veil { background:linear-gradient(90deg,rgba(2,6,10,.96),rgba(2,6,10,.60)),linear-gradient(0deg,#03070c,transparent 56%); }
  .hero-cinematic__content { padding-block:8.5rem 7.5rem; }
  .hero-cinematic__title { max-width:10.5ch; font-size:clamp(3.4rem,17vw,5.3rem); }
  .hero-cinematic__title .hero-accent { margin-left:0; }
  .hero-cinematic__controls { right:.75rem; bottom:.75rem; left:.75rem; justify-content:space-between; }
  .hero-scroll-cue { font-size:.58rem; }
  .hero-scroll-cue::before { width:1.8rem; }
  .hero-video-toggle { min-height:2.55rem; padding:.55rem .72rem; font-size:.6rem; }
  .signature-strip__grid { grid-template-columns:1fr; }
  .signature-strip__item { min-height:auto; padding:1.35rem .65rem; border-right:0; border-bottom:1px solid rgba(240,221,178,.1); }
  .signature-strip__item:last-child { border-bottom:0; }
  .macro-stage { min-height:calc(100vw - 1.25rem); }
  .macro-label__text { display:none; }
  .macro-stage__tools { align-items:flex-end; }
  .macro-hint { max-width:8rem; text-align:right; }
  .macro-cards { grid-template-columns:1fr; }
  .horizontal-story__panel { min-height:42rem; }
  .horizontal-story__copy { min-height:21rem; padding:1.6rem; }
  .horizontal-story__media { min-height:21rem; }
  .horizontal-story__copy h3 { font-size:3.9rem; }
  .progression-stage { min-height:27rem; }
  .progression-gallery__meta { flex-direction:column; gap:.25rem; }
  .atelier-portrait__media { min-height:31rem; }
  .book-stack { min-height:29rem; }
  .book-stack__item { width:48%; }
  .portfolio-book { min-height:43rem; }
  .portfolio-book__copy { min-height:23rem !important; }
  .portfolio-book__visual { min-height:20rem !important; }
  .portfolio-book h3 { font-size:3.5rem; }
  .portfolio-book__object { width:min(54vw,14rem) !important; }
  .portfolio-immersive__controls { width:calc(100vw - 1.25rem); grid-template-columns:auto minmax(0,1fr) auto; }
  .page-hero { min-height:34rem; padding-top:8rem; }
  .page-hero h1 { font-size:clamp(3rem,14vw,4.8rem); }
}

@media (pointer: coarse) {
  .macro-stage.is-loupe-mode { touch-action:none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal { opacity:1; transform:none; }
  .hero-cinematic__reflection { transform:none; opacity:.18; }
  .horizontal-story__panel,
  .portfolio-book,
  .book-stack__item,
  .portfolio-book__feature,
  .portfolio-book__cover { transition:none !important; transform:none; }
  .horizontal-story__viewport,
  .portfolio-immersive__viewport { overflow-x:auto !important; scroll-snap-type:x mandatory !important; }
  .horizontal-story__track,
  .portfolio-immersive__track { transform:none !important; }
  .horizontal-story__panel,
  .portfolio-book { opacity:1; }
  .book-stack__item:nth-child(1) { transform:translate(-77%,-52%) rotateZ(-5deg); }
  .book-stack__item:nth-child(2) { transform:translate(-30%,-50%) rotateZ(4deg); }
  .book-stack__item:nth-child(3) { transform:translate(12%,-48%) rotateZ(10deg); }
}

/* Final mobile header safeguard: keep the menu control genuinely touch-sized. */
@media (max-width: 58rem) {
  .menu-toggle {
    flex: 0 0 2.8rem;
    min-width: 2.8rem;
    min-height: 2.8rem;
  }
}
@media (max-width: 22rem) {
  .header-inner { gap: .55rem; }
  .brand { gap: .55rem; }
  .brand img { width: 2.5rem; height: 2.5rem; }
  .brand-copy strong { font-size: .84rem; }
  .lang-switch a { min-width: 1.7rem; min-height: 1.9rem; }
}

/* Direction immersive V3 — the light as a reading system -------------- */
:root {
  --focus-ring: #f6dfaa;
  --chapter-progress: 0;
}

section[id] { scroll-margin-top: calc(var(--header-h) + 1.2rem); }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 5px;
  box-shadow: 0 0 0 5px rgba(3, 7, 12, .72);
}

.section-light :focus-visible { box-shadow: 0 0 0 5px rgba(251, 248, 241, .92); }
.section-light .eyebrow { color: #75511c; }

.hero-cinematic__content { max-width: 64rem; }
.hero-cinematic__title {
  max-width: 11.6ch;
  font-size: clamp(4rem, 7.35vw, 8.25rem);
  line-height: .91;
}
.hero-cinematic__title > span { display: block; }
.hero-cinematic__title .hero-accent {
  max-width: 10.8ch;
  margin-top: .08em;
  margin-left: clamp(0rem, 3.2vw, 3rem);
}
.hero-cinematic__lede { max-width: 44rem; }

/* The chapter rail stays quiet until a chapter becomes current. */
.chapter-rail {
  position: fixed;
  z-index: 980;
  top: 50%;
  right: clamp(.75rem, 1.6vw, 1.7rem);
  display: grid;
  gap: .25rem;
  width: 8.8rem;
  padding: .55rem;
  border: 1px solid rgba(240, 221, 178, .10);
  border-radius: 1rem;
  background: rgba(3, 7, 12, .48);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .18);
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}
.chapter-rail a {
  position: relative;
  display: grid;
  grid-template-columns: 1.65rem 1fr;
  align-items: center;
  min-height: 2.15rem;
  padding: .25rem .35rem;
  border-radius: .55rem;
  color: rgba(244, 239, 229, .42);
  font-size: .63rem;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.chapter-rail a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: .17rem;
  width: .32rem;
  height: .32rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}
.chapter-rail a span { font-variant-numeric: tabular-nums; }
.chapter-rail a strong { font-weight: 720; }
.chapter-rail a:hover,
.chapter-rail a.is-current {
  color: var(--champagne-2);
  background: rgba(240, 221, 178, .055);
}
.chapter-rail a.is-current::before {
  border-color: var(--champagne-2);
  background: var(--champagne-2);
  box-shadow: 0 0 0 .25rem rgba(240, 221, 178, .08), 0 0 1.1rem rgba(240, 221, 178, .35);
}

.chapter-progress {
  position: fixed;
  z-index: 1002;
  top: calc(var(--header-h) - 1px);
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
}
.chapter-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--champagne-deep), var(--champagne-2), var(--ice));
  box-shadow: 0 0 .7rem rgba(240, 221, 178, .42);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Real workshop media give every editorial hero its own material presence. */
body[data-page="formations"] { --page-hero-image: url("presentation-piece.webp"); --page-hero-position: 72% center; }
body[data-page="training"] { --page-hero-image: url("anglage-main-art-de-langlage-1200.webp"); --page-hero-position: 72% center; }
body[data-page="enterprises"] { --page-hero-image: url("atelier-outillage-art-de-langlage-1600.webp"); --page-hero-position: 72% center; }
body[data-page="contact"] { --page-hero-image: url("atelier_art_de_l_anglage.webp"); --page-hero-position: 68% center; }
body[data-page="testimonials"] { --page-hero-image: url("Tirette.webp"); --page-hero-position: 72% center; }
body[data-page="media"] { --page-hero-image: url("presentation_art_de_l_anglage.webp"); --page-hero-position: 72% center; }
body[data-page="bewatchmaker"] { --page-hero-image: url("mouvement_bewatchmaker.webp"); --page-hero-position: 72% center; }

body[data-page]:not([data-page="home"]):not([data-page="alexandra"]):not([data-page="books"]) .page-hero {
  background-image:
    linear-gradient(90deg, rgba(3,7,12,.995) 0%, rgba(3,7,12,.94) 38%, rgba(3,7,12,.56) 67%, rgba(3,7,12,.72) 100%),
    linear-gradient(0deg, rgba(3,7,12,.94) 0%, transparent 44%),
    var(--page-hero-image, linear-gradient(145deg, #03080d, #071827 58%, #03070c));
  background-position: center, center, var(--page-hero-position, center);
  background-size: cover;
  background-repeat: no-repeat;
}
body[data-page]:not([data-page="home"]) .page-hero h1 {
  max-width: 14ch;
  text-shadow: 0 3px 38px rgba(0, 0, 0, .5);
}
body[data-page]:not([data-page="home"]) .page-hero .lede {
  color: rgba(244, 247, 249, .82);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .42);
}

/* Long institutional titles keep their authority without crowding the image. */
body[data-page="enterprises"] .page-hero h1,
body[data-page="bewatchmaker"] .page-hero h1 {
  max-width: 15ch;
  font-size: clamp(3.2rem, 5.7vw, 6rem);
}

@media (max-width: 90rem) {
  .chapter-rail { width: 2.9rem; }
  .chapter-rail a { grid-template-columns: 1fr; text-align: center; }
  .chapter-rail a strong { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .chapter-rail a::before { display: none; }
}

@media (max-width: 70rem) {
  .chapter-rail { display: none; }
  body[data-page]:not([data-page="home"]):not([data-page="alexandra"]):not([data-page="books"]) .page-hero {
    background-image:
      linear-gradient(90deg, rgba(3,7,12,.98), rgba(3,7,12,.68)),
      linear-gradient(0deg, rgba(3,7,12,.94), transparent 48%),
      var(--page-hero-image, linear-gradient(145deg, #03080d, #071827 58%, #03070c));
  }
}

@media (max-width: 42rem) {
  .hero-cinematic__title {
    max-width: 10.4ch;
    font-size: clamp(3.25rem, 14.5vw, 4.8rem);
    line-height: .92;
  }
  .hero-cinematic__title .hero-accent { max-width: 9.7ch; margin-left: 0; }
  .hero-cinematic__lede { max-width: 32rem; font-size: 1rem; line-height: 1.58; }
  .hero-cinematic__meta { gap: .4rem; }
  .hero-cinematic__meta li { padding: .5rem .68rem; font-size: .64rem; }
  body[data-page]:not([data-page="home"]):not([data-page="alexandra"]):not([data-page="books"]) .page-hero {
    background-position: center, center, 62% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chapter-progress span { transition: none; }
  .chapter-rail a,
  .chapter-rail a::before { transition: none; }
}

/* Psychological orientation: visible next questions, never coercive CTAs. */
.journey-cue {
  border-top: 1px solid rgba(240, 221, 178, .12);
  border-bottom: 1px solid rgba(240, 221, 178, .12);
  background: #050b12;
}
.journey-cue__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  padding-top: .9rem;
  padding-bottom: .9rem;
}
.journey-cue__inner div { display: grid; gap: .28rem; }
.journey-cue__inner div span {
  color: var(--champagne-deep);
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.journey-cue__inner strong {
  color: rgba(244, 247, 249, .84);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 520;
}
.journey-cue__inner > a {
  display: inline-flex;
  flex: 0 0 auto;
  gap: .7rem;
  align-items: center;
  min-height: 2.8rem;
  color: var(--champagne-2);
  font-size: .77rem;
  font-weight: 760;
  letter-spacing: .04em;
  text-decoration: none;
}

.pathfinder { background: linear-gradient(145deg, #03080d, #071725 62%, #03080d); }
.pathfinder__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.pathfinder__choices { display: grid; gap: .75rem; }
.pathfinder__choices button {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: .25rem 1rem;
  width: 100%;
  min-height: 5.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(240, 221, 178, .14);
  border-radius: .9rem;
  color: var(--ice);
  text-align: left;
  background: rgba(255, 255, 255, .025);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.pathfinder__choices button:hover,
.pathfinder__choices button[aria-pressed="true"] {
  border-color: rgba(240, 221, 178, .52);
  background: rgba(240, 221, 178, .075);
  transform: translateX(.25rem);
}
.pathfinder__choices button > span {
  grid-row: 1 / 3;
  color: var(--champagne-deep);
  font-size: .68rem;
  letter-spacing: .1em;
}
.pathfinder__choices strong { font-size: .95rem; line-height: 1.35; }
.pathfinder__choices small { color: rgba(220, 228, 234, .66); font-size: .76rem; line-height: 1.48; }
.pathfinder__result {
  max-width: 52rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  margin-left: auto;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border-left: 2px solid var(--champagne-deep);
  background: rgba(240, 221, 178, .055);
}
.pathfinder__result[hidden] { display: none; }
.pathfinder__result h3 { margin: .45rem 0 .7rem; font-size: clamp(1.65rem, 3vw, 2.65rem); }
.pathfinder__result p:not(.eyebrow) { max-width: 46rem; color: rgba(220, 228, 234, .75); }
.pathfinder__result .button { margin-top: .8rem; }

.field-hint {
  margin: .5rem 0 0;
  color: rgba(220, 228, 234, .66);
  font-size: .72rem;
  line-height: 1.5;
}

.faq-list { display: grid; gap: .65rem; }
.faq-list details {
  border: 1px solid rgba(240, 221, 178, .15);
  border-radius: .8rem;
  background: rgba(255, 255, 255, .025);
}
.faq-list summary {
  position: relative;
  padding: 1.1rem 3.2rem 1.1rem 1.15rem;
  color: var(--ice);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--champagne-2);
  font-size: 1.3rem;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 54rem; margin: 0; padding: 0 1.15rem 1.15rem; color: rgba(220, 228, 234, .72); }
.section-light .faq-list details { border-color: rgba(24, 35, 43, .13); background: rgba(255, 255, 255, .52); }
.section-light .faq-list summary { color: var(--navy); }
.section-light .faq-list details p { color: #4b5961; }

@media (max-width: 48rem) {
  .journey-cue__inner { display: grid; gap: .7rem; }
  .journey-cue__inner > a { justify-content: space-between; }
  .pathfinder__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pathfinder__choices button:hover,
  .pathfinder__choices button[aria-pressed="true"] { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pathfinder__choices button { transition: none; }
}

/* Alexandra's voice ---------------------------------------------------
 * A restrained editorial system: one signature statement, quiet workshop
 * observations and a direct-contact trace. These are words, not proof cards.
 */
.alexandra-note {
  position: relative;
  width: min(calc(100% - 3rem), 72rem);
  margin: clamp(2.75rem, 6vw, 5.5rem) auto;
  padding: clamp(1.5rem, 3.5vw, 2.8rem) clamp(1.4rem, 4vw, 3.2rem);
  overflow: hidden;
  border: 1px solid rgba(240, 221, 178, .16);
  border-left: 2px solid var(--champagne);
  border-radius: var(--radius-md);
  color: rgba(244, 239, 229, .92);
  background:
    linear-gradient(115deg, rgba(240, 221, 178, .055), transparent 48%),
    rgba(5, 14, 23, .86);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .035);
}
.alexandra-note::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(240, 221, 178, .09);
  border-radius: 50%;
  pointer-events: none;
}
.alexandra-note__label,
.alexandra-signature__label {
  margin: 0 0 1rem;
  color: var(--champagne-2);
  font-size: .67rem;
  font-weight: 780;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.alexandra-note blockquote,
.alexandra-signature blockquote {
  max-width: 31ch;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.03em;
}
.alexandra-note__meta,
.alexandra-signature__author {
  display: flex;
  flex-wrap: wrap;
  gap: .22rem .7rem;
  align-items: baseline;
  margin: 1.35rem 0 0;
  color: rgba(214, 224, 230, .64);
  font-size: .72rem;
  letter-spacing: .045em;
}
.alexandra-note__meta strong,
.alexandra-signature__author strong {
  color: var(--champagne-2);
  font-weight: 740;
}
.alexandra-note__meta span::before,
.alexandra-signature__author span::before {
  content: "·";
  margin-right: .7rem;
  color: var(--champagne-deep);
}

.container > .alexandra-note,
.flow > .alexandra-note,
.pathfinder__grid .alexandra-note,
.page-hero .alexandra-note,
.section-head .alexandra-note {
  width: 100%;
  margin: 1.65rem 0 0;
}
.alexandra-note--compact {
  padding: 1.25rem 1.45rem;
}
.alexandra-note--compact blockquote {
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.28;
}
.alexandra-note--workbench {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background:
    linear-gradient(90deg, rgba(185, 227, 239, .055), transparent 52%),
    rgba(4, 12, 20, .92);
}
.alexandra-note--workbench .alexandra-note__label { color: var(--ice); }
.alexandra-note--corporate { max-width: 68rem; }
.alexandra-note--corporate blockquote { max-width: 39ch; font-size: clamp(1.45rem, 2.7vw, 2.35rem); }
.alexandra-note--light {
  border-color: rgba(29, 37, 43, .12);
  border-left-color: var(--champagne-deep);
  color: #17222a;
  background:
    linear-gradient(125deg, rgba(200, 169, 111, .11), transparent 50%),
    rgba(255, 255, 255, .78);
  box-shadow: 0 24px 64px rgba(41, 34, 24, .09), inset 0 1px rgba(255, 255, 255, .94);
}
.alexandra-note--light .alexandra-note__label,
.alexandra-note--light .alexandra-note__meta strong { color: #7e5d2d; }
.alexandra-note--light .alexandra-note__meta { color: #66727a; }
.alexandra-note--hero {
  max-width: 48rem;
  margin-top: 2rem;
  margin-left: 0;
  padding: 1.35rem 1.55rem;
  background: rgba(4, 12, 19, .67);
  backdrop-filter: blur(12px);
}
.alexandra-note--hero blockquote { font-size: clamp(1.25rem, 2.2vw, 1.8rem); line-height: 1.28; }

.alexandra-signature {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(45rem 32rem at 12% 50%, rgba(185, 227, 239, .08), transparent 70%),
    linear-gradient(145deg, #02070b, #071827 58%, #03080d);
}
.alexandra-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 48%, rgba(240, 221, 178, .035));
}
.alexandra-signature__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, .78fr) minmax(0, 1.22fr);
  gap: clamp(2.2rem, 6vw, 6.5rem);
  align-items: center;
}
.alexandra-signature__media {
  position: relative;
  min-height: clamp(24rem, 48vw, 36rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 221, 178, .14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.alexandra-signature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 7, 11, .72));
  pointer-events: none;
}
.alexandra-signature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.alexandra-signature__copy { position: relative; z-index: 1; }
.alexandra-signature blockquote {
  max-width: 18ch;
  color: var(--ivory);
  font-size: clamp(2.7rem, 6vw, 6.25rem);
  line-height: .98;
}
.alexandra-signature__context {
  max-width: 38rem;
  margin: clamp(1.5rem, 3vw, 2.3rem) 0 0;
  color: rgba(214, 224, 230, .72);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.horizontal-story__media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .68rem .8rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .6rem;
  color: rgba(244, 247, 249, .82);
  font-size: .68rem;
  line-height: 1.45;
  background: rgba(3, 9, 14, .64);
  backdrop-filter: blur(10px);
}
.media-caption {
  margin: 0;
  padding: .75rem .9rem;
  color: rgba(220, 228, 234, .66);
  font-size: .7rem;
  line-height: 1.5;
  background: rgba(4, 12, 20, .86);
}
.footer-human-note {
  display: inline-flex;
  margin-top: .85rem;
  color: rgba(240, 221, 178, .74);
  font-size: .72rem;
  line-height: 1.5;
  text-decoration: none;
}
.footer-human-note:hover { color: var(--champagne-2); }
.footer-human-note:focus-visible {
  outline: 2px solid var(--champagne-2);
  outline-offset: .25rem;
  border-radius: .2rem;
}

@media (max-width: 62rem) {
  .alexandra-signature__grid { grid-template-columns: 1fr; }
  .alexandra-signature__media { min-height: clamp(19rem, 64vw, 32rem); }
  .alexandra-signature blockquote { max-width: 15ch; }
}

@media (max-width: 42rem) {
  .alexandra-note {
    width: min(calc(100% - 2rem), 72rem);
    margin-block: 2rem;
    padding: 1.3rem 1.15rem;
    border-radius: .9rem;
  }
  .container > .alexandra-note,
  .flow > .alexandra-note,
  .pathfinder__grid .alexandra-note,
  .page-hero .alexandra-note,
  .section-head .alexandra-note { width: 100%; }
  .alexandra-note blockquote { max-width: none; font-size: 1.42rem; line-height: 1.23; }
  .alexandra-note--compact blockquote,
  .alexandra-note--hero blockquote { font-size: 1.2rem; }
  .alexandra-note__meta,
  .alexandra-signature__author { display: grid; gap: .2rem; }
  .alexandra-note__meta span::before,
  .alexandra-signature__author span::before { display: none; }
  .alexandra-signature { padding-block: 4.5rem; }
  .alexandra-signature__grid { width: min(calc(100% - 2rem), var(--container)); gap: 2rem; }
  .alexandra-signature__media { min-height: 20rem; border-radius: 1.2rem; }
  .alexandra-signature blockquote { max-width: 12ch; font-size: clamp(2.65rem, 13vw, 4.15rem); }
  .alexandra-signature__context { font-size: .95rem; }
  .horizontal-story__media figcaption { right: .7rem; bottom: .7rem; left: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .alexandra-note,
  .alexandra-signature__grid { scroll-behavior: auto; }
}

/* Alexandra's career — editorial scroll chronology ------------------- */
.career-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(48rem 34rem at 8% 18%, rgba(185, 227, 239, .075), transparent 72%),
    radial-gradient(42rem 30rem at 92% 78%, rgba(200, 169, 111, .07), transparent 70%),
    linear-gradient(155deg, #02070c 0%, #071522 52%, #03090f 100%);
}
.career-section::before {
  content: "20";
  position: absolute;
  right: -2vw;
  top: 2rem;
  z-index: -1;
  color: transparent;
  font-family: Iowan Old Style, Georgia, serif;
  font-size: clamp(18rem, 38vw, 42rem);
  font-weight: 400;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(240, 221, 178, .035);
  pointer-events: none;
  user-select: none;
}
.career-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
}
.career-intro {
  position: sticky;
  top: clamp(7rem, 14vh, 10rem);
  padding-top: .35rem;
}
.career-intro h2 {
  max-width: 11ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 5.7vw, 6.4rem);
  line-height: .96;
  text-wrap: balance;
}
.career-intro > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.7rem 0 0;
  color: rgba(214, 224, 230, .72);
  font-size: clamp(.98rem, 1.25vw, 1.14rem);
  line-height: 1.72;
}
.career-span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem;
  align-items: center;
  max-width: 24rem;
  margin-top: clamp(2.4rem, 5vw, 4.5rem);
  color: rgba(240, 221, 178, .56);
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .14em;
}
.career-span i {
  position: relative;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(200,169,111,.8), rgba(185,227,239,.18));
}
.career-span i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: .38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--champagne-2);
  box-shadow: 0 0 1rem rgba(215, 173, 99, .68);
  transform: translateY(-50%);
}
.career-chronology { position: relative; }
.career-rail {
  position: absolute;
  top: 1.35rem;
  bottom: 2.5rem;
  left: 1.28rem;
  width: 1px;
  overflow: hidden;
  background: rgba(240, 221, 178, .12);
}
.career-rail span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--champagne-2), #94cfe2 72%, rgba(148,207,226,.2));
  box-shadow: 0 0 .8rem rgba(215, 173, 99, .55);
  transform: scaleY(var(--career-progress, 0));
  transform-origin: 50% 0;
  will-change: transform;
}
.career-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.career-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  min-height: 13.5rem;
  padding: 0 0 clamp(3.8rem, 7vw, 6.5rem);
}
.career-step:last-child { min-height: 0; padding-bottom: 0; }
.career-step__marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(240, 221, 178, .18);
  border-radius: 50%;
  color: rgba(214, 224, 230, .42);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
  background: #07131e;
  box-shadow: 0 0 0 .48rem rgba(4, 12, 19, .82);
  transition: color .45s ease, border-color .45s ease, background .45s ease, box-shadow .45s ease, transform .55s var(--ease-luxe);
}
.career-step__content {
  position: relative;
  padding: 0 0 2rem;
  border-bottom: 1px solid rgba(240, 221, 178, .1);
  opacity: .54;
  transform: translate3d(0, .65rem, 0);
  transition: opacity .55s ease, transform .65s var(--ease-luxe), border-color .55s ease;
}
.career-step__content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne-2));
  transition: width .7s var(--ease-luxe);
}
.career-step time {
  display: block;
  margin-bottom: .72rem;
  color: rgba(240, 221, 178, .58);
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.career-step h3 {
  max-width: 25ch;
  font-size: clamp(1.55rem, 2.45vw, 2.5rem);
  line-height: 1.08;
  text-wrap: balance;
}
.career-step p {
  max-width: 42rem;
  margin: .85rem 0 0;
  color: rgba(214, 224, 230, .66);
  font-size: clamp(.9rem, 1.05vw, 1rem);
  line-height: 1.7;
}
.career-step.is-active .career-step__marker {
  border-color: rgba(240, 221, 178, .74);
  color: #08111a;
  background: linear-gradient(135deg, #f5dfb2, #bd8840);
  box-shadow: 0 0 0 .48rem rgba(4, 12, 19, .82), 0 0 1.5rem rgba(215, 173, 99, .34);
  transform: scale(1.06);
}
.career-step.is-active .career-step__content {
  border-color: rgba(240, 221, 178, .24);
  opacity: 1;
  transform: none;
}
.career-step.is-active .career-step__content::after { width: min(12rem, 35%); }
.career-step--signature .career-step__content {
  margin-top: -.2rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(240, 221, 178, .16);
  border-radius: 1.25rem;
  background:
    linear-gradient(125deg, rgba(200, 169, 111, .11), transparent 52%),
    rgba(9, 25, 39, .74);
  box-shadow: 0 28px 80px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.04);
}
.career-step--signature .career-step__content::after { display: none; }
.career-step--signature h3 { color: var(--champagne-2); }

@media (max-width: 62rem) {
  .career-layout { grid-template-columns: 1fr; gap: 4.5rem; }
  .career-intro { position: relative; top: auto; }
  .career-intro h2 { max-width: 13ch; }
  .career-span { max-width: none; }
  .career-step { min-height: 11rem; }
}

@media (max-width: 42rem) {
  .career-section { padding-block: 5rem; }
  .career-section::before { top: 1rem; right: -2rem; font-size: 19rem; }
  .career-layout { gap: 3.4rem; }
  .career-intro h2 { font-size: clamp(2.8rem, 13vw, 4.15rem); }
  .career-intro > p:not(.eyebrow) { font-size: .95rem; }
  .career-rail { left: 1.05rem; }
  .career-step { grid-template-columns: 2.15rem minmax(0, 1fr); gap: 1.15rem; min-height: 0; padding-bottom: 3.8rem; }
  .career-step__marker { width: 2.15rem; height: 2.15rem; box-shadow: 0 0 0 .34rem rgba(4, 12, 19, .84); }
  .career-step.is-active .career-step__marker { box-shadow: 0 0 0 .34rem rgba(4, 12, 19, .84), 0 0 1.2rem rgba(215, 173, 99, .3); }
  .career-step h3 { font-size: 1.55rem; }
  .career-step p { font-size: .88rem; line-height: 1.64; }
  .career-step--signature .career-step__content { padding: 1.25rem; border-radius: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .career-rail span { transform: scaleY(1); }
  .career-step__marker,
  .career-step__content,
  .career-step__content::after { transition: none; }
  .career-step__content { opacity: 1; transform: none; }
}
