:root {
  --bg: #0c0b09;
  --surface: #141210;
  --fg: #e8e0d5;
  --fg-muted: #7a7068;
  --accent: #c87941;
  --accent-dim: rgba(200, 121, 65, 0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  mix-blend-mode: normal;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200, 121, 65, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(200, 121, 65, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
}
.hero-atmosphere {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, transparent);
  opacity: 0.25;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid rgba(232, 224, 213, 0.06);
}
.philosophy-inner { max-width: 1100px; }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.philosophy-statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
}
.philosophy-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
  opacity: 0.6;
}
.philosophy-answer {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  max-width: 600px;
}

/* ── THE FORMAT ── */
.theformat {
  padding: 120px 48px;
  border-top: 1px solid rgba(232, 224, 213, 0.06);
}
.theformat-inner { max-width: 1100px; }
.format-list { display: flex; flex-direction: column; gap: 0; }
.format-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(232, 224, 213, 0.08);
  align-items: start;
}
.format-item:last-child { border-bottom: none; }
.format-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.format-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 16px;
}
.format-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 540px;
}

/* ── ROSTER ── */
.roster {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid rgba(232, 224, 213, 0.06);
}
.roster-inner { max-width: 1100px; }
.roster-text { max-width: 680px; }
.roster-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.roster-note {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg);
}
.roster-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.attribute {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(200, 121, 65, 0.3);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px 140px;
  border-top: 1px solid rgba(232, 224, 213, 0.06);
}
.closing-inner { max-width: 720px; }
.closing-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 40px;
  opacity: 0.6;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

/* ── FOOTER ── */
.footer {
  padding: 64px 48px;
  border-top: 1px solid rgba(232, 224, 213, 0.06);
}
.footer-inner { max-width: 1100px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-meta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 0 24px 64px; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 15px; }
  .philosophy, .theformat, .roster, .closing { padding: 80px 24px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 24px; }
  .format-item { grid-template-columns: 56px 1fr; gap: 20px; padding: 32px 0; }
  .format-number { font-size: 36px; }
  .footer { padding: 48px 24px; }
}