/* ============================================================
   SheReads2Lead — shared site styles
   Brand: Cormorant Garamond (display) · DM Sans (body) · Josefin Sans (accent)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:#2880A5; --teal-light:#E2F1F8; --teal-mid:#6AAEC8; --teal-dark:#0F5D7C;
  --purple:#B09460; --purple-light:#F6F1E5; --purple-mid:#D4BE92;
  --ink:#1C1C1A; --ink-soft:#252523; --muted:#888780;
  --rule:#e8e6de; --bg:#FAFAF7; --white:#ffffff;
  --serif:'Cormorant Garamond', Georgia, serif;
  --sans:'DM Sans', system-ui, -apple-system, Arial, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--teal); }
a:hover { color: var(--teal-dark); }

/* ── HEADER / NAV ── */
.site-header { background:#000; }
.site-nav {
  max-width: 1200px; margin: 0 auto;
  padding: 10px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.nav-logo-link { text-decoration: none; display: flex; align-items: center; }
.nav-logo-link img { height: 80px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--teal-mid);
  text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
  font-family: var(--sans);
  padding: 12px 4px; /* 44px tap height */
  transition: color 0.18s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px; width: 44px; height: 44px; cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 22px; height: 2px; background: var(--teal-mid);
  position: relative; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 14px 36px;
  background: var(--teal); color: var(--white);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-gold { background: var(--purple); border: 2px solid var(--purple); color: var(--white); }
.btn-gold:hover { background: var(--purple-mid); border-color: var(--purple-mid); color: var(--ink); }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── HERO ── */
.hero {
  background: var(--ink); color: var(--white);
  padding: 72px 40px 64px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #0e4d6a 0%, transparent 70%);
  opacity: 0.5;
}
.hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.hero--home { padding: 100px 40px 80px; text-align: center; }
.hero--home .hero-inner { max-width: 760px; }
.hero--center { padding: 60px 40px 52px; text-align: center; }
.hero--center .hero-inner { max-width: 680px; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-mid);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.hero--home .hero-eyebrow, .hero--center .hero-eyebrow { justify-content: center; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px; color: var(--white);
}
.hero--center h1 { font-size: clamp(42px, 7vw, 72px); line-height: 1.05; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--teal-mid); }
.hero-sub, .hero p {
  font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.72);
  max-width: 560px; line-height: 1.65;
}
.hero--home .hero-sub, .hero--center .hero-sub { margin-left: auto; margin-right: auto; max-width: 560px; }
.hero-sub { margin-bottom: 40px; }
.hero-brand-name {
  font-family: var(--serif); font-size: clamp(64px, 11vw, 128px);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 16px;
}
.brand-she-reads { color: #2880A5; }
.brand-two-lead { color: #B09460; }
.hero-brand-sub {
  font-family: 'Josefin Sans', var(--sans); font-size: clamp(13px, 1.8vw, 19px);
  font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase;
  color: #B09460; margin-bottom: 32px;
}
.hero-meta {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  font-size: 13px; color: var(--teal-mid); font-weight: 500;
  letter-spacing: 0.05em; margin-bottom: 48px;
}

/* ── SECTIONS / TYPOGRAPHY ── */
section { padding: 80px 40px; }
.container { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; line-height: 1.1; color: var(--ink); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--teal-dark); }
.section-body { font-size: 17px; font-weight: 400; color: var(--ink-soft); max-width: 640px; line-height: 1.75; }
.rule { width: 48px; height: 3px; background: var(--teal); margin: 24px 0; border-radius: 2px; }

/* ── HOME: WHAT ── */
.what { background: var(--white); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.what-col h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.what-col p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 12px; }

/* ── HOME: WHO ── */
.who { background: var(--ink); color: var(--white); }
.who .section-label { color: var(--teal-mid); }
.who .section-title { color: var(--white); }
.who .rule { background: var(--teal-mid); }
.who .section-body { color: rgba(255,255,255,0.75); max-width: 700px; font-size: 20px; }
.who-callout { margin-top: 48px; padding: 32px 36px; border-left: 3px solid var(--teal); background: rgba(255,255,255,0.04); border-radius: 0 4px 4px 0; max-width: 680px; }
.who-callout p { font-family: var(--serif); font-size: 22px; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6; }
.who-footnote { margin-top: 24px; font-size: 15px; color: rgba(255,255,255,0.5); }

/* ── HOME: EXPECT ── */
.expect { background: var(--bg); padding: 56px 40px; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.expect-card { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; padding: 32px 28px; }
.expect-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--teal-mid); line-height: 1; margin-bottom: 10px; }
.expect-card h4 { font-family: var(--sans); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.expect-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.expect-logo-card { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 200px; }
.expect-logo-card img { width: 100%; height: 100%; object-fit: cover; }

/* ── HOME: AUDIO ── */
.audio { background: var(--teal-light); }
.audio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.audio .section-title { margin-bottom: 0; }
.audio-body p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
.audio-body p:last-child { margin-bottom: 0; }
.audio-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--teal-mid); border-radius: 20px; padding: 6px 16px; font-size: 13px; font-weight: 500; color: var(--teal-dark); margin-bottom: 24px; }

