:root {
  --bg: #090909;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #f6f1ea;
  --muted: #cfbfa9;
  --accent: #d8b27d;
  --accent-strong: #f3d2a8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(216, 178, 125, 0.18), transparent 30%),
    linear-gradient(180deg, #111 0%, #090909 100%);
  color: var(--text);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: 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;
}

.page-shell {
  width: min(100%, calc(var(--max-width) + 48px));
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(243, 210, 168, 0.95), rgba(216, 178, 125, 0.45));
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  color: rgba(246, 241, 234, 0.86);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(243, 210, 168, 0.4);
  border-radius: 999px;
  background: rgba(243, 210, 168, 0.12);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 6vw, 64px);
  border-radius: 34px;
  background: #111;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.82) 8%, rgba(9, 9, 9, 0.42) 42%, rgba(9, 9, 9, 0.12) 100%),
    url("assets/hero.png") center 18% / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46));
}

.hero-content,
.hero-backdrop,
.hero-overlay {
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 12px;
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 7rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 34rem;
  margin: 18px 0 0;
  color: rgba(246, 241, 234, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero-panels {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.glass-card,
.content-card,
.music-card {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 24px;
  border-radius: 24px;
}

.spotlight h2,
.content-card h2,
.feature-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.spotlight p:last-child,
.promo-card p,
.video-card p,
.music-card p {
  color: rgba(246, 241, 234, 0.8);
  line-height: 1.65;
}

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

.stat-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-grid,
.music-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.section-grid {
  grid-template-columns: 1.6fr 1fr;
  margin-top: 28px;
}

.content-card,
.music-card {
  padding: clamp(22px, 4vw, 32px);
  border-radius: 28px;
}

.news-list {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.news-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-list span {
  color: var(--accent-strong);
  font-weight: 700;
}

.news-list h3,
.music-card h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.news-list p,
.track-list,
.text-link {
  margin: 0;
  color: rgba(246, 241, 234, 0.76);
}

.promo-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    url("assets/hero.png") center center / cover no-repeat;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.feature-band,
.gallery-section {
  margin-top: 28px;
}

.video-section {
  margin-top: 28px;
}

.feature-band {
  padding: clamp(26px, 5vw, 38px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.98), rgba(14, 14, 14, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-heading {
  display: grid;
  gap: 8px;
}

.music-grid {
  grid-template-columns: 1fr;
}

.music-grid-inner,
.video-list {
  display: grid;
  gap: 22px;
}

.music-grid-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.accent-card {
  background:
    linear-gradient(145deg, rgba(216, 178, 125, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.track-list {
  padding-left: 18px;
  line-height: 1.85;
}

.video-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-embed {
  position: relative;
  margin: 22px 0 18px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 560 / 315;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 315px;
  border: 0;
}

.gallery-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.gallery-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.08), rgba(9, 9, 9, 0.58));
}

.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.03);
}

.gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 9, 9, 0.48);
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-stage {
  position: relative;
  width: min(100%, 1100px);
}

.lightbox-stage img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-stage p {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(246, 241, 234, 0.84);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

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

  .section-grid,
  .music-grid,
  .music-grid-inner,
  .video-list,
  .gallery-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
    align-items: end;
  }

  .hero-backdrop {
    background-position: 72% 18%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 12px 12px 40px;
  }

  .site-header,
  .hero,
  .content-card,
  .music-card,
  .gallery-item,
  .feature-band {
    border-radius: 24px;
  }

  .hero {
    padding: 24px;
    min-height: 88vh;
  }

  .hero h1 {
    font-size: clamp(3rem, 20vw, 4.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .video-embed,
  .gallery-item {
    min-height: 220px;
  }
}
