/* ==========================================================================
   IT'S MA — Design Tokens
   Brand Guide v1.0 (Viktor, Aug 2026): Obsidian/Off-White base, Aura Gold
   as leading accent, Electric Blue used sparingly for CTA/energy moments.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap');

:root,
[data-theme='dark'] {
  /* Surfaces — Obsidian Black */
  --color-bg: #0b0b0d;
  --color-surface: #141416;
  --color-surface-2: #1a1a1d;
  --color-surface-offset: #212124;
  --color-surface-offset-2: #2a2a2e;
  --color-divider: rgba(255, 255, 255, 0.08);
  --color-border: rgba(255, 255, 255, 0.12);

  /* Text */
  --color-text: #f5f1ea;
  --color-text-muted: #a8a39a;
  --color-text-faint: #6b6862;
  --color-text-inverse: #0b0b0d;

  /* Primary Accent — Aura Gold (Signature, Ruhe/Premium) */
  --color-primary: #c9a257;
  --color-primary-hover: #ddbb77;
  --color-primary-active: #b78b3e;
  --color-primary-highlight: rgba(201, 162, 87, 0.16);
  --color-primary-text: #1a140a;

  /* Secondary Accent — Electric Blue (sparingly, CTA/Energie) */
  --color-secondary: #3fc7e0;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.4);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 20px 60px oklch(0 0 0 / 0.55);
  --shadow-glow: 0 0 40px oklch(0.78 0.13 85 / 0.25);
  --shadow-glow-cta: 0 0 40px rgba(63, 199, 224, 0.35);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  color-scheme: dark;
}

/* LIGHT MODE (day / daylight variant) */
[data-theme='light'] {
  --color-bg: #f5f1ea;
  --color-surface: #ffffff;
  --color-surface-2: #fbf8f2;
  --color-surface-offset: #ece4d3;
  --color-surface-offset-2: #e1d7c0;
  --color-divider: rgba(20, 16, 13, 0.08);
  --color-border: rgba(20, 16, 13, 0.14);

  --color-text: #16130e;
  --color-text-muted: #5c564c;
  --color-text-faint: #8b8478;
  --color-text-inverse: #f5f1ea;

  --color-primary: #c9a257;
  --color-primary-hover: #b38b3e;
  --color-primary-active: #97722f;
  --color-primary-highlight: rgba(201, 162, 87, 0.14);
  --color-primary-text: #1a140a;

  --color-secondary: #23a9c2;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.2 0.02 60 / 0.1);
  --shadow-lg: 0 20px 60px oklch(0.2 0.02 60 / 0.14);
  --shadow-glow: 0 0 40px oklch(0.68 0.12 85 / 0.22);
  --shadow-glow-cta: 0 0 40px rgba(35, 169, 194, 0.3);

  color-scheme: light;
}

/* ---- Type scale ---- */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3.5rem, 1rem + 9vw, 9.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ==========================================================================
   Base
   ========================================================================== */

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  position: relative;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--color-primary);
  display: inline-block;
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-4);
  max-width: 18ch;
}

.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-top: var(--space-4);
  font-weight: 400;
}

.section-head {
  margin-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}

/* ==========================================================================
   Skip link
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-4);
  z-index: 200;
  background: var(--color-primary);
  color: var(--color-primary-text);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
}
.skip-link:focus {
  left: var(--space-4);
}

/* ==========================================================================
   Glass Navigation
   ========================================================================== */

.nav-wrap {
  position: fixed;
  top: clamp(var(--space-3), 2vw, var(--space-5));
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: var(--space-4);
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  width: 100%;
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-2) var(--space-3) var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: oklch(0.1 0.005 60 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow-md);
  transition:
    background var(--transition-interactive),
    box-shadow var(--transition-interactive);
}

[data-theme='light'] .nav {
  background: oklch(1 0 0 / 0.55);
  border-color: oklch(0 0 0 / 0.08);
}

.nav--scrolled {
  box-shadow: var(--shadow-lg);
}