/* ── HOME: BUSY ── */
.busy { background: var(--purple-light); }
.busy-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.busy .section-label { color: var(--purple); }
.busy .rule { background: var(--purple-mid); margin-left: auto; margin-right: auto; }
.busy p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.busy-title-small { font-family: var(--serif); font-size: clamp(36px, 5vw, 54px); font-weight: 700; color: var(--ink); line-height: 1.1; }
.busy-title-large { font-family: var(--serif); font-size: clamp(58px, 9vw, 100px); font-weight: 700; font-style: italic; color: var(--teal-dark); line-height: 1.0; margin-bottom: 20px; }
.busy-quote { margin: 40px auto 0; padding: 36px 48px; background: var(--white); border-radius: 4px; border-top: 3px solid var(--purple); max-width: 640px; position: relative; }
.busy-quote::before { content: '\201C'; font-family: var(--serif); font-size: 120px; color: var(--purple-mid); position: absolute; top: -20px; left: 20px; line-height: 1; opacity: 0.6; }
.busy-quote p { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); font-style: italic; color: var(--ink); margin: 0; line-height: 1.5; position: relative; z-index: 1; }

/* ── HOME: BACKGROUND ── */
.background { background: var(--white); }
.background-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; margin-top: 52px; align-items: start; }
.background-body p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.background-aside { background: var(--bg); border: 1px solid var(--rule); border-radius: 4px; padding: 28px; }
.background-aside h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.background-aside p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 12px; }
.background-aside p:last-child { margin-bottom: 0; }
.background-aside strong { color: var(--ink); font-weight: 500; }

/* ── CTA SECTION ── */
.cta-section { background: var(--teal-dark); color: var(--white); text-align: center; padding: 80px 40px; }
.cta-section .section-title { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.cta-section .section-title em { color: var(--purple); font-style: italic; }
.cta-section .section-label { color: var(--purple-mid); }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 40px; }
.cta-section .btn { background: var(--purple); color: var(--white); border: 2px solid var(--purple); }
.cta-section .btn:hover { background: var(--purple-mid); border-color: var(--purple-mid); color: var(--ink); }
.cta-rule { width: 48px; height: 3px; background: var(--purple-mid); margin: 20px auto 32px; border-radius: 2px; }

/* ── TICKET STRIP ── */
.ticket-cta-strip { background: var(--purple-light); border-top: 3px solid var(--purple-mid); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.ticket-cta-strip p { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); margin: 0; }
.ticket-cta-strip span { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); display: block; margin-top: 4px; font-weight: 400; }
.btn-ticket-active { display: inline-block; padding: 12px 24px; background: var(--purple); color: var(--white); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; border-radius: 2px; border: 2px solid var(--purple); transition: background 0.2s; white-space: nowrap; }
.btn-ticket-active:hover { background: var(--purple-mid); border-color: var(--purple-mid); color: var(--ink); }

/* ── MAIN / INNER PAGES ── */
.main { max-width: 1000px; margin: 0 auto; padding: 64px 40px 80px; }

