/* ==========================================================================
   Elena Voss — dramatic soprano
   Direction: "Curtain & Gilt" — the opera house at the moment before curtain.
   A dark warm stage, a spotlight that follows the eye, playbill Didone type,
   oxblood and gold leaf, parchment reading fields. Structure follows the
   grammar of opera itself — acts, programmes, the pulled aria line — rather
   than the dashboard grammar of a product page.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..700&family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Spectral+SC:wght@400;500;600&display=swap');

:root {
  --stage:      #140a0d;   /* deep warm stage shadow            */
  --stage-2:    #1d0e12;   /* raised stage panel                */
  --stage-3:    #260f15;   /* deepest oxblood well              */
  --oxblood:    #5c1019;   /* the curtain                       */
  --bordeaux:   #8f1f28;   /* the curtain, lit                  */
  --gold:       #c6a24e;   /* gold leaf                         */
  --gold-lo:    #8f7333;   /* tarnished gold                    */
  --gold-hi:    #efd695;   /* gilt highlight                    */
  --ivory:      #f4ecda;   /* playbill paper                    */
  --ivory-dim:  #c9b8a1;   /* muted text on the dark stage      */
  --ink:        #23150f;   /* type on paper                     */
  --ink-soft:   #6a5342;   /* muted type on paper               */

  --font-display: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  --font-body:    'Spectral', 'Georgia', serif;
  --font-caps:    'Spectral SC', 'Spectral', serif;

  --container: 1200px;
  --measure: 66ch;
  --gutter: clamp(1.35rem, 4vw, 3.25rem);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--stage);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--stage); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ----------------------------------------------------------- typography -- */
.eyebrow {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: '';
  width: 2.4em;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow.centered::after {
  content: '';
  width: 2.4em; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.plain::before { display: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--ivory);
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
h1, .h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2, .h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 600; line-height: 1.06; }
h3, .h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; }

.serif-italic { font-style: italic; }
.gold-word { color: var(--gold); }

.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ivory-dim);
  max-width: 52ch;
}
.body-copy { color: var(--ivory-dim); font-weight: 400; max-width: var(--measure); }
.body-copy + .body-copy { margin-top: 1.3rem; }

/* ----------------------------------------------------------- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid var(--gold-lo);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--stage); border-color: var(--gold); }
.btn:hover::after { transform: scaleY(1); }
.btn-primary { background: var(--gold); color: var(--stage); border-color: var(--gold); }
.btn-primary::after { background: var(--stage); transform-origin: top; }
.btn-primary:hover { color: var(--gold); }
.btn-lg { padding: 1.2rem 2.6rem; font-size: 0.86rem; }

/* small ornamental arrow that slides on hover */
.btn .arw { transition: transform 0.5s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ----------------------------------------------------------- nav --------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--stage) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 16%, transparent);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 1.15rem; }
.brand { display: inline-flex; align-items: baseline; gap: 0.5rem; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
}
.brand-mark {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a:not(.btn) {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.35s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ivory); }
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links .btn { padding: 0.7rem 1.4rem; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--gold-lo);
  color: var(--ivory); width: 46px; height: 46px;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; inset: 74px 0 0 0;
    background: var(--stage-2);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 2.5rem var(--gutter); gap: 2rem;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.6s var(--ease);
    border-top: 1px solid color-mix(in srgb, var(--gold) 18%, transparent);
  }
  .nav-links.is-open { clip-path: inset(0 0 0 0); }
  .nav-links a:not(.btn) { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
}

/* ----------------------------------------------------------- reveal ------ */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.12s; }
.js .reveal[data-delay="2"] { transition-delay: 0.24s; }
.js .reveal[data-delay="3"] { transition-delay: 0.36s; }
.js .reveal[data-delay="4"] { transition-delay: 0.48s; }

/* ----------------------------------------------------------- sections ---- */
section { padding-block: clamp(4.5rem, 10vw, 9rem); position: relative; }
.bg-oxblood { background:
  radial-gradient(120% 100% at 50% 0%, color-mix(in srgb, var(--bordeaux) 40%, transparent), transparent 60%),
  var(--oxblood); }
