/* ==========================================================================
   BEAUTY LOUNGE ASTX — "Goldener Blick"
   black velvet · gold foil engraving · one rosé-silk act
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      oklch(15.5% 0.014 78);
  --ink-2:    oklch(19.5% 0.02 78);
  --ink-3:    oklch(24% 0.024 78);
  --gold:     oklch(70% 0.115 85);
  --gold-hi:  oklch(85% 0.08 92);
  --gold-lo:  oklch(50% 0.075 80);
  --gold-dim: oklch(38% 0.05 80);
  --cream:    oklch(93% 0.018 85);
  --cream-60: oklch(93% 0.018 85 / .62);
  --rose:     oklch(93% 0.022 20);
  --rose-2:   oklch(89.5% 0.03 20);
  --rose-ink: oklch(30% 0.055 25);
  --rose-deep:oklch(52% 0.11 12);

  --font-display: 'Prata', 'Georgia', serif;
  --font-script: 'Pinyon Script', cursive;
  --font-body: 'Albert Sans', 'Helvetica Neue', sans-serif;
  --font-hy: 'Noto Serif Armenian', serif;

  --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.5rem;
  --s6: 2rem; --s7: 3rem; --s8: 4rem; --s9: 6rem;

  --wide: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);        /* ease-out-quint */
  --hairline: 1px solid oklch(50% 0.075 80 / .38);
}

/* clip (not hidden) — keeps the hero halo bleeding off-canvas without letting the
   viewport pan sideways, and leaves position:sticky working */
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- shared voices ---------- */

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-hi);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.02em 1.9em .95em;
  border-radius: 2px;
  transition: transform .45s var(--ease), background-color .45s var(--ease),
              color .45s var(--ease), border-color .45s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-hi); transform: translateY(-2px); }
.btn-line { color: var(--cream); border: 1px solid oklch(50% 0.075 80 / .55); }
.btn-line:hover { border-color: var(--gold-hi); color: var(--gold-hi); transform: translateY(-2px); }
.btn-xl { font-size: .92rem; padding: 1.15em 2.6em 1.08em; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--s6);
  padding: .9rem clamp(1.25rem, 4vw, 3rem);
  transition: background-color .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.topbar.scrolled {
  background: oklch(15.5% 0.014 78 / .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 oklch(50% 0.075 80 / .28);
  padding-block: .55rem;
}
.topbar-brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--cream);
}
.topbar-mark { width: 52px; height: auto; }
.topbar-word {
  font-family: var(--font-display);
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar-word em { font-style: normal; color: var(--gold); }
.topbar-nav { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); margin-inline: auto; }
.topbar-nav a {
  color: var(--cream-60);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-block: .35rem;
  position: relative;
}
.topbar-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  border-bottom: 1px solid var(--gold);
  transition: right .5s var(--ease);
}
.topbar-nav a:hover { color: var(--gold-hi); }
.topbar-nav a:hover::after { right: 0; }
.topbar-cta {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: .68rem;
  letter-spacing: .11em;
  padding: .92em 1.45em .86em;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(6.5rem, 12vh, 9rem) clamp(1.25rem, 6vw, 4rem) clamp(3rem, 6vh, 5rem);
  background:
    radial-gradient(58% 48% at 72% 42%, oklch(24% 0.03 78 / .85), transparent 70%),
    var(--ink);
}
.hero-inner {
  width: min(var(--wide), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(var(--s6), 5vw, var(--s9));
  align-items: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: var(--s4);
  animation: rise 1s var(--ease) .15s both;
}
.hero-eyebrow .rule {
  flex: 0 0 3.4rem;
  border-top: 1px solid oklch(50% 0.075 80 / .55);
  transform-origin: left center;
  animation: draw-x 1.1s var(--ease) .3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 6vw, 5.1rem);
  line-height: 1.07;
  letter-spacing: .005em;
  margin-top: var(--s5);
  color: var(--cream);
}
.hero-title em { font-style: normal; color: var(--gold); }
.ht-line { display: block; }
@media (min-width: 600px) { .ht-line { white-space: nowrap; } }
.ht-line:nth-child(1) { animation: rise 1.1s var(--ease) .3s both; }
.ht-line:nth-child(2) { animation: rise 1.1s var(--ease) .45s both; }

