
:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --panel: #151519;
  --panel-soft: #1a1a1f;
  --text: #ece3d4;
  --muted: #b8aa98;
  --soft: #8f8478;
  --gold: #c9a84c;
  --gold-2: #e3c87d;
  --line: rgba(201, 168, 76, 0.2);
  --line-soft: rgba(255,255,255,0.06);
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --container: min(1180px, calc(100vw - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 168, 76, 0.10), transparent 22%),
    radial-gradient(circle at 10% 75%, rgba(201, 168, 76, 0.05), transparent 18%),
    linear-gradient(180deg, #0a0a0c 0%, #0d0d10 100%);
  color: var(--text);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: var(--gold);
  color: #111;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}
html.js .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
html.js .reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: #111;
  padding: .72rem 1rem;
  text-decoration: none;
  z-index: 300;
  border-radius: 4px;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 12, 0.7);
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.container { width: var(--container); margin: 0 auto; }
.nav {
  width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-2);
  font-size: clamp(1rem, .7rem + .7vw, 1.22rem);
  transition: color .22s ease, opacity .22s ease, transform .22s ease;
}
.brand:hover {
  color: #f0d89d;
  transform: translateY(-1px);
}
.nav-links,
.lang-switch,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.5rem);
}
.nav-links a,
.lang-switch a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  transition: color .22s ease;
}
.nav-links a::after,
.lang-switch a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.38rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: .8;
  transition: transform .24s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.lang-switch a:hover::after,
.lang-switch a:focus-visible::after,
.lang-switch a[aria-current='page']::after {
  transform: scaleX(1);
}
.nav-links a:hover,
.lang-switch a:hover,
.lang-switch a[aria-current='page'] {
  color: var(--gold-2);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  border-radius: 6px;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(201,168,76,.08);
  color: #f0d89d;
}
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
  background: rgba(21, 21, 25, 0.98);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease, padding .22s ease, margin .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.mobile-menu[data-open='true'] {
  opacity: 1;
  max-height: 26rem;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  margin: 0 auto 1rem;
  padding: 1rem;
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.mobile-menu a {
  display: block;
  padding: .95rem .15rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
}
.mobile-menu a:last-child { border-bottom: 0; }
.hero {
  position: relative;
  padding: clamp(2.8rem, 4vw, 4rem) 0 clamp(4.5rem, 8vw, 7rem);
}
.hero::before {
  content: '';
  position: absolute;
  left: 52%;
  top: 0;
  bottom: 5rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.18), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: clamp(1.6rem, 4vw, 4.2rem);
  align-items: end;
}
.hero-copy {
  padding-top: clamp(2rem, 6vw, 7rem);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
}
.kicker::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(4rem, 10.4vw, 8.4rem);
  line-height: .9;
  letter-spacing: -.04em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}