.bg-panel { background: var(--stage-2); }
.bg-paper { background: var(--ivory); color: var(--ink); }
.bg-paper .eyebrow { color: var(--oxblood); }
.bg-paper .eyebrow::before,
.bg-paper .eyebrow.centered::after { background: linear-gradient(90deg, var(--oxblood), transparent); }
.bg-paper h1, .bg-paper h2, .bg-paper h3 { color: var(--ink); }
.bg-paper .body-copy { color: var(--ink-soft); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.4rem; }

/* thin engraved rule with a diamond node — used sparingly, varied per use */
.rule-gilt { display: flex; align-items: center; gap: 1rem; color: var(--gold-lo); }
.rule-gilt::before, .rule-gilt::after { content: ''; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold-lo), transparent); }
.rule-gilt .node { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* =========================================================== HERO ========= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(4rem, 10vh, 8rem);
  overflow: hidden;
  isolation: isolate;
}
/* the stage: deep vignette floor */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(140% 90% at 50% 118%, color-mix(in srgb, var(--oxblood) 65%, transparent), transparent 55%),
    linear-gradient(180deg, #0d0609 0%, var(--stage) 45%, #100609 100%);
}
/* the spotlight — follows the cursor, drifts when idle */
.hero .spotlight {
  position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(38rem 38rem at var(--mx, 50%) var(--my, 34%),
              color-mix(in srgb, var(--gold-hi) 22%, transparent) 0%,
              color-mix(in srgb, var(--gold) 9%, transparent) 26%,
              transparent 60%);
  transition: background 0.6s var(--ease-soft);
  pointer-events: none;
  mix-blend-mode: screen;
}
/* faint drifting dust motes in the beam */
.hero .motes { position: absolute; inset: 0; z-index: -2; opacity: 0.5; pointer-events: none; }

/* gilt proscenium corners — used once, only here */
.proscenium { position: absolute; z-index: -1; inset: clamp(1rem, 3vw, 2.4rem); pointer-events: none; }
.proscenium span { position: absolute; width: clamp(48px, 8vw, 92px); height: clamp(48px, 8vw, 92px); border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent); }
.proscenium .tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.proscenium .tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.proscenium .bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.proscenium .br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero .fach {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: clamp(0.78rem, 1.4vw, 0.98rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.hero-name { margin: 0; }
.hero-name .line { display: block; overflow: hidden; }
.hero-name .line > span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 17vw, 15rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--ivory);
  text-shadow: 0 0 60px color-mix(in srgb, var(--gold) 20%, transparent);
}
.hero-name .line.two > span { color: transparent; -webkit-text-stroke: 1.4px var(--gold); text-stroke: 1.4px var(--gold); text-shadow: none; }
.hero-tag {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--ivory-dim);
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 40ch; margin-inline: auto;
}
.hero-actions { margin-top: clamp(2.2rem, 4vw, 3rem); display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; left: 50%; bottom: clamp(1.4rem, 4vh, 2.6rem); transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-caps); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
}
.hero-scroll .bar { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); overflow: hidden; position: relative; }
.hero-scroll .bar::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold-hi); animation: scroll-run 2.4s var(--ease-soft) infinite; }

/* -- orchestrated page-load ------------------------------------------------
   The `preload` class is set on <html> by an inline head script and removed
   after first paint. Everything animates FROM the preload state via plain
   transitions, so the hero is always visible even if main.js never loads. */
.hero .fach { transition: opacity 0.9s var(--ease) 0.15s, transform 0.9s var(--ease) 0.15s; }
.hero-name .line > span { transition: transform 1.2s var(--ease); }
.hero-name .line.one > span { transition-delay: 0.28s; }
.hero-name .line.two > span { transition-delay: 0.46s; }
.hero-tag { transition: opacity 0.9s var(--ease) 0.85s, transform 0.9s var(--ease) 0.85s; }
.hero-actions { transition: opacity 0.9s var(--ease) 1s, transform 0.9s var(--ease) 1s; }
.hero-scroll { transition: opacity 1s var(--ease) 1.2s; }
.hero .spotlight { transition: opacity 1.5s var(--ease-soft) 0.25s, background 0.6s var(--ease-soft); }

