:root {
  color-scheme: light dark;
  --green-980: #031109;
  --green-950: #06170d;
  --green-920: #081f12;
  --green-900: #0d2718;
  --green-820: #153822;
  --green-720: #1f5d39;
  --green-520: #3d8d55;
  --leaf: #75b95a;
  --red: #d6292f;
  --red-700: #b91f29;
  --gold: #d8a73a;
  --ink: #0e1511;
  --ink-2: #26312b;
  --muted: #64716a;
  --paper: #ffffff;
  --paper-2: #f5f8f6;
  --mist: #eaf2ed;
  --line: color-mix(in srgb, var(--ink) 12%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 18%, transparent);
  --line-light: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 14px 34px rgba(3, 17, 9, 0.16);
  --shadow-md: 0 24px 70px rgba(3, 17, 9, 0.26);
  --shadow-red: 0 18px 46px rgba(214, 41, 47, 0.3);
  --container: 1188px;
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--green-950);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--green-950) 0 760px, var(--paper) 760px),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 84%, white);
  outline-offset: 3px;
}

::selection {
  background: rgba(214, 41, 47, 0.28);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  box-shadow: 0 0 22px rgba(214, 41, 47, 0.4);
  transform-origin: left;
  pointer-events: none;
}

.content-grid {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-dark {
  background: var(--green-950);
  color: #fff;
}

.section-light {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper-2) 44%, var(--mist) 100%);
}

[id] {
  scroll-margin-top: 108px;
}

.site-header {
  position: fixed;
  inset: 16px 24px auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin-inline: auto;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(5, 20, 11, 0.72);
  color: #fff;
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 22%, transparent 76%, rgba(255, 255, 255, 0.1));
  opacity: 0.7;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 246, 0.88)),
    rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: rgba(14, 21, 17, 0.1);
  box-shadow: 0 18px 54px rgba(7, 25, 15, 0.12);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: #fff;
  object-fit: contain;
  padding: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 13px;
  color: currentColor;
  opacity: 0.9;
  transition:
    background 180ms var(--ease),
    opacity 180ms var(--ease),
    transform 180ms var(--ease);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.13);
  opacity: 1;
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(13, 39, 24, 0.08);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: linear-gradient(180deg, #e33339, var(--red));
  color: #fff;
  opacity: 1;
  box-shadow: 0 10px 26px rgba(214, 41, 47, 0.28);
}

.site-nav .nav-cta:hover {
  background: linear-gradient(180deg, #dc2e35, var(--red-700));
}

.nav-toggle {
  position: relative;
  z-index: 1;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: currentColor;
  transition: transform 180ms var(--ease);
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 122px 0 26px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  top: 0;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(216, 167, 58, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 70%);
}

.hero::after {
  bottom: -1px;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(3, 17, 9, 0.88));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.94) contrast(1.1);
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(3, 17, 9, 0.98) 0%, rgba(6, 23, 13, 0.94) 36%, rgba(6, 23, 13, 0.62) 66%, rgba(3, 17, 9, 0.68) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 128px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(56px, 6.2vw, 84px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--radius);
  padding: 14px 19px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    var(--red-700);
}

.btn-ghost {
  border: 1px solid var(--line-light);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stage {
  position: relative;
  min-height: 470px;
  perspective: 1000px;
}

.photo-layer {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
  will-change: transform;
}

.photo-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.photo-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layer-large {
  inset: 18px 0 auto auto;
  width: 79%;
  aspect-ratio: 16 / 9.8;
  transform: rotate(0.5deg);
}

.layer-one {
  left: 0;
  bottom: 52px;
  width: 43%;
  aspect-ratio: 4 / 5;
  transform: rotate(-1.4deg);
}

.layer-two {
  right: 42px;
  bottom: 0;
  width: 38%;
  aspect-ratio: 4 / 3;
  transform: rotate(1.2deg);
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(1.25);
}

.hero-proof div {
  position: relative;
  min-height: 134px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

.hero-proof div::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.intro,
.legal,
.gallery {
  padding: clamp(78px, 9vw, 120px) 0;
}

.section-kicker {
  margin-bottom: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(42px, 6vw, 80px);
  align-items: start;
}

.intro-main h2,
.section-head h2,
.track-copy h2,
.band-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-main p,
.section-head p,
.track-copy p,
.band-copy p,
.contact p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.72;
  text-wrap: pretty;
}

.intro-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 246, 0.9)),
    #fff;
  box-shadow: var(--shadow-sm);
}

.intro-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(180deg, var(--red), var(--gold));
}

.intro-panel dl {
  margin: 0;
}

.intro-panel div + div {
  margin-top: 26px;
}

.intro-panel dt {
  margin-bottom: 6px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.intro-panel dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.58;
}

.focus {
  position: relative;
  padding: clamp(82px, 9vw, 120px) 0;
  overflow: hidden;
}