.hero-script {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-top: var(--s4);
  animation: rise 1.1s var(--ease) .62s both;
}

.hero-lead {
  max-width: 46ch;
  margin-top: var(--s5);
  color: var(--cream-60);
  animation: rise 1.1s var(--ease) .74s both;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: var(--s4);
  margin-top: var(--s6);
  animation: rise 1.1s var(--ease) .86s both;
}

.hero-cred {
  margin-top: var(--s6);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-lo);
  animation: rise 1.1s var(--ease) 1s both;
}

/* portrait */
.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
  animation: appear 1.4s var(--ease) .5s both;
}
.hero-frame {
  position: relative;
  border: 1px solid oklch(50% 0.075 80 / .5);
  padding: .8rem;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: -0.85rem;
  border: 1px solid oklch(50% 0.075 80 / .22);
  pointer-events: none;
}
.hero-frame img { width: 100%; height: auto; filter: contrast(1.03); }
.hero-figcap {
  margin-top: 1.1rem;
  text-align: center;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--cream-60);
}
.hero-figcap .script { font-size: 1.5rem; margin-right: .35rem; }

.halo {
  position: absolute;
  inset: -14% -18% auto auto;
  width: 78%;
  z-index: -1;
  overflow: visible;
}
.halo-ring {
  fill: none;
  stroke: oklch(70% 0.115 85 / .6);
  stroke-width: 1.4;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-ring 2.4s var(--ease) .9s forwards;
}
.halo-lashes line {
  stroke: oklch(70% 0.115 85 / .75);
  stroke-width: 1.6;
  stroke-linecap: round;
  transform-origin: var(--ox) var(--oy);
  scale: 0;
  animation: lash-pop .9s var(--ease) both;
}

/* ==========================================================================
   CREDENTIAL BAND
   ========================================================================== */

.band {
  overflow: hidden;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  padding: 1.05rem 0;
  background: var(--ink-2);
}
.band-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: band-slide 46s linear infinite;
}
.band-track span {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.band-track i { font-style: normal; color: var(--gold-lo); font-size: .7rem; }

/* ==========================================================================
   ACTS — shared
   ========================================================================== */

.act { padding: clamp(5.5rem, 11vw, 9.5rem) clamp(1.25rem, 6vw, 4rem); }
.act-dark { background: var(--ink); }

.act-head { width: min(var(--wide), 100%); margin-inline: auto; }
.act-mark { display: flex; align-items: center; gap: var(--s4); margin-bottom: var(--s5); }
.act-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .3em;
  color: var(--gold-lo);
}
.fan { width: 92px; height: 34px; overflow: visible; }
.fan-strokes line {
  stroke: var(--gold-lo);
  stroke-width: 1.3;
  stroke-linecap: round;
}

.act-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  margin-top: var(--s4);
  max-width: 18ch;
}
.act-title em { font-style: normal; color: var(--gold); }
.act-title-xl { font-size: clamp(2.5rem, 5.4vw, 4.4rem); max-width: 16ch; }

.act-lead {
  max-width: 56ch;
  margin-top: var(--s5);
  color: var(--cream-60);
  font-size: 1.05rem;
}

/* ==========================================================================
   ACT I — MAPPING (signature)
   ========================================================================== */

.mapping {
  width: min(980px, 100%);
  margin: clamp(3.5rem, 7vw, 5.5rem) auto 0;
  border: var(--hairline);
  background: oklch(19.5% 0.02 78 / .42);
}
.mapping-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: var(--hairline);
}
.mapping-tabs button {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-60);
  padding: 1rem 1.15rem .92rem;
  position: relative;
  transition: color .4s var(--ease);
}
.mapping-tabs button::after {
  content: "";
  position: absolute; left: 1.1rem; right: 100%; bottom: -1px;
  border-bottom: 2px solid var(--gold);
  transition: right .5s var(--ease);
}
.mapping-tabs button:hover { color: var(--cream); }
.mapping-tabs button[aria-selected="true"] { color: var(--gold-hi); }
.mapping-tabs button[aria-selected="true"]::after { right: 1.1rem; }