html.preload .hero .fach { opacity: 0; transform: translateY(16px); }
html.preload .hero-name .line > span { transform: translateY(106%); }
html.preload .hero-tag { opacity: 0; transform: translateY(16px); }
html.preload .hero-actions { opacity: 0; transform: translateY(16px); }
html.preload .hero-scroll { opacity: 0; }
html.preload .hero .spotlight { opacity: 0; }

@keyframes scroll-run { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }
@keyframes mote-drift { from { transform: translateY(8px); } to { transform: translateY(-14px); } }

/* =========================================================== BILLBOARD ==== */
.billboard {
  background: var(--stage-3);
  border-block: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  overflow: hidden;
  padding-block: 0;
}
.billboard .bb-inner { display: flex; align-items: stretch; }
.billboard .bb-label {
  flex: none;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1.3rem clamp(1.35rem, 4vw, 3.25rem);
  background: var(--oxblood);
  font-family: var(--font-caps); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-hi);
  white-space: nowrap;
}
.billboard .bb-label .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-hi); box-shadow: 0 0 0 0 var(--gold); animation: pulse 2.4s ease-out infinite; }
.billboard .bb-track-wrap { overflow: hidden; flex: 1; display: flex; align-items: center; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.billboard .bb-track { display: flex; gap: 3.5rem; padding-inline: 2.5rem; white-space: nowrap; animation: marquee 34s linear infinite; }
.billboard:hover .bb-track { animation-play-state: paused; }
.billboard .bb-item { font-family: var(--font-body); font-size: 1.02rem; color: var(--ivory-dim); display: inline-flex; align-items: baseline; gap: 0.9rem; }
.billboard .bb-item .op { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--ivory); font-size: 1.14rem; }
.billboard .bb-item .sep { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 60%, transparent); } 70%, 100% { box-shadow: 0 0 0 9px transparent; } }
@media (max-width: 620px) { .billboard .bb-inner { flex-direction: column; } .billboard .bb-label { justify-content: center; } }

/* =========================================================== THE VOICE ==== */
.voice-spread { display: grid; grid-template-columns: 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
@media (min-width: 900px) { .voice-spread { grid-template-columns: 1.05fr 0.95fr; } }

.voice-statement { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.18; letter-spacing: -0.005em; }
.voice-statement .gold-word { font-style: italic; }

/* the register — presented as an engraved staff, not a dashboard bar */
.register { border-top: 1px solid color-mix(in srgb, var(--gold) 24%, transparent); }
.register .reg-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: baseline; padding-block: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--gold) 14%, transparent); }
.register .reg-figure { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--gold); }
.register .reg-figure sup { font-size: 0.4em; font-weight: 500; color: var(--ivory-dim); vertical-align: super; margin-left: 0.15em; }
.register .reg-name { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ivory); }
.register .reg-note { font-family: var(--font-body); font-size: 0.94rem; color: var(--ivory-dim); text-align: right; max-width: 22ch; justify-self: end; }
@media (max-width: 560px) { .register .reg-row { grid-template-columns: auto 1fr; } .register .reg-note { grid-column: 1 / -1; text-align: left; justify-self: start; margin-top: 0.2rem; } }

/* =========================================================== PULL QUOTE === */
.aria { position: relative; text-align: center; }
.aria .quote-mark { font-family: var(--font-display); font-size: clamp(6rem, 14vw, 12rem); line-height: 0.5; color: var(--gold); opacity: 0.55; display: block; height: 0.5em; }
.aria blockquote { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 1.28; letter-spacing: -0.01em; color: var(--gold-hi); max-width: 22ch; margin: clamp(1.5rem, 3vw, 2.5rem) auto 0; }
.aria cite { display: block; margin-top: clamp(1.6rem, 3vw, 2.4rem); font-family: var(--font-caps); font-style: normal; font-weight: 500; font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--gold-hi) 75%, var(--ivory)); }