/* ── DATES ── */
.dates-section-title { font-family: var(--serif); font-size: clamp(26px, 4vw, 34px); font-weight: 700; line-height: 1.1; color: var(--ink); margin-bottom: 20px; }
.dates-section-title.past { margin-top: 64px; }
.dates-list { display: flex; flex-direction: column; gap: 0; }
.date-row { display: grid; grid-template-columns: 120px 1fr; gap: 0; border-bottom: 1px solid var(--rule); }
.date-row:first-child { border-top: 1px solid var(--rule); }
.date-left { padding: 28px 24px 28px 0; border-right: 1px solid var(--rule); }
.date-month { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.date-day { font-family: var(--serif); font-size: 36px; font-weight: 700; line-height: 1; color: var(--ink); }
.date-time { font-size: 12px; color: var(--muted); margin-top: 4px; }
.date-right { padding: 28px 0 28px 32px; }
.date-status { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.status-tbd { color: var(--muted); }
.status-done { color: var(--teal); }
.book-block { margin-top: 4px; }
.book-layout { display: flex; gap: 20px; align-items: flex-start; }
.book-cover-wrap { flex-shrink: 0; width: 90px; }
.book-cover-wrap a { display: block; }
.book-cover-wrap img { width: 90px; height: auto; border-radius: 2px; box-shadow: 2px 4px 12px rgba(0,0,0,0.18); display: block; object-fit: cover; }
.book-info { flex: 1; }
.book-title-large { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.book-author { font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; }
.book-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-top: 10px; margin-bottom: 4px; }
.book-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.book-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--teal-dark); background: var(--teal-light); padding: 7px 14px; border-radius: 20px; text-decoration: none; transition: background 0.15s; }
.book-link:hover { background: var(--teal-mid); }
.book-link-secondary { color: var(--purple); background: var(--purple-light); }
.book-link-secondary:hover { background: var(--purple-mid); color: var(--white); }
.book-link-ticket { display: inline-block; padding: 7px 16px; background: var(--purple); color: var(--white); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
.book-link-ticket:hover { background: var(--purple-mid); color: var(--ink); }
.no-book { font-size: 15px; color: var(--muted); font-style: italic; }
.tbd-note { font-size: 14px; color: var(--muted); margin-top: 4px; }
.affiliate-note-row { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 6px; display: block; }
.tickets-banner { margin-top: 56px; background: var(--ink); color: var(--white); border-radius: 6px; padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.tickets-banner h3 { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.tickets-banner p { font-size: 15px; color: rgba(255,255,255,0.65); }
.tickets-banner .banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-tickets { display: inline-block; padding: 12px 28px; background: var(--purple); color: var(--white); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
.btn-tickets:hover { background: var(--purple-mid); color: var(--ink); }
.btn-notify { display: inline-block; padding: 12px 28px; background: var(--teal); color: var(--white); font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.btn-notify:hover { background: var(--teal-dark); color: var(--white); }
.amazon-disclosure { background: var(--purple-light); border-top: 1px solid var(--purple-mid); padding: 12px 40px; text-align: center; }
.amazon-disclosure p { font-family: var(--sans); font-size: 12px; color: var(--muted); margin: 0; }

/* ── ABOUT ── */
.leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 72px; }
.leader-photo { width: 100%; aspect-ratio: 4/3; background: var(--teal-light); border-radius: 4px; margin-bottom: 24px; overflow: hidden; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-name { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.leader-title { font-size: 14px; font-weight: 500; color: var(--teal); letter-spacing: 0.04em; margin-bottom: 16px; }
.leader-bio p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 12px; }
.leader-bio p:last-child { margin-bottom: 0; }
.mission { background: var(--ink); color: var(--white); padding: 64px 40px; border-radius: 6px; margin-bottom: 32px; }
.mission .section-label { color: var(--teal-mid); }
.mission .section-title { color: var(--white); }
.mission .rule { background: var(--teal-mid); }
.mission p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 16px; }
.mission p:last-child { margin-bottom: 0; }
.cta { text-align: center; padding: 48px 40px; background: var(--teal-light); border-radius: 6px; margin-top: 32px; }
.cta h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.cta p { font-size: 16px; color: var(--ink-soft); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn { padding: 13px 32px; }
.btn-outline { background: transparent; border: 1px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ── FAQ ── */
.faq-category { margin-bottom: 64px; }
.faq-category:last-child { margin-bottom: 0; }
.category-label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.category-title { font-family: var(--serif); font-size: clamp(26px, 4vw, 36px); font-weight: 700; color: var(--ink); line-height: 1.1; margin-bottom: 12px; }
.category-rule { width: 40px; height: 3px; background: var(--purple-mid); border-radius: 2px; margin-bottom: 36px; }
.faq-item { border-top: 1px solid var(--rule); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 12px; }
.faq-a { font-size: 17px; color: var(--ink-soft); line-height: 1.75; }
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { margin: 10px 0 12px 0; padding: 0; list-style: none; }
.faq-a ul li { padding-left: 20px; position: relative; margin-bottom: 8px; font-size: 16px; color: var(--ink-soft); line-height: 1.65; }
.faq-a ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--teal); font-weight: 600; }
.faq-a strong { color: var(--ink); font-weight: 600; }
.faq-a a { color: var(--teal); text-decoration: none; font-weight: 500; }
.faq-a a:hover { text-decoration: underline; }
.cta-strip { margin-top: 32px; padding: 40px 48px; background: var(--teal-dark); border-radius: 4px; text-align: center; }
.cta-strip p { font-family: var(--serif); font-size: clamp(20px, 3vw, 28px); font-style: italic; color: var(--white); margin-bottom: 24px; line-height: 1.4; }
.cta-strip .btn { background: var(--purple); }
.cta-strip .btn:hover { background: var(--purple-mid); color: var(--ink); }
.cta-strip .btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.4); }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── SIGNUP ── */
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1100px; margin: 0 auto; padding: 64px 40px; align-items: start; }
.left-col { padding-right: 48px; }
.left-col .section-label { color: var(--teal); }
.left-col h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.1; color: var(--ink); margin-bottom: 16px; }
.left-col h2 em { font-style: italic; color: var(--teal-dark); }
.left-col .rule { margin: 20px 0 24px; }
.left-col p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
.what-to-expect { margin-top: 32px; }
.what-to-expect h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.what-to-expect ul { list-style: none; padding: 0; }
.what-to-expect li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 17px; color: var(--ink-soft); line-height: 1.6; }
.what-to-expect li::before { content: '\2192'; color: var(--teal); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.form-card { background: var(--white); border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; }
.form-card-heading { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); padding: 24px 28px 4px; }
.form-card-desc { font-size: 14px; color: var(--muted); padding: 0 28px 20px; border-bottom: 1px solid var(--rule); }
.form-card iframe { display: block; border: none; width: 100%; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.4); text-align: center; padding: 32px 40px; font-size: 13px; letter-spacing: 0.04em; }
.site-footer strong { color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 20px; justify-content: center; margin-bottom: 18px; }
.footer-social a { color: rgba(255,255,255,0.5); display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; transition: color 0.18s ease; }
.footer-social a:hover { color: var(--white); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.site-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-partner a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }
.footer-meta { margin-top: 4px; }

