/* ============================================================
   NARRATIVE CONFIDENCE MASTERCLASS — That Story Guy
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --clr-dark:       #0e0e0e;
  --clr-dark-2:     #1a1a1a;
  --clr-mid:        #3a3a3a;
  --clr-light:      #f7f5f0;
  --clr-white:      #ffffff;
  --clr-accent:     #c8a96e;      /* warm gold — storytelling warmth */
  --clr-accent-lt:  #e8d5b0;
  --clr-accent-dk:  #9e7d48;

  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', -apple-system, sans-serif;

  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      20px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,.07);
  --shadow-md:      0 6px 24px rgba(0,0,0,.1);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.14);

  --max-w:          1140px;
  --section-pad:    100px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--clr-white);
  color: var(--clr-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-dark);
  padding: 16px 36px;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--clr-accent-dk);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-sm {
  border-color: var(--clr-dark);
  color: var(--clr-dark);
  padding: 10px 22px;
  font-size: .85rem;
}
.btn-outline-sm:hover {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.btn-full { width: 100%; text-align: center; padding: 18px 36px; }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .6;
}

/* ── TAGS ────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--clr-light);
  color: var(--clr-mid);
  border: 1px solid rgba(0,0,0,.08);
}
.tag-accent {
  background: var(--clr-accent);
  color: var(--clr-dark);
  border-color: var(--clr-accent);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 0;
  background: var(--clr-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--clr-accent-lt) 0%, transparent 70%);
  opacity: .35;
  pointer-events: none;
}
/* Two-column hero layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 420px;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-eyebrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--clr-dark);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--clr-accent-dk);
  position: relative;
}
.hero-subheadline {
  font-size: 1.2rem;
  max-width: 580px;
  color: var(--clr-mid);
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-subheadline em {
  color: var(--clr-dark);
  font-style: italic;
}
.hero-cta {
  margin-bottom: 60px;
}
.cta-note {
  margin-top: 12px;
  font-size: .85rem;
  color: var(--clr-mid);
}
.hero-detail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding: 40px 0 60px;
  border-top: 1px solid rgba(0,0,0,.09);
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--clr-mid);
  font-weight: 500;
}
.detail-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clr-accent-dk);
}
.hero-scribble {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--clr-light);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

/* ── SECTIONS — BASE ─────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}
.section-light {
  background: var(--clr-light);
}
.section-dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.section-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-accent-dk);
  margin-bottom: 16px;
  display: block;
}
.section-eyebrow-light {
  color: var(--clr-accent);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 52px;
}
.section-title em {
  font-style: italic;
  color: var(--clr-accent-dk);
}
.section-title-light em {
  color: var(--clr-accent);
}
.section-title-light {
  color: var(--clr-white);
}

/* ── PROBLEM ─────────────────────────────────────────────────── */
.section-problem {
  background: var(--clr-light);
}
.problem-grid {
  max-width: 680px;
}
.problem-text .section-title { margin-bottom: 24px; }
.problem-text p {
  color: var(--clr-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.problem-text p em { color: var(--clr-dark); font-style: normal; font-weight: 600; }
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pain-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
}
.pain-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}
.pain-card p {
  font-size: .9rem;
  color: var(--clr-mid);
  line-height: 1.55;
  font-style: normal;
}

/* ── OUTCOMES ────────────────────────────────────────────────── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-card {
  background: var(--clr-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.outcome-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--clr-accent-lt);
  line-height: 1;
  margin-bottom: 16px;
}
.outcome-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.outcome-card p {
  font-size: .9rem;
  color: var(--clr-mid);
  line-height: 1.6;
}
.outcome-card p em {
  color: var(--clr-dark);
  font-style: normal;
  font-weight: 600;
}

/* ── AGENDA ──────────────────────────────────────────────────── */
.section-agenda .section-title { color: var(--clr-white); }
.agenda-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}
.agenda-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  max-width: 640px;
}
.agenda-item:last-child { border-bottom: none; }
.agenda-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}
.agenda-content p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.65;
}