.mapping-stage { padding: var(--s6) clamp(1rem, 3.5vw, 2.6rem) clamp(1.5rem, 3.5vw, 2.4rem); }
#mapSvg { width: 100%; height: auto; overflow: visible; }
.lid {
  fill: none;
  stroke: oklch(93% 0.018 85 / .5);
  stroke-width: 1.6;
}
#lashGroup line {
  stroke: var(--gold);
  stroke-width: 2.1;
  stroke-linecap: round;
  transform-origin: var(--ox) var(--oy);
  scale: 1 0;
  transition: scale .7s var(--ease);
  transition-delay: var(--d, 0s);
}
#mapping.armed #lashGroup line { scale: 1 1; }
#numGroup text {
  font-family: var(--font-display);
  font-size: 17px;
  fill: var(--gold-hi);
  text-anchor: middle;
  opacity: 0;
  transition: opacity .8s var(--ease);
  transition-delay: var(--d, 0s);
}
#mapping.armed #numGroup text { opacity: 1; }

.mapping-desc {
  margin-top: var(--s5);
  font-size: 1.02rem;
  color: var(--cream);
  max-width: 52ch;
  min-height: 3.2em;
}
.mapping-note {
  margin-top: var(--s3);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--cream-60);
}

/* ---------- ledgers ---------- */

.ledgers {
  width: min(var(--wide), 100%);
  margin: clamp(3.5rem, 7vw, 5rem) auto 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(var(--s6), 5vw, var(--s9));
  align-items: start;
}
.ledger-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--gold-hi);
  padding-bottom: var(--s4);
  border-bottom: var(--hairline);
}
.ledger-list { list-style: none; }
.ledger-list > li { padding: 1.05rem 0; border-bottom: 1px solid oklch(50% 0.075 80 / .16); }
.ledger-list > li:last-child { border-bottom: 0; }
.li-row, .ledger-list > li:not(:has(.li-row)) { display: flex; align-items: baseline; gap: .8rem; }
.li-name { font-weight: 400; font-size: 1.02rem; }
.li-name small {
  display: block;
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--cream-60);
  margin-top: .15rem;
}
.li-dots { flex: 1; border-bottom: 1px dotted oklch(50% 0.075 80 / .45); transform: translateY(-4px); }
.li-price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--gold);
  white-space: nowrap;
}
.li-sub { font-size: .85rem; color: var(--cream-60); margin-top: .35rem; max-width: 52ch; }

/* ---------- works strip ---------- */

.works {
  width: min(var(--wide), 100%);
  margin: clamp(3.5rem, 7vw, 5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
}
.works figure { overflow: hidden; }
.works img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  filter: saturate(.92);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}
.works figure:hover img { transform: scale(1.045); filter: saturate(1); }
.works figure:nth-child(2) { transform: translateY(var(--s5)); }
.works figure:nth-child(4) { transform: translateY(var(--s5)); }

/* ==========================================================================
   ACT II — ROSÉ
   ========================================================================== */

.act-rose {
  background: linear-gradient(180deg, var(--rose), var(--rose-2));
  color: var(--rose-ink);
}
.act-rose .eyebrow { color: var(--rose-deep); }
.act-rose .act-title { color: oklch(24% 0.05 25); }
.act-rose .act-title em { color: var(--rose-deep); }
.act-rose .act-lead { color: oklch(30% 0.055 25 / .78); }

.rose-inner { width: min(var(--wide), 100%); margin-inline: auto; }
.rose-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(var(--s6), 5vw, var(--s9));
  margin-top: clamp(3rem, 6vw, 4.5rem);
  align-items: start;
}
.act-rose .ledger-list > li { border-bottom-color: oklch(52% 0.11 12 / .18); }
.act-rose .li-name { color: oklch(24% 0.05 25); }
.act-rose .li-name small { color: oklch(30% 0.055 25 / .65); }
.act-rose .li-dots { border-bottom-color: oklch(52% 0.11 12 / .4); }
.act-rose .li-price { color: var(--rose-deep); }
.act-rose .li-sub { color: oklch(30% 0.055 25 / .72); }