/* ── 404 ── */
.notfound { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 40px; }
.notfound .code { font-family: var(--serif); font-size: clamp(80px, 14vw, 140px); font-weight: 700; color: var(--teal-mid); line-height: 1; }
.notfound h1 { font-family: var(--serif); font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: var(--ink); margin: 8px 0 16px; }
.notfound p { font-size: 17px; color: var(--ink-soft); max-width: 480px; margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .background-grid { grid-template-columns: 1fr 300px; gap: 40px; }
  .expect-grid { gap: 16px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { padding: 10px 24px; }
  .nav-logo-link img { height: 60px; }
  .nav-links {
    display: none; flex-basis: 100%; flex-direction: column; gap: 0;
    align-items: stretch; padding-top: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 4px; border-top: 1px solid rgba(255,255,255,0.08); width: 100%;
  }
  .what-grid, .audio-grid, .background-grid, .expect-grid, .leaders-grid, .signup-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .left-col { padding-right: 0; margin-bottom: 8px; }
  .background-grid { margin-top: 40px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 56px 24px; }
  .hero, .hero--home, .hero--center { padding: 56px 24px 48px; }
  .expect { padding: 48px 24px; }
  .main { padding: 48px 24px 64px; }
  .signup-grid { padding: 40px 24px; }
  .ticket-cta-strip, .tickets-banner, .mission, .cta, .cta-strip, .busy-quote { padding-left: 24px; padding-right: 24px; }
  .hero-meta { gap: 8px 20px; }
  .date-row { grid-template-columns: 92px 1fr; }
  .date-left { padding: 20px 16px 20px 0; }
  .date-right { padding: 20px 0 20px 20px; }
  .book-layout { flex-direction: column; gap: 14px; }
  .book-cover-wrap { width: 110px; }
  .book-cover-wrap img { width: 110px; }
  .tickets-banner, .ticket-cta-strip { flex-direction: column; align-items: flex-start; }
  .tickets-banner .banner-actions, .ticket-cta-strip a { width: 100%; }
  .btn, .btn-ticket-active, .btn-tickets, .btn-notify, .book-link-ticket { text-align: center; }
  .hero-cta .btn { flex: 1 1 auto; text-align: center; }
  .footer-links { gap: 8px 16px; }
  .amazon-disclosure { padding: 12px 24px; }
}
