/* =====================================================================
   Микола Олофінський — premium dark-cinematic visit card
   Palette: deep graphite + antique gold + restrained oxblood
   Type: Playfair Display (display serif) / Manrope (sans)
   ===================================================================== */

:root {
  /* surfaces */
  --bg:          #0a0a0b;
  --bg-soft:     #101012;
  --panel:       #131316;
  --panel-2:     #17171b;
  --line:        rgba(232, 226, 214, 0.10);
  --line-strong: rgba(232, 226, 214, 0.18);

  /* ink */
  --ink:         #ECE8E0;
  --ink-dim:     #B6B0A6;
  --ink-mute:    #837D74;

  /* accents */
  --gold:        #C8A368;
  --gold-bright: #E6CB94;
  --gold-deep:   #9C7C44;
  --oxblood:     #6E2A2A;
  --oxblood-lo:  rgba(110, 42, 42, 0.22);

  --gold-grad: linear-gradient(135deg, #E6CB94 0%, #C8A368 45%, #9C7C44 100%);

  /* metrics */
  --maxw: 75rem;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* fluid type scale */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-body:    clamp(1rem, 0.96rem + 0.25vw, 1.12rem);
  --fs-lead:    clamp(1.18rem, 1.05rem + 0.7vw, 1.5rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  --fs-h2:      clamp(2rem, 1.3rem + 3vw, 3.6rem);
  --fs-hero:    clamp(3rem, 1.4rem + 7.5vw, 7.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px;
  /* Proportional root size: anchored to MacBook width (~1512px → 16px),
     scales the whole rem-based layout up on wider/larger displays so big
     monitors look like a zoomed-in version of the laptop view. */
  font-size: clamp(16px, 1.06vw, 52px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; line-height: 1.08; margin: 0; }
p { margin: 0 0 1.1em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #1a1206; }

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

.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------------------------------------- texture/grain */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------- scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--gold-grad); z-index: 1200;
  box-shadow: 0 0 12px rgba(200, 163, 104, 0.6);
}

/* =============================================================== HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.brand-text { font-family: "Manrope", sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.brand-emblem { width: 30px; height: 30px; display: inline-block; }
.brand-emblem svg { width: 100%; height: 100%; filter: drop-shadow(0 0 6px rgba(200,163,104,0.35)); }
.rune { fill: none; stroke: var(--gold); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }

.nav { margin-left: auto; }
.nav-list { display: flex; gap: clamp(1rem, 2.4vw, 2.4rem); list-style: none; margin: 0; padding: 0; }
.nav-list a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-dim);
  position: relative; padding: 0.4rem 0; transition: color 0.25s;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-list a:hover { color: var(--ink); }
.nav-list a:hover::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

/* ------------------------------------------------------------- buttons */
.btn {
  --pad-y: 0.85rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: "Manrope", sans-serif; font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.03em; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn-lg { --pad-y: 1.05rem; --pad-x: 2rem; font-size: 1rem; }

.btn-gold { background: var(--gold-grad); color: #1c1407; box-shadow: 0 10px 30px -12px rgba(200, 163, 104, 0.6); font-weight: 700; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(200, 163, 104, 0.75); }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-line { border-color: var(--line-strong); color: var(--ink); background: rgba(255,255,255,0.015); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(200,163,104,0.06); }

.btn-ghost { border-color: var(--line-strong); color: var(--ink); font-size: 0.84rem; padding: 0.6rem 1.2rem; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ----------------------------------------------------- mobile menu/nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 30px; height: 30px;
  background: none; border: none; cursor: pointer; padding: 0; margin-left: 0.25rem; z-index: 1001;
}
.nav-toggle span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8, 8, 9, 0.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
  padding: 2rem var(--gutter);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
.mobile-menu nav a {
  font-family: "Playfair Display", serif; font-size: clamp(1.6rem, 7vw, 2.4rem);
  color: var(--ink); padding: 0.35rem 0; border-bottom: 1px solid var(--line);
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-menu nav a:hover { color: var(--gold-bright); padding-left: 0.5rem; }
.mobile-cta { width: 100%; }

/* ================================================================= HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 7rem 0 4rem; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 120vw; height: 90vh;
  background:
    radial-gradient(40% 55% at 70% 30%, rgba(200, 163, 104, 0.14), transparent 70%),
    radial-gradient(45% 50% at 25% 60%, rgba(110, 42, 42, 0.18), transparent 72%);
  filter: blur(20px); pointer-events: none;
}
.hero-emblem-bg {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: min(60vw, 720px); aspect-ratio: 1; opacity: 0.05; pointer-events: none;
}
.hero-emblem-bg svg { width: 100%; height: 100%; }
.hero-emblem-bg .rune { stroke-width: 4.5; }

.hero-inner { position: relative; z-index: 2; max-width: 61rem; }

.eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 1.4rem;
  display: inline-flex; align-items: center;
}

.hero-title {
  font-size: var(--fs-hero); font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 1.6rem; text-wrap: balance;
}
.hero-lead {
  font-size: var(--fs-lead); color: var(--ink-dim); max-width: 40ch;
  font-weight: 300; line-height: 1.55; margin-bottom: 2.4rem;
}
.hero-motto {
  font-family: "Lora", Georgia, serif; font-style: italic; font-size: 0.98rem;
  color: var(--ink-dim); line-height: 1.5; margin: 0 0 1.8rem;
  padding-left: 1rem; border-left: 2px solid var(--gold-deep); max-width: 44ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: clamp(1.5rem, 5vw, 3.5rem);
  margin: 0; padding-top: 2rem; border-top: 1px solid var(--line); width: fit-content; max-width: 100%;
}
.stat dt { font-family: "Playfair Display", serif; font-size: clamp(1.5rem, 1rem + 1.8vw, 2.3rem); color: var(--gold-bright); line-height: 1; margin-bottom: 0.4rem; }
.stat dd { margin: 0; font-size: 0.82rem; color: var(--ink-mute); letter-spacing: 0.02em; max-width: 14ch; }

/* ====================================================== MEDIA MARQUEE */
.marquee-band { padding: 0.4rem 0; }
.marquee { max-width: 34rem; margin-inline: auto; border-block: 1px solid var(--line); padding: 0.3rem 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 1.4rem; width: max-content; line-height: 1; animation: marquee 50s linear infinite; }
.marquee-track span {
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap;
}
.marquee-track i { color: var(--gold-deep); font-style: normal; font-size: 0.5rem; opacity: 0.6; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================= SECTIONS */
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }

.section-index {
  font-family: "Manrope", sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.3em;
  color: var(--gold); display: inline-block; margin-bottom: 1rem;
}
.section-index::before { content: "—  "; color: var(--gold-deep); }

.section-title { font-size: var(--fs-h2); letter-spacing: -0.01em; text-wrap: balance; }

.section-head { max-width: 45rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-sub { font-size: var(--fs-lead); color: var(--ink-dim); font-weight: 300; margin-top: 1.2rem; line-height: 1.5; }

/* ================================================================ ABOUT */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.about-aside { position: sticky; top: 110px; }
.about-portrait { margin-top: 2rem; }
.portrait-frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(200,163,104,0.10), transparent 60%),
    linear-gradient(160deg, var(--panel-2), var(--bg));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem;
  overflow: hidden;
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.6); pointer-events: none; z-index: 1;
}
.portrait-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 42% center; transition: transform 0.7s var(--ease); }
.portrait-frame:hover img { transform: scale(1.04); }
.portrait-mono { font-family: "Playfair Display", serif; font-size: clamp(3rem, 9vw, 5rem); color: var(--gold); opacity: 0.85; letter-spacing: 0.05em; }
.portrait-caption { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); text-align: center; line-height: 1.6; }

.about-body .lead { font-family: "Lora", Georgia, serif; font-size: var(--fs-lead); color: var(--ink); font-weight: 500; line-height: 1.55; margin-bottom: 1.8rem; }
.about-body p { color: var(--ink-dim); }

.pullquote {
  margin: 2.5rem 0; padding: 1.4rem 0 1.4rem 1.8rem; border-left: 2px solid var(--gold);
  font-family: "Lora", Georgia, serif; font-weight: 500; font-size: clamp(1.2rem, 1rem + 0.9vw, 1.55rem);
  color: var(--ink); line-height: 1.5;
}

.cred-list { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cred-list li { background: var(--panel); padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 0.25rem; }
.cred-list strong { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.cred-list span { color: var(--ink-dim); font-size: 0.95rem; }

/* ================================================================ FOCUS */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.focus-card {
  position: relative; padding: 2rem 1.8rem 2.2rem; border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel), var(--bg-soft));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.focus-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.focus-card:hover { transform: translateY(-6px); }
.focus-card:hover::before { opacity: 1; }
.focus-num { font-family: "Playfair Display", serif; font-size: 1rem; color: var(--gold-deep); letter-spacing: 0.1em; display: block; margin-bottom: 1.2rem; }
.focus-card h3 { font-size: var(--fs-h3); margin-bottom: 0.8rem; line-height: 1.18; }
.focus-card p { color: var(--ink-dim); font-size: 0.96rem; margin: 0; }

/* =============================================================== DRAGON */
.dragon { background: var(--bg-soft); border-block: 1px solid var(--line); overflow: hidden; }
.dragon-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(200,163,104,0.10), transparent 70%),
    radial-gradient(60% 50% at 50% 110%, rgba(110,42,42,0.16), transparent 70%);
}
.dragon .container { position: relative; z-index: 2; }
.dragon-title { font-size: clamp(2.4rem, 1.4rem + 4.2vw, 4.6rem); }
.dragon-title::after {
  content: ""; display: block; width: 70px; height: 2px; margin: 1.4rem auto 0;
  background: var(--gold-grad);
}

.heads { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.head {
  position: relative; text-align: center; padding: 2.6rem 1.8rem 2.4rem;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23,23,27,0.7), rgba(10,10,11,0.4));
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.head:hover { transform: translateY(-8px); border-color: rgba(200,163,104,0.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8); }
.head-mark { width: 54px; height: 54px; margin: 0 auto 1.2rem; transition: transform 0.6s var(--ease); }
.head-mark svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(200,163,104,0.4)); }
.head:hover .head-mark { transform: scale(1.08); }
.head-roman { font-family: "Playfair Display", serif; font-size: 0.95rem; letter-spacing: 0.3em; text-indent: 0.3em; color: var(--gold-deep); display: block; margin-bottom: 0.5rem; }
.head h3 { font-size: var(--fs-h3); margin-bottom: 0.9rem; }
.head p { color: var(--ink-dim); font-size: 0.96rem; margin: 0; }

