/* ============================================
   NEXT//PLAY — SHARED SITE STYLESHEET
   Used across all pages. Edit here to change globally.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..900,0..100,0..1&family=DM+Sans:opsz,wght@9..40,300..700&display=swap');

:root {
  --pitch: #1A3C2B;
  --pitch-deep: #0F2418;
  --pitch-mid: #2d5a3f;
  --ignite: #E07A30;
  --ignite-deep: #B85F1F;
  --gold: #C8A951;
  --cream: #FAF7F0;
  --cream-warm: #F5EEDF;
  --ink: #0F0F0F;
  --ink-soft: #2A2A2A;
  --line-soft: #D8CCB0;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

::selection { background: var(--ignite); color: var(--cream); }

a { color: inherit; }

.slash {
  color: var(--ignite);
  font-weight: 500;
  letter-spacing: -0.05em;
  display: inline-block;
}

h1, h2, h3 { font-family: 'Fraunces', serif; }
h1 { font-weight: 600; }
h2 { font-weight: 500; letter-spacing: -0.02em; }
h3 { font-weight: 500; }

em.wonk {
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 400;
}

/* ============== NAV ============== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  padding: 16px var(--pad);
}
nav .nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--pitch);
  text-decoration: none;
}
.brand .slash { font-size: 24px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--pitch);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--ignite); }
.nav-links a.active { color: var(--ignite); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ignite);
}
.nav-cta {
  background: var(--pitch);
  color: var(--cream) !important;
  padding: 10px 22px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--ignite); color: var(--cream) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--pitch);
}

/* ============== PAGE HERO (interior pages) ============== */
.page-hero {
  background: var(--pitch);
  color: var(--cream);
  padding: 160px var(--pad) 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '//';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(200px, 30vw, 420px);
  color: var(--ignite);
  opacity: 0.07;
  line-height: 1;
  font-weight: 600;
  pointer-events: none;
}
.page-hero-wrap {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(200, 169, 81, 0.4);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.page-hero .eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--ignite);
  border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-bottom: 24px;
}
.page-hero h1 .slash { color: var(--ignite); }
.page-hero h1 em {
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.page-hero .hero-sub {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: rgba(250, 247, 240, 0.8);
  max-width: 680px;
  line-height: 1.4;
}

/* ============== SECTIONS ============== */
section { padding: 90px var(--pad); }
.wrap { max-width: var(--max); margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pitch);
}
.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ignite);
}
.section-tag.light { color: var(--gold); }
.section-tag.light::before { background: var(--gold); }

h2.section-head {
  font-size: clamp(34px, 5vw, 60px);
  color: var(--pitch);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
h2.section-head .slash { color: var(--ignite); }
h2.section-head em {
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--ignite);
  font-weight: 400;
}

.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 40px;
}

.prose p { font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--pitch); font-weight: 600; }

/* ============== BUTTONS ============== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ignite);
  color: var(--cream);
  padding: 18px 34px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--pitch); transform: translateY(-2px); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--pitch);
  padding: 18px 34px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--pitch);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--pitch); color: var(--cream); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--cream);
  padding: 18px 34px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(250, 247, 240, 0.3);
  transition: all 0.3s;
}
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(250,247,240,0.06); }

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--ignite);
  color: var(--cream);
  padding: 100px var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '//';
  position: absolute;
  bottom: -120px;
  right: -30px;
  font-family: 'Fraunces', serif;
  font-size: 420px;
  color: var(--cream);
  opacity: 0.07;
  font-weight: 600;
  line-height: 1;
}
.cta-band .cta-wrap { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(34px, 5.5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 24px;
}
.cta-band h2 em {
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 400;
}
.cta-band p {
  font-size: 18px;
  color: rgba(250, 247, 240, 0.92);
  margin-bottom: 36px;
}
.cta-band .btn-primary {
  background: var(--pitch);
}
.cta-band .btn-primary:hover { background: var(--cream); color: var(--pitch); }

/* ============== FOOTER ============== */
footer {
  background: var(--pitch-deep);
  color: rgba(250, 247, 240, 0.6);
  padding: 60px var(--pad) 32px;
  font-size: 13px;
}
footer .foot-wrap { max-width: var(--max); margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200, 169, 81, 0.15);
}
.foot-brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-block;
}
.foot-brand .slash { color: var(--ignite); }
.foot-tagline { color: rgba(250, 247, 240, 0.6); margin-bottom: 20px; font-size: 14px; max-width: 320px; }
.foot-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; }
.foot-col li { padding: 6px 0; }
.foot-col a {
  color: rgba(250, 247, 240, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--ignite); }
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 247, 240, 0.4);
  letter-spacing: 0.04em;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px var(--pad);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 8px 0; text-align: center; }
  .nav-toggle { display: block; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { padding: 130px var(--pad) 70px; }
  section { padding: 64px var(--pad); }
  .copyright { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
}