.nav__mark {
  display: inline-block;
  width: 94px;
  height: 24px;
  background-color: var(--color-text);
  -webkit-mask-image: url('assets/logo/its-ma-mark.png');
  mask-image: url('assets/logo/its-ma-mark.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: left center;
  mask-position: left center;
  transition: background-color var(--transition-interactive);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--color-text);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.icon-btn:hover {
  color: var(--color-text);
  background: oklch(1 0 0 / 0.08);
}
[data-theme='light'] .icon-btn:hover {
  background: oklch(0 0 0 / 0.06);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: var(--color-primary-text);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-cta);
}
.nav__cta:active {
  transform: translateY(0);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border-radius: var(--radius-full);
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: inline-flex;
  }
}

/* Mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: oklch(0.06 0.005 60 / 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 250ms var(--ease-out),
    visibility 250ms;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
}
.mobile-menu__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close:hover {
  background: oklch(1 0 0 / 0.08);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050506;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, oklch(0.03 0 0 / 0.55) 0%, oklch(0.03 0 0 / 0.35) 35%, oklch(0.03 0 0 / 0.65) 78%, oklch(0.02 0 0 / 0.95) 100%),
    radial-gradient(120% 90% at 50% 15%, transparent 0%, oklch(0.02 0 0 / 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--space-5);
  padding-top: var(--space-24);
}

.hero__mark {
  position: relative;
  filter: drop-shadow(0 4px 30px oklch(0 0 0 / 0.45));
}

.hero__mark svg {
  width: clamp(220px, 34vw, 460px);
  height: auto;
  overflow: visible;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero__mark .reveal-rect {
    animation-duration: 0.01s !important;
  }
}

.hero__tagline {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  font-weight: 500;
  color: oklch(1 0 0 / 0.85);
  letter-spacing: 0.02em;
  max-width: 42ch;
  opacity: 0;
  animation: rise-in 0.8s var(--ease-out) 2.9s forwards;
}

.hero__meta {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.6);
  opacity: 0;
  animation: rise-in 0.8s var(--ease-out) 3.1s forwards;
}
.hero__meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: oklch(1 0 0 / 0.65);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  animation: rise-in 0.8s var(--ease-out) 3.3s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, oklch(1 0 0 / 0.8), transparent);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  animation: scroll-drip 1.8s linear infinite;
}
@keyframes scroll-drip {
  to {
    top: 100%;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-primary-text);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-cta);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-text-muted);
  background: oklch(1 0 0 / 0.04);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

/* ==========================================================================
   About / Bio
   ========================================================================== */