.dragon-foot {
  max-width: 40rem; margin: clamp(2.5rem,5vw,3.5rem) auto 0; text-align: center;
  font-family: "Lora", Georgia, serif; font-weight: 500;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem); color: var(--ink); line-height: 1.5;
}

/* =========================================================== QUOTE BAND */
.quote-band { padding: clamp(4rem, 9vw, 8rem) 0; text-align: center; position: relative; }
.big-quote {
  margin: 0; font-family: "Playfair Display", serif; font-weight: 500;
  font-size: clamp(1.6rem, 1rem + 3.5vw, 3.4rem); line-height: 1.22;
  letter-spacing: -0.01em; max-width: 18ch; margin-inline: auto; text-wrap: balance;
}

/* ============================================================== FORMATS */
.formats-list { border-top: 1px solid var(--line); }
.format-row {
  display: flex; align-items: center; gap: 2rem; justify-content: space-between;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.format-row:hover { padding-left: 1rem; }
.format-main { max-width: 70ch; }
.format-main h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; transition: color 0.3s; }
.format-row:hover .format-main h3 { color: var(--gold-bright); }
.format-main p { color: var(--ink-dim); margin: 0; font-size: 0.98rem; }
.format-tag {
  flex-shrink: 0; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 0.5rem 1.1rem; white-space: nowrap;
}