.hero-deck {
  max-width: 58ch;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, .9rem + .45vw, 1.18rem);
}
.role-line {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.1rem;
  margin-top: 1.5rem;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .73rem;
}
.role-line span {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}
.role-line span:not(:last-child)::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.6);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  border-radius: 4px;
  transition: transform .2s cubic-bezier(.22,1,.36,1), background .2s ease, border-color .2s ease, color .2s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
  font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.28), 0 0 12px rgba(201, 168, 76, 0.16);
}
.btn-secondary {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(201, 168, 76, 0.45);
  font-weight: 600;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 2rem;
}
.meta-card {
  border-top: 1px solid var(--line);
  padding-top: .8rem;
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
}
.meta-card:hover {
  transform: translateY(-2px);
  border-top-color: rgba(201,168,76,.42);
}
.meta-card strong {
  display: block;
  color: var(--text);
  font-size: .94rem;
  font-weight: 600;
  margin-bottom: .2rem;
}
.meta-card span {
  color: var(--soft);
  font-size: .85rem;
}
.hero-aside {
  position: relative;
}
.hero-figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .24s ease, box-shadow .3s ease;
}
.hero-figure:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,.28);
  box-shadow: 0 30px 66px rgba(0,0,0,.32);
}
.hero-figure::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,.82));
}
.hero-media {
  aspect-ratio: 4 / 5;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 20%;
  transition: transform .75s cubic-bezier(.22,1,.36,1), filter .45s ease;
}
.hero-figure:hover .hero-media img {
  transform: scale(1.016);
  filter: saturate(1.015) contrast(1.015);
}
.figure-caption {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.05rem;
  z-index: 2;
}
.figure-caption strong {
  display: block;
  font-size: .82rem;
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.figure-caption span {
  display: block;
  margin-top: .35rem;
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.32rem;
}
.hero-quote {
  margin-top: 1.15rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}
.hero-quote blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.18rem, 1rem + .8vw, 1.55rem);
  line-height: 1.2;
}
.hero-quote cite {
  display: block;
  margin-top: .55rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-style: normal;
}
.section {
  padding: clamp(3.8rem, 7vw, 6.5rem) 0;
}
#about.section {
  padding-top: clamp(2.9rem, 5.2vw, 4.6rem);
}
.section + .section {
  border-top: 1px solid rgba(255,255,255,0.04);
}
.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}
.section-head::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(201,168,76,.28), transparent);
}
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .74rem;
  white-space: nowrap;
}
.about-grid,
.tour-grid,
.contact-grid,
.stage-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(1.1rem, 3vw, 2rem);
}
.stage-grid {
  align-items: center;
}
.intro-panel,
.info-card,
.card,
.feature-panel,
.venue-panel,
.contact-panel,
.press-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.intro-panel {
  padding: clamp(1.25rem, 2.5vw, 1.9rem);
}
.intro-panel .lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--text);
}
.bio p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}
.bio p:last-child { margin-bottom: 0; }
.bio strong { color: var(--text); }
.info-stack,
.contact-stack {
  display: grid;
  gap: 1rem;
}
.info-card {
  padding: 1.2rem 1.2rem 1.1rem;
}
.info-card h3 {
  margin: 0 0 .7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
}
.info-card p,
.info-card li {
  color: var(--muted);
}
.info-card ul {
  margin: 0;
  padding-left: 1rem;
}
.info-card li + li { margin-top: .35rem; }
.stage-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .24s ease, box-shadow .3s ease;
}
.stage-media:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,.28);
  box-shadow: 0 30px 66px rgba(0,0,0,.3);
}
.stage-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 64% 36%;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .45s ease;
}
.stage-media:hover img {
  transform: scale(1.018);
  filter: saturate(1.015) contrast(1.015);
}
.stage-copy {
  display: grid;
  align-content: center;
  gap: .95rem;
}
.stage-copy h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.15rem);
  font-weight: 500;
  line-height: .98;
}
.stage-copy p {
  margin: 0;
  color: var(--muted);
}
.stage-note {
  margin-top: .25rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}
