@font-face {
  font-family: "Alumni Sans";
  src: url("../fonts/alumni-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Alumni Sans";
  src: url("../fonts/alumni-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0400-04FF, U+2116;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F;
}

:root {
  --black: #050505;
  --ink: #090909;
  --panel: #0f0f0f;
  --paper: #e9e9e7;
  --muted: #929292;
  --line: rgba(255,255,255,.16);
  --red: #a51c1c;
  --red-bright: #cf2929;
  --display: "Alumni Sans", "Arial Narrow", sans-serif;
  --sans: "Manrope", Arial, sans-serif;
  --gutter: clamp(24px, 5.4vw, 96px);
  --scene-space: clamp(82px, 7vw, 124px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; background: var(--black); }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--paper);
  background: var(--black);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }

:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-170%);
  color: #fff;
  background: #981616;
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 174px 1fr auto;
  align-items: center;
  gap: 22px;
  height: calc(90px + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) var(--gutter) 0;
  background: linear-gradient(180deg, rgba(0,0,0,.54), transparent);
  transition: height .28s ease, background .28s ease, border-color .28s ease;
}
.site-header.is-scrolled {
  position: fixed;
  height: calc(72px + env(safe-area-inset-top));
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(5,5,5,.86);
  backdrop-filter: blur(14px);
}
.brand {
  position: relative;
  z-index: 2;
  align-self: start;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  margin-top: 6px;
  transform: translateX(-55px);
  overflow: hidden;
}
.brand img { width: 160px; height: 160px; object-fit: contain; }
.site-header.is-scrolled .brand,
.site-header.is-scrolled .brand img { width: 78px; height: 78px; }
.site-header.is-scrolled .brand { align-self: center; margin-top: 0; transform: none; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.7vw, 34px);
}
.desktop-nav a {
  position: relative;
  display: grid;
  min-height: 46px;
  place-items: center;
  color: #d1d1d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: #7f1818;
  transition: transform .25s ease;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active { color: #fff; }
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.socials { display: flex; gap: 20px; padding-right: 8px; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.socials a { display: grid; min-width: 32px; min-height: 46px; place-items: center; transition: color .2s ease; }
.socials a:hover, .socials a:focus-visible { color: #ef4545; }

.menu-toggle {
  position: relative;
  z-index: 61;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 8px;
  width: 32px;
  height: 1px;
  background: #e9e9e7;
  transition: top .25s ease, transform .25s ease;
}
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 29px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(104px + env(safe-area-inset-top)) 24px calc(28px + env(safe-area-inset-bottom));
  visibility: hidden;
  transform: translateY(-100%);
  background: #080808;
  transition: transform .45s cubic-bezier(.77,0,.18,1), visibility .45s;
}
.mobile-menu.is-open { visibility: visible; transform: none; }
.mobile-menu nav { display: grid; align-content: center; }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  min-height: 48px;
  padding: .02em 0;
  font-family: var(--display);
  font-size: clamp(42px, 10.4vw, 68px);
  font-weight: 650;
  line-height: .92;
  text-transform: uppercase;
}
.mobile-menu nav a span { width: 42px; color: #777; font: 10px var(--sans); }
.mobile-socials { display: flex; gap: 10px; border-top: 1px solid var(--line); padding-top: 18px; }
.mobile-socials a {
  display: grid;
  min-width: 72px;
  min-height: 48px;
  place-items: center;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  height: clamp(760px, 96svh, 1080px);
  min-height: 720px;
  overflow: hidden;
  background: #050505;
}
.hero-media,
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -1; }
.hero-media img { object-fit: cover; object-position: center center; }
.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.02) 23%, rgba(0,0,0,.03) 58%, rgba(0,0,0,.88) 100%),
    radial-gradient(ellipse at 50% 45%, transparent 48%, rgba(0,0,0,.10) 100%);
}
.hero-content {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: clamp(42px, 5.4vw, 78px);
  left: var(--gutter);
  text-align: center;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(150px, 15.6vw, 270px);
  font-weight: 800;
  line-height: .67;
  letter-spacing: -.035em;
  text-shadow: 0 5px 28px rgba(0,0,0,.42);
}
.hero-genre {
  margin: clamp(18px, 2vw, 28px) 0 22px;
  color: #e3e3e3;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-red { border-color: #8e1818; background: rgba(91,12,12,.58); }
.button-red:hover, .button-red:focus-visible { border-color: var(--red-bright); background: rgba(132,18,18,.72); }
.button-ghost { background: rgba(5,5,5,.24); backdrop-filter: blur(5px); }
.button-ghost:hover, .button-ghost:focus-visible { color: #fff; background: #151515; }

.hero-scroll {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8b8b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll i { width: 42px; height: 1px; background: #aaa; }

.scene { padding: var(--scene-space) var(--gutter); }
.section-head { max-width: 1100px; }
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(22px, 3vw, 40px);
  color: #b0b0b0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-label span { color: var(--red-bright); }
.section-head h2,
.live-stage h2 {
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 148px);
  font-weight: 750;
  line-height: .76;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.concerts { border-top: 1px solid #171717; background: #050505; color: var(--paper); }
.concerts .section-label { color: #989896; }
.concerts .section-label span { color: #981616; }
.concert-empty {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1640px;
  min-height: 158px;
  margin-top: clamp(60px, 7vw, 108px);
  padding: 28px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.concert-empty p,
.concert-empty span { color: #989896; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.concert-empty strong {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 700;
  line-height: .9;
  text-transform: uppercase;
}

.media-scene { overflow: hidden; background: var(--ink); }
.media-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(42px, 5vw, 68px);
}
.media-tabs { display: flex; gap: 4px; padding-bottom: 4px; }
.media-tab {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid #444;
  color: #858585;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}
.media-tab:hover, .media-tab:focus-visible, .media-tab.is-active { color: #fff; border-bottom-color: var(--red-bright); }
.media-track {
  display: grid;
  grid-auto-columns: minmax(340px, 31vw);
  grid-auto-flow: column;
  gap: clamp(18px, 2.2vw, 38px);
  margin-right: calc(var(--gutter) * -1);
  padding-right: var(--gutter);
  padding-bottom: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-color: #8a1d1d #252525;
  scrollbar-width: thin;
}
.media-track::-webkit-scrollbar { height: 3px; }
.media-track::-webkit-scrollbar-track { background: #252525; }
.media-track::-webkit-scrollbar-thumb { background: #8a1d1d; }
.media-card { scroll-snap-align: start; }
.media-card-featured { grid-column: span 1; }
.media-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #151515;
  cursor: pointer;
}
.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.media-card:hover .media-image img, .media-image:focus-visible img { transform: scale(1.025); }
.media-copy { padding: 24px 0 0; }
.media-copy > p, .news-copy > p {
  margin-bottom: 10px;
  color: #8e8e8e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.media-copy h3 {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 700;
  line-height: .9;
  text-transform: uppercase;
}
.service-links { display: grid; margin-top: 22px; }
.service-links a, .text-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #2f2f2f;
  color: #d6d6d6;
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .05em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, padding .2s ease;
}
.service-links a:hover, .service-links a:focus-visible, .text-action:hover, .text-action:focus-visible { padding-left: 8px; color: #fff; }
.text-action { max-width: 240px; margin-top: 18px; }
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(64px, 6vw, 92px);
  height: clamp(64px, 6vw, 92px);
  place-items: center;
  padding-left: 4px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(4px);
  font-size: 20px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.media-video:hover .play, .media-video:focus-visible .play { color: #fff; transform: translate(-50%, -50%) scale(1.05); background: #981616; }
.swipe-hint { display: none; }

.live-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(520px, 68svh, 780px);
  place-items: end start;
  overflow: hidden;
  background: #090909;
}
.live-stage::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.12) 60%), linear-gradient(0deg, rgba(0,0,0,.7), transparent 55%);
}
.live-stage > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s ease;
}
.live-stage:hover > img { transform: scale(1.025); }
.live-stage-copy { padding: var(--scene-space) var(--gutter); }
.live-action {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 50px;
  margin-top: 28px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #981616;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap .2s ease, color .2s ease;
}
.live-action:hover, .live-action:focus-visible { gap: 38px; color: #ef4545; }

.news-scene { border-top: 1px solid #171717; background: #050505; color: var(--paper); }
.news-scene .section-label { color: #989896; }
.news-head { margin-bottom: clamp(62px, 7vw, 108px); }
.news-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .85fr); gap: clamp(28px, 4vw, 70px); }
.news-secondary { display: grid; gap: clamp(46px, 5vw, 80px); }
.news-image { display: block; overflow: hidden; background: #121212; }
.news-featured .news-image { aspect-ratio: 16 / 11; }
.news-secondary .news-image { aspect-ratio: 16 / 9; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.news-image:hover img, .news-image:focus-visible img { transform: scale(1.025); }
.news-copy { padding-top: 22px; }
.news-copy > p { color: #989896; }
.news-copy h3 {
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 70px);
  font-weight: 700;
  line-height: .88;
  text-transform: uppercase;
}
.news-secondary .news-copy h3 { font-size: clamp(34px, 3.1vw, 50px); }
.news-copy > a {
  display: inline-flex;
  gap: 18px;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #3a3a3a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: gap .2s ease, border-color .2s ease;
}
.news-copy > a:hover, .news-copy > a:focus-visible { gap: 25px; border-color: var(--red); }

.footer { padding: clamp(80px, 8vw, 130px) var(--gutter) calc(30px + env(safe-area-inset-bottom)); background: #080808; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(190px, 270px) 1fr minmax(180px, auto);
  align-items: start;
  gap: clamp(36px, 6vw, 100px);
}
.footer-brand { display: block; width: clamp(180px, 18vw, 270px); aspect-ratio: 1; overflow: hidden; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer nav { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 4px 28px; }
.footer nav a, .footer-socials a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}
.footer nav a:hover, .footer nav a:focus-visible, .footer-socials a:hover, .footer-socials a:focus-visible { color: #ef4545; }
.footer-socials { display: grid; }
.footer-socials a { justify-content: space-between; gap: 24px; border-bottom: 1px solid #292929; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(58px, 7vw, 100px);
  padding-top: 22px;
  border-top: 1px solid #292929;
  color: #777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-dialog {
  position: relative;
  width: min(680px, calc(100% - 32px));
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid #333;
  color: #fff;
  background: #111;
}
.video-dialog::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(6px); }
.video-dialog h2 { font-family: var(--display); font-size: clamp(50px, 8vw, 78px); line-height: .82; text-transform: uppercase; }
.video-dialog > p:last-child { max-width: 440px; margin-top: 24px; color: #aaa; line-height: 1.7; }
.dialog-close { position: absolute; top: 12px; right: 16px; width: 48px; height: 48px; border: 0; background: none; font-size: 34px; cursor: pointer; }

.has-js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.has-js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1600px) {
  .site-header { grid-template-columns: 144px 1fr auto; }
  .brand, .brand img { width: 130px; height: 130px; }
  .brand { transform: translateX(-74px); }
  .desktop-nav { gap: 20px; }
}

@media (max-width: 1220px) {
  .site-header { grid-template-columns: 124px 1fr auto; gap: 14px; }
  .brand, .brand img { width: 110px; height: 110px; }
  .brand { transform: translateX(-10px); }
  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img { width: 84px; height: 84px; }
  .desktop-nav { gap: 13px; }
  .desktop-nav a { font-size: 10.5px; }
  .socials { gap: 8px; }
  .hero-scroll { display: none; }
}

@media (max-width: 980px) {
  .desktop-nav, .socials { display: none; }
  .site-header { grid-template-columns: 1fr auto; height: calc(78px + env(safe-area-inset-top)); padding-right: 24px; padding-left: 24px; }
  .brand, .brand img { width: 116px; height: 116px; }
  .brand { transform: translateX(-6px); }
  .site-header.is-scrolled { height: calc(68px + env(safe-area-inset-top)); }
  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img { width: 82px; height: 82px; }
  .menu-toggle { display: block; }
  .media-track { grid-auto-columns: minmax(360px, 62vw); }
  .footer-main { grid-template-columns: 190px 1fr; }
  .footer-socials { grid-column: 2; }
}

@media (max-width: 800px) {
  :root { --gutter: 20px; --scene-space: clamp(58px, 14vw, 76px); }
  html { scroll-padding-top: 72px; }
  .site-header { height: calc(72px + env(safe-area-inset-top)); padding-right: 18px; padding-left: 20px; }
  .brand, .brand img { width: 112px; height: 112px; }
  .brand { margin-top: 6px; transform: none; }
  .site-header.is-scrolled { height: calc(64px + env(safe-area-inset-top)); }
  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img { width: 76px; height: 76px; }

  .hero { height: clamp(660px, 88svh, 820px); min-height: 660px; }
  .hero-media img {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    transform: none;
    object-fit: cover;
    object-position: 60% center;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.03) 32%, rgba(0,0,0,.18) 57%, rgba(0,0,0,.94) 100%),
      radial-gradient(ellipse at 60% 42%, transparent 40%, rgba(0,0,0,.14) 100%);
  }
  .hero-content { right: 18px; bottom: calc(26px + env(safe-area-inset-bottom)); left: 18px; }
  .hero h1 { font-size: clamp(88px, 28vw, 122px); line-height: .7; }
  .hero-genre { margin: 16px 0 18px; font-size: 15px; letter-spacing: .15em; }
  .hero-actions { gap: 8px; }
  .button { flex: 1; min-width: 0; min-height: 52px; padding: 0 16px; font-size: 11px; }

  .section-label { margin-bottom: 20px; }
  .section-head h2, .live-stage h2 { font-size: clamp(64px, 19vw, 96px); line-height: .78; }
  .concerts { padding-top: 64px; padding-bottom: 64px; }
  .concert-empty {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    margin-top: 32px;
    padding: 24px 0;
  }
  .concert-empty strong { font-size: clamp(45px, 14vw, 64px); }

  .media-heading { display: block; margin-bottom: 34px; }
  .media-tabs { margin-top: 24px; overflow-x: auto; }
  .media-tab { flex: 1; min-width: 96px; padding: 0 12px; }
  .media-track {
    grid-auto-columns: 88vw;
    gap: 14px;
    margin-right: -20px;
    padding-right: 20px;
  }
  .media-copy { padding-top: 18px; }
  .media-copy h3 { font-size: clamp(43px, 13vw, 60px); }
  .service-links a, .text-action { min-height: 52px; }
  .swipe-hint { display: flex; justify-content: space-between; margin-top: 18px; color: #777; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

  .live-stage { min-height: clamp(500px, 66svh, 640px); }
  .live-stage::after { background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.08) 72%); }
  .live-stage > img { object-position: 48% center; }
  .live-stage-copy { width: 100%; padding: 58px 20px calc(38px + env(safe-area-inset-bottom)); }

  .news-layout { grid-template-columns: 1fr; gap: 48px; }
  .news-secondary { gap: 44px; }
  .news-featured .news-image, .news-secondary .news-image { aspect-ratio: 16 / 10; }
  .news-copy { padding-top: 18px; }
  .news-copy h3, .news-secondary .news-copy h3 { font-size: clamp(42px, 13vw, 62px); }

  .footer { padding-top: 64px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { width: 190px; }
  .footer nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-socials { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 10px; }
}

@media (max-width: 430px) {
  .mobile-menu { padding-right: 20px; padding-left: 20px; }
  .mobile-menu nav a { font-size: clamp(40px, 12vw, 54px); }
  .mobile-menu nav a span { width: 36px; }
}

@media (max-width: 370px) {
  .hero { min-height: 650px; }
  .hero h1 { font-size: 27vw; }
  .hero-actions { flex-direction: column; }
  .button { flex: none; width: 100%; min-height: 48px; }
  .mobile-menu nav a { min-height: 46px; font-size: 11.5vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .has-js [data-reveal] { opacity: 1; transform: none; }
}

/* Core content remains visible without JavaScript. */
body, main, .site-header, .hero, .hero-content, .hero-media, .scene, .footer { visibility: visible; }