.rose-gift {
  margin-top: var(--s6);
  border: 1px solid oklch(52% 0.11 12 / .35);
  padding: var(--s5) var(--s6);
  max-width: 56ch;
}
.rose-gift-script { font-size: 1.9rem; color: var(--rose-deep); margin-bottom: .3rem; }
.rose-gift p:last-child { font-size: .98rem; color: oklch(30% 0.055 25 / .85); }

.rose-figure { position: sticky; top: 7rem; }
.rose-figure img { width: 100%; height: auto; }
.rose-figure figcaption {
  margin-top: .9rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: oklch(30% 0.055 25 / .6);
}

/* ==========================================================================
   ACT III — ACADEMY
   ========================================================================== */

.act-academy { background: linear-gradient(180deg, var(--ink), var(--ink-2) 55%, var(--ink)); }

.academy-grid {
  width: min(var(--wide), 100%);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(var(--s6), 5vw, var(--s8));
  align-items: start;
}

.course { border: var(--hairline); padding: clamp(var(--s5), 3.5vw, var(--s7)); }
.course + .course, .academy-mobile { margin-top: var(--s5); }
.course-major { background: oklch(19.5% 0.02 78 / .55); }
.course-kicker {
  font-size: .74rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}
.course-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: var(--s3);
}
.course-sub { color: var(--gold); }
.course-title-s {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: var(--s3);
}
.course-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s6);
  margin-top: var(--s5);
}
.course-list { list-style: none; }
.course-list li {
  padding: .42rem 0 .42rem 1.4rem;
  position: relative;
  font-size: .96rem;
  color: var(--cream);
}
.course-list li::before {
  content: "✓";
  position: absolute; left: 0; top: .42rem;
  color: var(--gold);
  font-size: .85rem;
}
.course-bonus {
  border: 1px solid oklch(70% 0.115 85 / .3);
  padding: var(--s4) var(--s5);
  align-self: start;
}
.course-bonus-title {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--gold-hi);
  margin-bottom: .35rem;
}
.course-desc { margin-top: var(--s4); color: var(--cream-60); max-width: 58ch; }
.course-foot {
  margin-top: var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid oklch(50% 0.075 80 / .22);
  font-size: .92rem;
  color: var(--cream-60);
}
.course-foot strong { color: var(--cream); font-weight: 500; }
.course-price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.02rem;
}

.academy-mobile { border: var(--hairline); padding: clamp(var(--s5), 3.5vw, var(--s7)); }
.academy-script { font-size: 2.1rem; margin-bottom: .3rem; }
.academy-mobile p:not(.script) { color: var(--cream-60); max-width: 52ch; }
.academy-mobile .btn { margin-top: var(--s5); }

.academy-portrait { position: sticky; top: 6.5rem; }
.academy-portrait img { width: 100%; height: auto; border: 1px solid oklch(50% 0.075 80 / .3); }
.academy-portrait figcaption {
  margin-top: .9rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-60);
}

/* ==========================================================================
   ACT IV — STORY
   ========================================================================== */

.story-grid {
  width: min(var(--wide), 100%);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(var(--s6), 5vw, var(--s9));
  align-items: start;
}
.story-armenian {
  font-family: var(--font-hy);
  font-size: 1.28rem;
  line-height: 1.75;
  color: var(--gold-hi);
  max-width: 30ch;
}
.story-translation {
  margin-top: var(--s3);
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--cream-60);
}
.story-copy > p:not(.story-armenian):not(.story-translation) {
  margin-top: var(--s6);
  max-width: 58ch;
}
.story-copy strong { color: var(--gold-hi); font-weight: 500; }
.story-quote {
  margin-top: var(--s7);
  padding: var(--s5) 0 0 var(--s6);
  border-top: var(--hairline);
}
.story-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--cream);
  max-width: 44ch;
}
.story-quote cite { display: block; margin-top: var(--s4); }
.story-quote .script { font-size: 2.2rem; }

.story-visuals { display: grid; gap: var(--s5); }
.story-sash img { width: 100%; border: 1px solid oklch(50% 0.075 80 / .3); }
.story-cert { justify-self: end; width: 86%; }
.story-cert img { border: 1px solid oklch(50% 0.075 80 / .3); }
.story-cert figcaption {
  margin-top: .8rem;
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--cream-60);
}