/* curtain scallop valance — a literal opera object, used only above the aria */
.valance { display: block; width: 100%; height: clamp(28px, 5vw, 52px); color: var(--oxblood); }

/* =========================================================== CTA ========== */
.finale { text-align: center; }
.finale h2 { max-width: 18ch; margin-inline: auto; }
.finale .btn-row { margin-top: clamp(2rem, 4vw, 2.8rem); display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================== PROGRAMME ==== */
/* repertoire page as an opera programme, grouped into acts */
.programme-head { text-align: center; }
.programme-head .display-xl { margin-block: 1.2rem 1.4rem; }
.programme-head .lede { margin-inline: auto; text-align: center; }

.act { margin-top: clamp(3.5rem, 7vw, 6rem); }
.act-marker { display: flex; align-items: baseline; gap: 1.4rem; margin-bottom: 2.4rem; }
.act-marker .act-no { font-family: var(--font-caps); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.act-marker .act-title { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--ivory); }
.act-marker .act-line { flex: 1; height: 1px; background: linear-gradient(90deg, color-mix(in srgb, var(--gold) 40%, transparent), transparent); align-self: center; }

.playbill { border-top: 1px solid color-mix(in srgb, var(--gold) 16%, transparent); }
.role {
  display: grid;
  grid-template-columns: 3rem 1.6fr 1.2fr auto;
  gap: 1.5rem 2rem;
  align-items: baseline;
  padding-block: clamp(1.5rem, 3vw, 2.1rem);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 12%, transparent);
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.role::before { content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease); }
.role:hover { padding-left: 0.75rem; }
.role:hover::before { transform: scaleX(1); }
.role .role-idx { font-family: var(--font-caps); font-size: 0.82rem; letter-spacing: 0.1em; color: var(--gold-lo); }
.role .role-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.05; color: var(--ivory); }
.role .role-work { font-family: var(--font-body); color: var(--ivory-dim); }
.role .role-work .op { font-style: italic; color: color-mix(in srgb, var(--ivory) 88%, transparent); }
.role .role-house { font-family: var(--font-caps); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-align: right; white-space: nowrap; }
.role .role-house .yr { color: var(--ivory-dim); }
@media (max-width: 760px) {
  .role { grid-template-columns: 2.4rem 1fr; gap: 0.5rem 1.2rem; }
  .role .role-idx { grid-row: 1; }
  .role .role-name { grid-column: 2; }
  .role .role-work { grid-column: 2; }
  .role .role-house { grid-column: 2; text-align: left; margin-top: 0.3rem; }
}

/* =========================================================== ABOUT ======== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; } }

/* a framed portrait plate stands in for a photograph — gilt frame, name plate */
.portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(90% 70% at 50% 24%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 60%),
    linear-gradient(170deg, var(--stage-3), var(--oxblood) 130%);
  border: 1px solid var(--gold-lo);
  padding: 0.9rem;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8);
}
.portrait::before { content: ''; position: absolute; inset: 0.9rem; border: 1px solid color-mix(in srgb, var(--gold) 32%, transparent); pointer-events: none; }
.portrait .portrait-figure {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center;
}
.portrait .initials { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 14vw, 9rem); color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 0.9; }
.portrait .nameplate { font-family: var(--font-caps); font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.portrait .caption { position: absolute; bottom: 1.6rem; left: 0; right: 0; text-align: center; font-family: var(--font-body); font-style: italic; font-size: 0.86rem; color: var(--ivory-dim); }

.fach-card { border: 1px solid color-mix(in srgb, var(--gold) 26%, transparent); background: color-mix(in srgb, var(--gold) 6%, transparent); padding: 1.6rem 1.8rem; margin-top: 2.2rem; }
.fach-card .eyebrow { margin-bottom: 0.7rem; }
.fach-card p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ivory); }

.about-lead { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.28; color: var(--ivory); margin-bottom: 1.8rem; }

