/* =========================================
   THE PHILL SHOW — Kids in the Back
   Dark library aesthetic. Warm amber marks.
   ========================================= */

:root {
  --bg: #0c0c0c;
  --bg-alt: #111111;
  --fg: #f2ede6;
  --fg-muted: #8a8279;
  --accent: #c9973e;
  --accent-dim: #8a6b2a;
  --rule: #2a2520;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.nav-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

.hero-rule {
  position: absolute;
  left: clamp(2rem, 8vw, 12rem);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--accent) 20%, var(--accent-dim) 60%, transparent 100%);
  opacity: 0.4;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: clamp(2rem, 8vw, 10rem);
}

.hero-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 42ch;
  font-weight: 300;
}

.hero-deco {
  position: absolute;
  right: 5%;
  bottom: 15%;
  width: 280px;
  height: 280px;
  pointer-events: none;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.12;
}
.deco-ring-1 {
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}
.deco-ring-2 {
  width: 65%;
  height: 65%;
  top: 17.5%;
  left: 17.5%;
  opacity: 0.08;
}
.deco-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

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

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

.manifesto-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

.manifesto-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.manifesto-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 3rem 0;
}

.manifesto-credits p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.manifesto-byline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}

/* ── VOICE / PILLARS ── */
.voice {
  padding: 7rem 2rem;
  background: var(--bg);
}

.voice-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.voice-header {
  margin-bottom: 4rem;
}

.voice-eyebrow {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.voice-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  max-width: 22ch;
}

.voice-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.pillar {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-left: 1px solid var(--rule);
  padding-left: 2rem;
}
.pillar:first-child {
  border-left: none;
  padding-left: 0;
}

.pillar-mark {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.pillar-head {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pillar-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── CLOSING ── */
.close-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding: 8rem 2rem;
  text-align: center;
}

.close-inner {
  max-width: 680px;
  margin: 0 auto;
}

.close-line-1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.close-line-2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.close-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 3rem;
}

.close-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.close-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-name {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.footer-show {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

.footer-meta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 6rem; }
  .hero-inner { padding-left: 0; }
  .hero-rule { display: none; }
  .hero-deco { display: none; }

  .pillar { border-left: none; border-top: 1px solid var(--rule); padding: 2rem 0; }
  .pillar:first-child { border-top: none; padding-top: 0; }

  .manifesto, .voice, .close-section { padding: 5rem 1.5rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3.5rem; }
  .voice-pillars { grid-template-columns: 1fr; }
}