.about {
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.about__lead {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-top: var(--space-6);
  line-height: 1.35;
}

.about__body {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 56ch;
}
.about__body p + p {
  margin-top: var(--space-4);
}

.about__tags {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.about__portrait {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__portrait-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  background: oklch(0.06 0 0 / 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid oklch(1 0 0 / 0.12);
}
.about__portrait-badge span {
  font-size: var(--text-xs);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Stats strip
   ========================================================================== */

.stats {
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface);
  padding-block: clamp(var(--space-10), 6vw, var(--space-14));
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.stat {
  text-align: left;
}
.stat__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat__num .accent {
  color: var(--color-primary);
}
.stat__label {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 760px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-6);
  }
}

/* ==========================================================================
   Sound section
   ========================================================================== */

.sound {
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  background: var(--color-bg);
}
.sound__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: center;
}
.sound__genres {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.genre-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.genre-row:first-child {
  border-top: 1px solid var(--color-divider);
}
.genre-row__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
}
.genre-row__note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: right;
}
.sound__player {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.sound__player iframe {
  width: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.gallery__grid {
  margin-top: clamp(var(--space-10), 6vw, var(--space-16));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 12vw;
  grid-auto-flow: dense;
  gap: var(--space-3);
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-2);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.gallery__item--a {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item--b {
  grid-column: span 2;
  grid-row: span 1;
}
.gallery__item--c {
  grid-column: span 1;
  grid-row: span 2;
}
.gallery__item--d {
  grid-column: span 1;
  grid-row: span 1;
}

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 26vw;
  }
  .gallery__item--a {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__item--c {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ==========================================================================
   Clubs & Festivals
   ========================================================================== */

.clubs {
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  background: var(--color-bg);
}
.clubs__grid {
  margin-top: clamp(var(--space-10), 6vw, var(--space-16));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
}
.clubs__list {
  display: flex;
  flex-direction: column;
}
.club-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.club-row__name {
  font-weight: 600;
  color: var(--color-text);
}
.club-row__meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.clubs__subhead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.lineup-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.lineup-cloud span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Press kit
   ========================================================================== */

.press {
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}
.press__card {
  margin-top: clamp(var(--space-10), 6vw, var(--space-16));
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
}
.press__facts {
  padding: clamp(var(--space-8), 5vw, var(--space-12));
}
.press__facts dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3) var(--space-6);
  margin-top: var(--space-6);
}
.press__facts dt {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.press__facts dd {
  font-size: var(--text-sm);
  color: var(--color-text);
}
.press__actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.press__side {
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  background: var(--color-surface-offset);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
  border-left: 1px solid var(--color-border);
}
.press__side-icon {
  color: var(--color-primary);
}
.press__note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .press__card {
    grid-template-columns: 1fr;
  }
  .press__side {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}

/* ==========================================================================
   Booking / Contact
   ========================================================================== */

.booking {
  padding-block: clamp(var(--space-24), 14vw, var(--space-32));
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.booking__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking .section-title {
  max-width: 22ch;
  text-align: center;
  font-size: var(--text-3xl);
}
.booking .section-lede {
  text-align: center;
  margin-inline: auto;
}
.booking__actions {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.booking__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--color-primary-highlight) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-12), 6vw, var(--space-16)) var(--space-8);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-10);
  flex-wrap: wrap;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-divider);
}
.footer__mark {
  display: inline-block;
  width: 168px;
  height: 43px;
  background-color: var(--color-text);
  -webkit-mask-image: url('assets/logo/its-ma-mark.png');
  mask-image: url('assets/logo/its-ma-mark.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: left center;
  mask-position: left center;
}
.footer__tagline {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 32ch;
}
.footer__social {
  display: flex;
  gap: var(--space-3);
}
.footer__cols {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}
.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-3);
}
.footer__col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  padding-block: var(--space-1);
}
.footer__col a:hover {
  color: var(--color-text);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__legal {
  display: flex;
  gap: var(--space-5);
}
.footer__legal a {
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer__legal a:hover {
  color: var(--color-text-muted);
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal {
  padding-block: clamp(var(--space-24), 10vw, var(--space-32)) var(--space-20);
  background: var(--color-bg);
  min-height: 60vh;
}
.legal h1 {
  font-size: var(--text-2xl);
}
.legal h2 {
  font-size: var(--text-lg);
  margin-top: var(--space-10);
  margin-bottom: var(--space-3);
}
.legal h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-1);
}
.legal__intro {
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.legal__intro p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.legal p,
.legal li {
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 72ch;
}
.legal ul {
  margin-top: var(--space-3);
  padding-left: var(--space-6);
  list-style: disc;
}
.legal a {
  color: var(--color-primary);
  text-underline-offset: 2px;
}
[data-theme='light'] .legal a {
  color: #83652a;
}
.legal__meta {
  margin-top: var(--space-6);
  color: var(--color-text);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: var(--space-8);
}
.legal__back:hover {
  color: var(--color-text);
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal {
  opacity: 1;
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .about__grid,
  .sound__grid,
  .clubs__grid {
    grid-template-columns: 1fr;
  }
  .about__portrait {
    order: -1;
    max-width: 420px;
  }
  .stats__grid {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: var(--text-xl);
  }
  .press__facts dl {
    grid-template-columns: 1fr;
    gap: var(--space-1) 0;
  }
  .press__facts dt {
    margin-top: var(--space-3);
  }
}
