/* ============================================
   REBUUILT — BRAND STYLES (Warm Refresh)
   Bitter serif + DM Sans. Warm charcoal + amber/copper.
   ============================================ */

:root {
  --bg:          #1e1b18;
  --surface:     #252220;
  --surface-2:   #2d2a27;
  --border:      rgba(255,255,255,0.07);
  --text:        #f5f0e8;
  --text-muted:  #a89f94;
  --text-subtle: #6b6360;
  --accent:      #c8974a;
  --accent-warm: #d4a55a;
  --accent-dim:  rgba(200,151,74,0.10);
  --accent-glow: rgba(200,151,74,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================
   SHARED BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: #1e1b18;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-warm);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,151,74,0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: rgba(200,151,74,0.4);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ============================================
   SECTION LABELS
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ============================================
   HERO (Homepage)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 100px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,27,24,0.3) 0%,
    rgba(30,27,24,0.55) 40%,
    rgba(30,27,24,0.92) 75%,
    #1e1b18 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 100%;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.eyebrow-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,151,74,0.25);
  padding: 6px 18px;
  border-radius: 3px;
  background: rgba(200,151,74,0.06);
}

.hero-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-subtle);
  letter-spacing: 0.03em;
}

/* ============================================
   ABOUT STRIP
   ============================================ */

.about-strip {
  background: var(--surface);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-strip-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-strip-text p:last-child { margin-bottom: 0; }

.about-strip-text strong { color: var(--text); }

.about-strip-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strip-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.strip-pillar:hover {
  border-color: rgba(200,151,74,0.3);
  background: rgba(200,151,74,0.04);
}

.strip-pillar-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.strip-pillar-icon svg {
  width: 100%;
  height: 100%;
}

.strip-pillar-name {
  font-family: 'Bitter', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.strip-pillar-arrow {
  margin-left: auto;
  color: var(--text-subtle);
  font-size: 18px;
  transition: color 0.2s, transform 0.2s;
}
.strip-pillar:hover .strip-pillar-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ============================================
   WHO THIS IS FOR
   ============================================ */

.who-section {
  background: var(--bg);
  padding: 100px 24px;
}

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

.who-header {
  text-align: center;
  margin-bottom: 64px;
}

.who-title {
  font-family: 'Bitter', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 16px;
}

.who-title em {
  font-style: italic;
  color: var(--accent);
}

.who-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.who-card:hover {
  border-color: rgba(200,151,74,0.25);
  background: var(--surface-2);
}

.who-card-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.who-card-icon svg { width: 100%; height: 100%; }

.who-card-text {
  font-family: 'Bitter', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ============================================
   CONTENT PILLARS (Homepage)
   ============================================ */

.pillars {
  background: var(--surface);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-title {
  font-family: 'Bitter', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 16px;
}

.pillars-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pillar {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s;
}
.pillar:hover { border-color: rgba(200,151,74,0.25); }

.pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}
.pillar-icon svg { width: 100%; height: 100%; }

.pillar-name {
  font-family: 'Bitter', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

.pillar-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================
   PODCAST PREVIEW
   ============================================ */

.podcast-preview {
  background: var(--bg);
  padding: 100px 24px;
}

.podcast-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.podcast-preview-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.podcast-name {
  font-family: 'Bitter', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.podcast-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.podcast-link:hover {
  color: var(--accent);
  border-color: rgba(200,151,74,0.3);
  background: var(--accent-dim);
}

.podcast-preview-art {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.podcast-art-icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
}

.podcast-art-icon svg { width: 100%; height: 100%; }

.podcast-art-title {
  font-family: 'Bitter', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.podcast-art-tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   EMAIL SIGNUP
   ============================================ */

.signup-section {
  background: var(--surface);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.signup-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.signup-title {
  font-family: 'Bitter', serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.signup-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.signup-row {
  display: flex;
  gap: 10px;
}

.signup-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.signup-input::placeholder { color: var(--text-subtle); }
.signup-input:focus { border-color: rgba(200,151,74,0.4); }

.signup-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: #1e1b18;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.signup-btn:hover:not(:disabled) {
  background: var(--accent-warm);
  transform: translateY(-1px);
}
.signup-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.signup-note {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.signup-success {
  display: none;
  padding: 20px 24px;
  background: rgba(200,151,74,0.08);
  border: 1px solid rgba(200,151,74,0.2);
  border-radius: 6px;
  font-size: 16px;
  color: var(--accent);
  font-family: 'Bitter', serif;
}

.signup-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 24px 48px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Bitter', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer-brand-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  color: var(--accent);
  border-color: rgba(200,151,74,0.3);
  background: var(--accent-dim);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 6px;
}

.footer-nav-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-link:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-subtle);
}

.footer-contact {
  font-size: 12px;
  color: var(--text-subtle);
}
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-strip-pillars { order: -1; }
  .who-grid { grid-template-columns: 1fr; }
  .podcast-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .podcast-preview-art { order: -1; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .signup-row { flex-direction: column; }
  .signup-btn { text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .about-strip, .who-section, .pillars,
  .podcast-preview, .signup-section { padding: 72px 20px; }
}