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

:root {
  --bg-primary: #0d1a12;
  --bg-card: #122018;
  --bg-section: #0a140f;
  --gold: #c9a84c;
  --gold-light: #e0c878;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --text-primary: #f0ead8;
  --text-secondary: #b8a88a;
  --text-muted: #6e6050;
  --border: rgba(201, 168, 76, 0.18);
  --court-line: rgba(201, 168, 76, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__court-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--court-line) 1px, transparent 1px) 0 0 / 120px 100%,
    linear-gradient(180deg, var(--court-line) 1px, transparent 1px) 0 0 / 100% 120px;
}

.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 80%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}

.hero__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.35rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 2.5rem;
}

.hero__headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero__headline span {
  display: block;
}

.hero__headline--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2rem;
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0 0 2.5rem;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}

.manifesto__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   JOURNEY
   ============================================================ */
.journey {
  padding: 7rem 2rem;
  background: var(--bg-primary);
}

.journey__header {
  text-align: center;
  margin-bottom: 4rem;
}

.journey__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-primary);
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}

.journey__card {
  background: var(--bg-primary);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.journey__card:hover {
  background: var(--bg-card);
}

.journey__card-icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.journey__card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.journey__card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   PLAYBOOK
   ============================================================ */
.playbook {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 7rem 2rem;
}

.playbook__inner {
  max-width: 860px;
  margin: 0 auto;
}

.playbook__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 3.5rem;
}

.playbook__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.playbook__step {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.playbook__step:last-child {
  border-bottom: none;
}

.playbook__step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-dim);
  line-height: 1;
  min-width: 3rem;
  text-align: right;
}

.playbook__step-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.playbook__step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 7rem 2rem;
}

.closing__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing__stat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 4rem;
}

.closing__stat {
  padding: 0 3rem;
}

.closing__stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.closing__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.closing__stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.closing__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.site-footer__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.site-footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.site-footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer__meta {
  text-align: right;
}

.site-footer__meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-footer__sub {
  margin-top: 0.5rem;
  color: var(--text-muted) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .hero { padding: 4rem 1.5rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .journey { padding: 5rem 1.5rem; }
  .playbook { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }

  .closing__stat-row { flex-direction: column; gap: 1.5rem; }
  .closing__stat-divider { width: 40px; height: 1px; }

  .playbook__step { flex-direction: column; gap: 0.75rem; }
  .playbook__step-num { text-align: left; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__meta { text-align: left; }
}