/* ── WHO IS THIS FOR ─────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}
.who-card {
  border-radius: var(--radius-md);
  padding: 40px;
}
.who-yes {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.who-no {
  background: var(--clr-light);
  color: var(--clr-mid);
}
.who-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.who-no h3 { border-color: rgba(0,0,0,.1); }
.who-card ul { display: flex; flex-direction: column; gap: 12px; }
.who-card li {
  padding-left: 20px;
  position: relative;
  font-size: .95rem;
  line-height: 1.55;
}
.who-yes li { color: rgba(255,255,255,.8); }
.who-yes li::before { content: '—'; position: absolute; left: 0; color: var(--clr-accent); }
.who-no li::before { content: '—'; position: absolute; left: 0; color: var(--clr-mid); }

/* ── HOST ────────────────────────────────────────────────────── */
.host-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.host-img-wrap { position: relative; }
.host-img-placeholder {
  width: 280px;
  height: 340px;
  background: var(--clr-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-accent-dk);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.host-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.host-bio .section-title { margin-bottom: 8px; }
.host-tagline {
  font-size: .95rem;
  color: var(--clr-accent-dk);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.host-bio p {
  color: var(--clr-mid);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.host-bio p em { color: var(--clr-dark); font-style: normal; font-weight: 600; }
.host-quote {
  border-left: 3px solid var(--clr-accent);
  padding: 16px 24px;
  margin-top: 24px;
  background: var(--clr-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--clr-dark);
  line-height: 1.6;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
}
.stars {
  color: var(--clr-accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: .95rem;
  color: var(--clr-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-dark);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: .9rem; }
.testimonial-author small { font-size: .8rem; color: var(--clr-mid); }
.testimonial-note {
  font-size: .8rem;
  color: var(--clr-mid);
  text-align: center;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.09);
}
.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--clr-dark);
  transition: color .15s;
}
.faq-item summary:hover { color: var(--clr-accent-dk); }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-accent-dk);
  transition: transform .2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 0 24px;
  font-size: .95rem;
  color: var(--clr-mid);
  line-height: 1.7;
}

/* ── REGISTER ────────────────────────────────────────────────── */
.section-register {
  padding: var(--section-pad) 0;
}
.register-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.register-desc {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.register-promise {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promise-item {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
/* Form */
.register-form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-dark);
}
.optional { color: var(--clr-mid); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,.13);
  border-radius: var(--radius-sm);
  color: var(--clr-dark);
  background: var(--clr-white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent-dk);
  box-shadow: 0 0 0 3px var(--clr-accent-lt);
}
.form-group textarea { resize: vertical; }
.form-note {
  margin-top: 16px;
  font-size: .75rem;
  color: var(--clr-mid);
  text-align: center;
  line-height: 1.5;
}
/* Success state */
.form-success {
  text-align: center;
  padding: 40px 0;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.form-success p { color: var(--clr-mid); margin-bottom: 8px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-dark-2);
  padding: 48px 0;
  color: rgba(255,255,255,.5);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-links a:hover { color: var(--clr-accent); }
.footer-copy { font-size: .8rem; width: 100%; text-align: center; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .outcomes-grid { grid-template-columns: repeat(3, 1fr); }
  .host-inner { grid-template-columns: 240px 1fr; gap: 48px; }
  .host-img-placeholder { width: 220px; height: 280px; }
}

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 320px; gap: 40px; }
  .hero-img { height: 380px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .hero { padding: 120px 0 0; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; padding-bottom: 0; }
  .hero-visual { display: none; } /* hide on mobile for cleanliness */
  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-detail-strip { gap: 20px; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-cards { grid-template-columns: 1fr; }

  .outcomes-grid { grid-template-columns: 1fr; }

  .agenda-item { grid-template-columns: 80px 1fr; gap: 20px; }

  .who-grid { grid-template-columns: 1fr; }

  .host-inner { grid-template-columns: 1fr; }
  .host-img-placeholder { width: 200px; height: 240px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .register-inner { grid-template-columns: 1fr; gap: 48px; }
  .register-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-eyebrow { flex-direction: column; align-items: flex-start; }
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