/* press */
.press-list { display: flex; flex-direction: column; }
.press-item { padding-block: clamp(1.6rem, 3vw, 2.4rem); border-top: 1px solid color-mix(in srgb, var(--gold) 14%, transparent); display: grid; grid-template-columns: auto 1fr; gap: 1.4rem 2rem; align-items: start; }
.press-list .press-item:last-child { border-bottom: 1px solid color-mix(in srgb, var(--gold) 14%, transparent); }
.press-item .pq { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 0.7; color: var(--gold); opacity: 0.6; }
.press-item p { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.32; color: var(--ivory); margin-bottom: 0.9rem; }
.press-item cite { font-family: var(--font-caps); font-style: normal; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 560px) { .press-item { grid-template-columns: 1fr; } .press-item .pq { display: none; } }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4.5rem); }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: flex; flex-direction: column; gap: 0.55rem; }
.form-row label { font-family: var(--font-caps); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.form-row input, .form-row select, .form-row textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  padding: 0.7rem 0.1rem; font-family: var(--font-body); font-size: 1.02rem; color: var(--ivory);
  transition: border-color 0.4s var(--ease);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: color-mix(in srgb, var(--ivory-dim) 60%, transparent); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row select { appearance: none; background: var(--stage); border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent); padding: 0.8rem 1rem; }
.form-row select option { background: var(--stage); }
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }

.contact-info { display: flex; flex-direction: column; gap: 2.2rem; }
.contact-block .eyebrow { margin-bottom: 0.8rem; }
.contact-block p, .contact-block a { font-family: var(--font-body); color: var(--ivory-dim); font-size: 1.02rem; }
.contact-block .lg { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--ivory); }
.contact-block a { color: var(--gold); border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent); transition: border-color 0.35s var(--ease); }
.contact-block a:hover { border-color: var(--gold); }

/* =========================================================== FOOTER ======= */
.site-footer { background: var(--stage-3); border-top: 1px solid color-mix(in srgb, var(--gold) 20%, transparent); padding-block: clamp(3.5rem, 7vw, 5rem) 2.4rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .brand-word { font-size: 1.7rem; }
.footer-tagline { font-family: var(--font-body); font-style: italic; color: var(--ivory-dim); margin-top: 1rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-caps); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col a { font-family: var(--font-body); font-size: 1rem; color: var(--ivory-dim); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--gold) 12%, transparent); font-family: var(--font-caps); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--ink-soft); color: color-mix(in srgb, var(--ivory-dim) 70%, transparent); }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; gap: 2.2rem; } }

/* =========================================================== DEMO BANNER == */
.demo-banner { background: var(--oxblood); color: var(--gold-hi); text-align: center; padding: 0.6rem 1rem; font-family: var(--font-caps); font-size: 0.76rem; letter-spacing: 0.08em; }
.demo-banner a { color: var(--ivory); border-bottom: 1px solid color-mix(in srgb, var(--gold) 50%, transparent); }
.demo-banner a:hover { color: var(--gold-hi); }
.framed .demo-banner { display: none; } /* hidden when shown as a portfolio preview */

/* interior page hero offset (non-home pages) */
.page-hero { padding-top: clamp(4rem, 8vw, 7rem); }

/* =========================================================== SMALL SCREENS */
@media (max-width: 560px) {
  .hero .fach { letter-spacing: 0.2em; font-size: 0.7rem; }
  .hero-name .line > span { font-size: clamp(3.4rem, 19vw, 5rem); }
  .hero-tag { font-size: 1.1rem; }
  .voice-statement { font-size: clamp(1.5rem, 6.4vw, 2rem); }
  .aria blockquote, .press-item p, .about-lead { overflow-wrap: break-word; }
  h1, h2, h3, .display-xl, .role .role-name { overflow-wrap: break-word; }
}

/* =========================================================== MOTION OFF === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  html.preload .hero .fach,
  html.preload .hero-tag,
  html.preload .hero-actions,
  html.preload .hero-scroll,
  html.preload .hero .spotlight { opacity: 1; }
  html.preload .hero-name .line > span { transform: none; }
  .billboard .bb-track { animation: none; }
}