/* ==========================================================================
   VOICES
   ========================================================================== */

.act-voices { padding-top: 0; }
.voices {
  width: min(var(--wide), 100%);
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(var(--s6), 4vw, var(--s8));
  align-items: start;
}
.voice { border-top: 2px solid var(--gold); padding-top: var(--s5); }
.voice-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--cream);
}
.voice-meta {
  margin-top: var(--s4);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.voice-reply {
  margin-top: var(--s5);
  padding-left: var(--s5);
  border-left: 1px solid oklch(50% 0.075 80 / .35);
  font-style: italic;
  color: var(--cream-60);
  font-size: .95rem;
}
.voice-reply cite { font-style: normal; }
.voice-reply .script { font-size: 1.6rem; margin-left: .3rem; }
.voices-note {
  width: min(var(--wide), 100%);
  margin: var(--s7) auto 0;
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--cream-60);
}

/* ==========================================================================
   PLATE (footer)
   ========================================================================== */

.plate {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 6vw, 4rem) var(--s7);
  background:
    radial-gradient(45% 38% at 50% 18%, oklch(24% 0.03 80 / .8), transparent 72%),
    var(--ink-2);
  border-top: var(--hairline);
}
.plate-logo { width: min(300px, 62vw); height: auto; margin-inline: auto; }
.plate-script { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: var(--s5); }
.plate-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-top: var(--s4);
}
.plate .btn-xl { margin-top: var(--s6); }
.plate-info {
  margin-top: var(--s7);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-60);
}
.plate-ig { margin-top: var(--s3); font-size: .9rem; }
.plate-ig a { color: var(--gold); text-decoration: none; }
.plate-ig a:hover { color: var(--gold-hi); }
.plate-fine { margin-top: var(--s7); font-size: .72rem; color: oklch(93% 0.018 85 / .35); }

/* ==========================================================================
   REVEALS + KEYFRAMES
   ========================================================================== */

.rv { opacity: 0; translate: 0 26px; transition: opacity 1s var(--ease), translate 1s var(--ease); transition-delay: var(--d, 0s); }
.rv.on { opacity: 1; translate: 0 0; }

@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes appear { from { opacity: 0; transform: scale(.975); } to { opacity: 1; transform: none; } }
@keyframes draw-x { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes draw-ring { to { stroke-dashoffset: 0; } }
@keyframes lash-pop { from { scale: 0; } to { scale: 1; } }
@keyframes band-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* brand collapses to the mark before the bar can crowd the CTA */
@media (max-width: 1180px) {
  .topbar-word { display: none; }
}

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { justify-self: start; margin-top: var(--s6); }
  .ledgers, .rose-grid, .academy-grid, .story-grid, .voices { grid-template-columns: 1fr; }
  .rose-figure, .academy-portrait { position: static; }
  .rose-figure { max-width: 480px; }
  .academy-portrait { max-width: 420px; }
  .story-cert { justify-self: start; width: 100%; max-width: 520px; }
  .works { grid-template-columns: repeat(2, 1fr); }
  .works figure:nth-child(2), .works figure:nth-child(4) { transform: none; }
}

/* nav drops out while there is still room to spare, never mid-crowding */
@media (max-width: 860px) {
  .topbar-nav { display: none; }
  .topbar-cta { margin-left: auto; }
}

@media (max-width: 760px) {
  .hero { padding-top: 6rem; }
  .course-cols { grid-template-columns: 1fr; }
  .works { grid-template-columns: repeat(2, 1fr); }
  .mapping-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .mapping-tabs button { padding: .8rem .9rem .75rem; font-size: .7rem; letter-spacing: .08em; text-align: left; }
  .hero-eyebrow .rule { flex-basis: 1.4rem; }
  .band-track { gap: 1.8rem; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-delay: 0s !important;
    transition-duration: .001s !important;
    transition-delay: 0s !important;
  }
  .band-track { animation: none; }
  .rv { opacity: 1; translate: none; }
  #lashGroup line { scale: 1 1; }
  #numGroup text { opacity: 1; }
}
