:root {
  --bg: #080808;
  --bg-soft: #101010;
  --paper: #e9e1d2;
  --ink: #f7f3eb;
  --muted: #aaa39a;
  --red: #9f2f26;
  --red-bright: #d44836;
  --gold: #b59458;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
  --shadow: 0 25px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 999;
  background: #fff; color: #000; padding: 12px 16px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto 0;
  height: 70px; padding: 0 max(18px, env(safe-area-inset-left));
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,8,.76); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  text-decoration: none; font-family: "Special Elite", serif;
  font-weight: 700; letter-spacing: .13em; font-size: 1.1rem;
}
.desktop-nav { display: none; gap: 28px; align-items: center; }
.desktop-nav a { text-decoration: none; color: #d4cec4; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.desktop-nav a:hover { color: #fff; }
.header-actions { display: flex; gap: 8px; }
.lang-toggle, .menu-toggle {
  border: 1px solid var(--line); color: #fff; background: #111;
  min-width: 42px; height: 42px; border-radius: 999px; cursor: pointer;
}
.mobile-menu {
  position: fixed; z-index: 99; top: 70px; left: 0; right: 0;
  background: rgba(8,8,8,.98); border-bottom: 1px solid var(--line); padding: 18px;
}
.mobile-menu a { display: block; padding: 15px 4px; text-decoration: none; border-bottom: 1px solid #171717; }

.hero {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  position: relative; isolation: isolate; padding: 110px 20px 60px;
  background:
    linear-gradient(180deg, rgba(4,4,4,.56), rgba(4,4,4,.78) 55%, #080808 100%),
    url("https://i.postimg.cc/KYF85NGz/jimbo.webp") center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 40%; z-index: -1;
  background: linear-gradient(transparent, #080808);
}
.hero-noise {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .16;
  background-image:
    repeating-radial-gradient(circle at 17% 22%, transparent 0 1px, rgba(255,255,255,.06) 2px 3px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-content { max-width: 900px; }
.hero h1 {
  margin: .12em 0 0; font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 23vw, 12rem); line-height: .78; letter-spacing: -.035em;
  text-shadow: 0 6px 30px rgba(0,0,0,.7);
}
.eyebrow, .kicker {
  font-size: .68rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.hero-tag {
  margin: 26px 0 0; font-family: "Special Elite", serif;
  font-size: clamp(1.35rem, 5vw, 2.2rem); letter-spacing: .11em;
}
.hero-copy { color: #d3cdc4; max-width: 600px; margin: 14px auto 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .button-row { justify-content: center; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; min-height: 48px;
  padding: 13px 20px; border: 1px solid var(--line); text-decoration: none;
  text-transform: uppercase; letter-spacing: .11em; font-size: .73rem; font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--paper); color: #080808; border-color: var(--paper); }
.btn-primary:hover { background: #fff; }
.btn-ghost { background: rgba(0,0,0,.32); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.btn-small { min-height: 42px; padding: 10px 15px; background: #121212; }
.btn-full { width: 100%; }
.scroll-cue { position: absolute; bottom: 28px; text-decoration: none; font-size: 1.5rem; color: #aaa; }

.section { padding: 92px 20px; border-top: 1px solid var(--line); }
.section > * { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.section-heading { margin-bottom: 38px; }
.section h2 {
  font-family: "Cormorant Garamond", serif; font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: .95; margin: 8px 0 15px; letter-spacing: -.025em;
}
.lead { color: #d3cdc4; font-size: clamp(1.02rem, 2.5vw, 1.25rem); max-width: 760px; }

.feature-card {
  display: grid; grid-template-columns: 1fr; background: #0b0b0b; border: 1px solid var(--line);
  box-shadow: var(--shadow); overflow: hidden;
}
.feature-art { min-height: 390px; position: relative; background-size: cover; background-position: center; }
.feature-art-ag {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.78)),
    url("assets/four-seasons.jpg");
}
.art-overlay { position: absolute; inset: auto 0 0; padding: 28px; display: grid; gap: 4px; }
.art-overlay strong { font-family: "Cormorant Garamond", serif; font-size: clamp(2.4rem, 10vw, 4.6rem); line-height: .9; }
.badge { width: fit-content; padding: 5px 9px; background: var(--red); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.feature-copy { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.feature-copy p { color: #cfc7bc; font-size: 1.07rem; }
.button-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.song-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
.song-card { min-height: 250px; padding: 28px; position: relative; overflow: hidden; border: 1px solid var(--line); background: #0d0d0d; }
.song-card::before { content: ""; position: absolute; inset: 0; opacity: .12; background: linear-gradient(125deg, transparent, currentColor); }
.song-card > * { position: relative; }
.song-rank { color: var(--gold); font-weight: 800; letter-spacing: .15em; }
.song-card h3 { font-family: "Cormorant Garamond", serif; font-size: 3rem; margin: 4px 0 8px; }
.song-card p { max-width: 480px; color: #bbb4aa; }
.text-link { display: inline-block; margin-top: 18px; font-weight: 800; text-decoration: none; }
.song-bullet { color: #d14a3d; }
.song-saint { color: #b59458; }

.world-section {
  background:
    linear-gradient(rgba(8,8,8,.86), rgba(8,8,8,.9)),
    radial-gradient(circle at 20% 30%, #4b1713, transparent 32%),
    radial-gradient(circle at 80% 60%, #1d2834, transparent 35%);
}
.country-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 30px 0; }
.country-grid div { display: flex; gap: 10px; align-items: center; padding: 14px; border: 1px solid var(--line); background: rgba(0,0,0,.28); }
.country-grid span { font-size: 1.4rem; }
.world-question { font-family: "Cormorant Garamond", serif; font-size: 2rem; margin-bottom: 16px; }

.broken-section { background: #0b0908; }
.broken-grid { display: grid; gap: 34px; }
.benefit-list { margin: 26px 0 0; padding-left: 20px; color: #d2cbc0; }
.benefit-list li { margin: 9px 0; }
.join-form { background: #111; border: 1px solid var(--line); padding: 24px; box-shadow: var(--shadow); }
.join-form h3 { font-family: "Cormorant Garamond", serif; font-size: 2.2rem; margin: 0; }
.join-form > p { color: var(--muted); margin-top: 4px; }
.join-form label { display: block; margin-top: 15px; color: #d8d1c7; font-size: .82rem; font-weight: 700; }
.join-form input, .join-form select {
  width: 100%; min-height: 48px; margin-top: 7px; padding: 11px 12px;
  color: #fff; background: #080808; border: 1px solid #2b2b2b; border-radius: 0;
}
.join-form input:focus, .join-form select:focus { outline: 2px solid rgba(181,148,88,.35); border-color: var(--gold); }
.consent { display: grid !important; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.consent input { width: 18px; min-height: 18px; margin-top: 2px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 24px; font-size: .78rem; }

.album-section { background: #080808; }
.season-tabs { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); margin-bottom: 16px; }
.season-tab { padding: 14px 10px; background: #0d0d0d; color: #aaa; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.season-tab.active { background: var(--paper); color: #111; }
.season-stage { display: grid; gap: 0; border: 1px solid var(--line); overflow: hidden; background: #0b0b0b; transition: background .3s ease; }
.season-stage img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.season-copy { padding: 26px; display: flex; flex-direction: column; justify-content: center; }
.season-name { color: var(--gold); font-size: .68rem; font-weight: 800; letter-spacing: .22em; }
.season-copy h3 { font-family: "Cormorant Garamond", serif; font-size: 2.3rem; margin: 8px 0; line-height: 1; }
.season-copy p { color: #c8c0b5; }

.live-section { background: linear-gradient(135deg, #120c0b, #080808 60%); }
.live-card { border: 1px solid var(--line); padding: clamp(26px, 6vw, 60px); background: rgba(0,0,0,.35); }
.microcopy { margin-top: 18px; color: #777; font-size: .72rem; }

.platform-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.platform-card { padding: 20px; border: 1px solid var(--line); text-decoration: none; display: flex; justify-content: space-between; gap: 15px; background: #0d0d0d; transition: transform .2s ease, border-color .2s ease; }
.platform-card:hover { transform: translateY(-2px); border-color: #555; }
.platform-card span { color: var(--muted); font-size: .8rem; text-align: right; }

.about-section { background: #0a0a0a; }
.about-grid { display: grid; gap: 28px; }

.site-footer { padding: 50px 20px calc(50px + env(safe-area-inset-bottom)); text-align: center; border-top: 1px solid var(--line); display: grid; gap: 12px; color: #a9a298; }
.site-footer strong { color: #fff; font-family: "Cormorant Garamond", serif; font-size: 2rem; }
.footer-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 14px 0; }
.footer-links a { font-size: .8rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (min-width: 700px) {
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .song-grid { grid-template-columns: repeat(2, 1fr); }
  .season-tabs { grid-template-columns: repeat(4, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .site-header { height: 76px; padding-inline: 4vw; }
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
  .feature-card { grid-template-columns: 1.2fr .8fr; }
  .feature-art { min-height: 560px; }
  .broken-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .season-stage { grid-template-columns: .9fr 1.1fr; }
  .about-grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 120px 4vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