/* ============================================================ AUDIENCES */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.aud-item { background: var(--bg); padding: clamp(1.6rem, 3vw, 2.4rem); transition: background 0.4s; }
.aud-item:hover { background: var(--panel); }
.aud-item h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.aud-item p { color: var(--ink-mute); font-size: 0.92rem; margin: 0; }

/* ================================================================ MEDIA */
.media-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.media-col-title { font-size: 1.05rem; letter-spacing: 0.04em; padding-bottom: 1rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--gold-deep); color: var(--gold-bright); }
.media-listing { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.3rem; }
.media-listing li { display: flex; flex-direction: column; gap: 0.2rem; }
.media-listing strong { font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.media-listing span { color: var(--ink-mute); font-size: 0.9rem; }

/* ================================================================== FAQ */
.faq .faq-list { max-width: 51rem; display: grid; gap: 0.8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; transition: border-color 0.3s; }
.faq-item[open] { border-color: rgba(200, 163, 104, 0.35); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: "Playfair Display", serif; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-body { padding: 0 1.5rem 1.3rem; }
.faq-body p { margin: 0; color: var(--ink-dim); font-size: 0.98rem; }

/* ============================================================== CONTACT */
.contact { text-align: center; overflow: hidden; border-top: 1px solid var(--line); background: var(--bg-soft); }
.contact-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(45% 60% at 50% 30%, rgba(200,163,104,0.13), transparent 70%);
}
.contact-inner { position: relative; z-index: 2; max-width: 47.5rem; }
.contact-inner .eyebrow { justify-content: center; }
.contact-inner .eyebrow::before { display: none; }
.contact-title { font-size: clamp(2.2rem, 1.4rem + 3.5vw, 4rem); margin-bottom: 1.4rem; text-wrap: balance; }
.contact-lead { font-size: var(--fs-lead); color: var(--ink-dim); font-weight: 300; max-width: 52ch; margin: 0 auto 2.6rem; line-height: 1.55; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.contact-note { font-size: 0.86rem; color: var(--ink-mute); max-width: 46ch; margin-inline: auto; }

/* =============================================================== FOOTER */
.site-footer { border-top: 1px solid var(--line); padding: 3.5rem 0 2.5rem; background: var(--bg); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.footer-brand .brand-emblem { width: 40px; height: 40px; }
.footer-name { font-family: "Playfair Display", serif; font-size: 1.3rem; margin: 0; }
.footer-role { margin: 0.2rem 0 0; font-size: 0.85rem; color: var(--ink-mute); }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.88rem; color: var(--ink-dim); letter-spacing: 0.03em; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: center; text-align: center; padding-top: 1.8rem; }
.footer-bottom p { margin: 0; font-size: 0.78rem; color: var(--ink-mute); letter-spacing: 0.02em; }

/* ============================================================== REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
/* stagger children in grids */
.focus-grid .reveal.in,
.heads .reveal.in,
.aud-grid .reveal.in { transition-delay: var(--d, 0s); }

/* Large screens are handled by the proportional `html` font-size above —
   the whole rem-based layout scales up to fill big / high-density displays. */

/* ========================================================== RESPONSIVE */
@media (max-width: 980px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .about-portrait { max-width: 320px; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .heads { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .media-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.5rem; }
  .stat dd { max-width: none; }
  .focus-grid { grid-template-columns: 1fr; }
  .cred-list { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .format-row { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .format-row:hover { padding-left: 0; }
  .hero-actions .btn { width: 100%; }
}