.stage-note span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
}
.stage-note strong {
  display: block;
  margin-top: .28rem;
  color: var(--text);
  font-size: .96rem;
}
.stats-grid,
.cards,
.press-grid {
  display: grid;
  gap: 1rem;
}
.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}
.stat {
  border-top: 1px solid var(--line);
  padding-top: .8rem;
}
.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  line-height: 1;
  color: var(--gold-2);
}
.stat span {
  display: block;
  margin-top: .4rem;
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.cards {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  padding: 1.3rem;
  transition: transform .24s cubic-bezier(.22,1,.36,1), border-color .22s ease, background .22s ease, box-shadow .24s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.036), rgba(255,255,255,.014));
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.card .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
}
.card h3 {
  margin: .6rem 0 .38rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 1.45rem + 1vw, 2.35rem);
  font-weight: 500;
  line-height: 1.02;
}
.card .since {
  color: var(--soft);
  font-size: .82rem;
  margin-bottom: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.feature-panel,
.venue-panel,
.contact-panel {
  padding: clamp(1.25rem, 2.8vw, 1.8rem);
}
.eyebrow-lite {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
}
.feature-panel h3,
.contact-panel h2 {
  margin: .55rem 0 .8rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: .98;
}
.feature-panel h3 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
}
.contact-panel h2 {
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3.1rem);
}
.feature-panel p,
.contact-panel p,
.venue-panel p {
  color: var(--muted);
  margin: 0;
}
.venue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem 1rem;
  margin-top: 1rem;
}
.venue {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: .7rem;
}
.venue strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .2rem;
}
.venue span {
  color: var(--soft);
  font-size: .84rem;
}
.press-grid {
  grid-template-columns: repeat(3, 1fr);
}
.press-card {
  padding: 1.35rem;
  text-decoration: none;
  transition: transform .22s cubic-bezier(.22,1,.36,1), border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.press-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.036), rgba(255,255,255,.014));
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.press-card blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 1.05rem + .9vw, 1.7rem);
  line-height: 1.16;
}
.press-card .source {
  margin-top: 1rem;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
}
.contact-panel {
  background: linear-gradient(180deg, rgba(201,168,76,.08), rgba(255,255,255,.02));
  border-color: var(--line);
}
.contact-copy p {
  max-width: 48ch;
}
.contact-list {
  display: grid;
  gap: .8rem;
}
.contact-item {
  display: block;
  padding: .95rem 1rem;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  background: rgba(10,10,12,.28);
  text-decoration: none;
  transition: transform .22s cubic-bezier(.22,1,.36,1), border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.contact-item:hover {
  transform: translateY(-1px);
  border-color: rgba(201,168,76,.18);
  background: rgba(16,16,20,.38);
  box-shadow: 0 10px 22px rgba(0,0,0,.1);
}
.contact-item span {
  display: block;
  margin-bottom: .28rem;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
}
.contact-item strong {
  display: block;
  font-size: .98rem;
  color: var(--text);
}
.immersive-break {
  position: relative;
  margin: clamp(1rem, 3vw, 2rem) 0;
}
.immersive-media {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
  min-height: clamp(460px, 72vw, 820px);
  background: #060608;
  --media-scale: 1.01;
}
.immersive-media::before,
.immersive-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.immersive-media::before {
  top: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(10,10,12,1), rgba(10,10,12,0));
}
.immersive-media::after {
  bottom: 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(10,10,12,0), rgba(10,10,12,1));
}
.immersive-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(460px, 72vw, 820px);
  object-fit: cover;
  object-position: center 24%;
  transform: scale(var(--media-scale));
  transform-origin: center center;
  transition: transform .42s ease-out, filter .28s ease-out;
  filter: saturate(.92) contrast(1.03) brightness(.88);
}
.immersive-media:hover img {
  filter: saturate(.95) contrast(1.035) brightness(.895);
}
.site-footer {
  padding: 2rem 0 3rem;
}
.footer-row {
  width: var(--container);
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--soft);
  font-size: .88rem;
}
.reveal {
  opacity: 1;
  filter: none;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  filter: none;
  transform: none;
}
html.js .hero-copy .kicker,
html.js .hero-copy h1,
html.js .hero-copy .hero-deck,
html.js .hero-copy .role-line,
html.js .hero-copy .cta-row,
html.js .hero-aside .hero-quote {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.22,1,.36,1);
}
html.js .hero-copy.visible .kicker { opacity: 1; transform: translateY(0); transition-delay: .06s; }
html.js .hero-copy.visible h1 { opacity: 1; transform: translateY(0); transition-delay: .14s; }
html.js .hero-copy.visible .hero-deck { opacity: 1; transform: translateY(0); transition-delay: .22s; }
html.js .hero-copy.visible .role-line { opacity: 1; transform: translateY(0); transition-delay: .3s; }
html.js .hero-copy.visible .cta-row { opacity: 1; transform: translateY(0); transition-delay: .38s; }
html.js .hero-aside.visible .hero-quote { opacity: 1; transform: translateY(0); transition-delay: .28s; }
@media (max-width: 1024px) {
  .about-grid,
  .tour-grid,
  .contact-grid,
  .stage-grid,
  .hero-grid { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-copy { padding-top: 1.2rem; }
  .press-grid,
  .cards,
  .venue-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stage-media img { aspect-ratio: 4 / 3; }
}
@media (max-width: 860px) {
  .nav-links,
  .lang-switch.desktop { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu { display: block; }
  .hero-meta { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { min-height: 72px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
  .immersive-media,
  .immersive-media img { min-height: 62vh; }
  .immersive-media img { object-position: center 18%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; filter: none; transform: none; }
  .immersive-media { --media-scale: 1; }
}