.focus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 39, 24, 0.06) 0 1px, transparent 1px 128px),
    linear-gradient(180deg, rgba(13, 39, 24, 0.05) 0 1px, transparent 1px 128px);
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.section-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.focus-item {
  min-height: 318px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(7, 25, 15, 0.06);
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.focus-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--green-720) 28%, var(--line));
  box-shadow: var(--shadow-sm);
}

.focus-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--red) 26%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--red) 9%, white);
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.focus-item h3 {
  margin: 78px 0 12px;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1.12;
}

.focus-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.parallax-band {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 104px 24px;
}

.parallax-band > img {
  position: absolute;
  inset: -8% 0 auto;
  width: 100%;
  height: 116%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.98) contrast(1.08);
  will-change: transform;
}

.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 17, 9, 0.2), rgba(3, 17, 9, 0.9)),
    linear-gradient(90deg, rgba(3, 17, 9, 0.78), rgba(3, 17, 9, 0.22), rgba(3, 17, 9, 0.76));
}

.band-copy {
  position: relative;
  z-index: 1;
  max-width: 930px;
  text-align: center;
}

.band-copy h2 {
  color: #fff;
}

.band-copy p,
.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.legal {
  background:
    linear-gradient(180deg, #fff 0%, #fff 52%, var(--paper-2) 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 25, 15, 0.06);
}

.legal-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.legal-card h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.18;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.track {
  padding: clamp(82px, 9vw, 120px) 0;
}

.track-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(440px, 1fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: start;
  margin-bottom: 56px;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.timeline h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 19px;
  line-height: 1.25;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.press-link {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    #fff;
  box-shadow: 0 12px 30px rgba(7, 25, 15, 0.045);
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.press-link:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 41, 47, 0.34);
  box-shadow: 0 18px 44px rgba(7, 25, 15, 0.11);
}

.press-link span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.press-link strong {
  display: block;
  color: var(--green-900);
  font-size: 16px;
  line-height: 1.35;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
}

.gallery-item {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  border: 1px solid rgba(7, 25, 15, 0.06);
  border-radius: var(--radius);
  padding: 0;
  background: var(--green-900);
  cursor: zoom-in;
  box-shadow: 0 12px 28px rgba(7, 25, 15, 0.08);
}

.gallery-item:nth-child(8n + 1),
.gallery-item:nth-child(8n + 4) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 520ms var(--ease),
    filter 520ms var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 17, 9, 0.74));
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  border-radius: var(--radius);
  padding: 6px 8px;
  background: rgba(3, 17, 9, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.contact {
  padding: clamp(82px, 9vw, 120px) 0;
  background:
    linear-gradient(135deg, rgba(214, 41, 47, 0.2), transparent 36%),
    linear-gradient(135deg, var(--green-980), var(--green-820));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  gap: 56px;
  align-items: center;
}

.contact-card {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.contact-card .btn {
  width: 100%;
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-card p {
  margin-top: 14px;
  font-size: 15px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--green-980);
  color: rgba(255, 255, 255, 0.72);
  padding: 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-grid p {
  margin: 0;
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@supports (animation-timeline: view()) {
  .gallery-item img {
    animation: image-settle linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  @keyframes image-settle {
    from {
      transform: scale(1.08);
    }
    to {
      transform: scale(1);
    }
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 38px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-proof,
  .legal-layout,
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-layout,
  .section-head,
  .track-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .content-grid {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-header {
    inset: 12px 16px auto;
    padding: 8px;
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(3, 17, 9, 0.97);
    color: #fff;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(22px);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 24px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-stage {
    min-height: 350px;
  }

  .layer-large {
    width: 88%;
  }

  .layer-one {
    width: 45%;
    bottom: 48px;
  }

  .layer-two {
    right: 10px;
    width: 45%;
  }

  .hero-proof {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 116px;
  }

  .intro,
  .focus,
  .legal,
  .track,
  .gallery,
  .contact {
    padding: 72px 0;
  }

  .intro-main h2,
  .section-head h2,
  .track-copy h2,
  .band-copy h2,
  .contact h2 {
    font-size: clamp(32px, 8vw, 38px);
  }

  .intro-main p,
  .section-head p,
  .track-copy p,
  .band-copy p,
  .contact p {
    font-size: 16px;
  }

  .focus-grid,
  .legal-layout,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .focus-item {
    min-height: 228px;
  }

  .focus-item h3 {
    margin-top: 46px;
  }

  .parallax-band {
    min-height: 520px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    min-height: 154px;
  }

  .gallery-item:nth-child(8n + 1),
  .gallery-item:nth-child(8n + 4) {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 230px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 440px) {
  .brand span {
    display: none;
  }

  .hero-stage {
    min-height: 246px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .layer-one {
    bottom: 32px;
  }

  .hero-proof div {
    min-height: 108px;
  }

  .gallery-grid {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
