:root {
  --crimson: #9B1B30;
  --gold: #D4A017;
  --charcoal: #1A1A1A;
  --warm-black: #111111;
  --warm-gray: #E8E4DF;
  --light-gray: #F5F2EE;
  --text: #2C2420;
  --text-light: #6B5F55;
  --white: #FAFAF7;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--warm-black);
  color: var(--white);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(155, 27, 48, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  padding: 6rem 4rem 6rem 8vw;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250, 250, 247, 0.75);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.hero-locations {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.hero-locations .dot { color: rgba(212, 160, 23, 0.4); }

.hero-portrait-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  max-width: 480px;
  z-index: 1;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  filter: drop-shadow(-20px 0 40px rgba(0,0,0,0.5));
}

/* STATS */
.stats {
  background: var(--crimson);
  padding: 3.5rem 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3.5rem;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  display: block;
}

.stat-plus {
  font-size: 2rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.65);
  margin-top: 0.6rem;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(250, 250, 247, 0.2);
  flex-shrink: 0;
}

/* TALKS */
.talks {
  background: var(--warm-black);
  padding: 8rem 0 6rem;
}

.talks-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1rem;
  color: rgba(250, 250, 247, 0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 4rem;
}

.track-group {
  margin-bottom: 3.5rem;
}

.track-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.talk-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(250, 250, 247, 0.06);
  transition: background 0.2s;
}

.talk-row:hover { background: rgba(255,255,255,0.02); }

.talk-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--crimson);
  min-width: 2.5rem;
  padding-top: 0.1rem;
}

.talk-body { flex: 1; }

.talk-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.talk-desc {
  font-size: 0.875rem;
  color: rgba(250, 250, 247, 0.5);
  line-height: 1.6;
}

.talks-cta {
  margin-top: 3rem;
}

.talks-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.talks-link:hover { border-color: var(--gold); color: var(--white); }

/* VOICE */
.voice {
  background: var(--warm-gray);
  padding: 7rem 0;
}

.voice-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.voice .section-num { color: var(--crimson); }

.voice-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 2rem;
}

.voice-meta { margin-top: 1.5rem; }

.voice-cred {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ORIGIN */
.origin {
  background: var(--charcoal);
  padding: 8rem 0;
}

.origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.origin-text .section-num { color: var(--crimson); }

.origin-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.origin-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 250, 247, 0.65);
  margin-bottom: 1.5rem;
}

.origin-body--italic {
  font-style: italic;
  color: rgba(250, 250, 247, 0.45);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.origin-highlight {
  color: var(--gold);
  font-weight: 600;
}

.origin-credentials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.08);
}
.cred-item:last-child { border-bottom: none; }

.cred-deg {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--crimson);
  min-width: 4rem;
}

.cred-field {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.cred-field span {
  display: block;
  font-weight: 400;
  color: rgba(250, 250, 247, 0.45);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

/* CLOSING */
.closing {
  background: var(--crimson);
  padding: 6rem 0;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
}

/* FOOTER */
.footer {
  background: var(--warm-black);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(250, 250, 247, 0.06);
}

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

.footer-brand, .footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(250, 250, 247, 0.5);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}

.footer-link {
  color: rgba(250, 250, 247, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }

.footer-sep { color: rgba(250, 250, 247, 0.2); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    flex-direction: column;
  }
  .hero-inner {
    padding: 4rem 2rem 2rem;
    max-width: 100%;
    text-align: center;
  }
  .hero-locations { justify-content: center; flex-wrap: wrap; }
  .hero-portrait-wrap {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .stat { padding: 0 1.5rem; }
  .stat-divider { display: none; }

  .origin-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .origin-credentials { padding-top: 0; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-brand, .footer-contact { flex-direction: column; gap: 0.4rem; }
  .footer-sep { display: none; }

  .talks-inner, .voice-inner, .closing-inner { padding: 0 1.5rem; }
  .talks { padding: 5rem 0 4rem; }
  .origin, .voice { padding: 5rem 0; }
  .closing { padding: 4rem 0; }
}