@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --navy:      #1B3A5C;
  --navy-dark: #112640;
  --amber:     #E8A838;
  --amber-lt:  #F5C96A;
  --cream:     #FAF8F4;
  --charcoal:  #2E2E2E;
  --slate:     #6B7280;
  --white:     #FFFFFF;
  --border:    #E2DDD6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1080px;
  --section-pad: 80px 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ── FADE-IN ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--amber);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.nav-brand span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 2px solid var(--amber);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-lt); border-color: var(--amber-lt); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 100px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,168,56,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 72px 24px 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--amber); }
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-body {
  color: var(--slate);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 40px;
}

/* ── PROBLEM STRIP ── */
.problem-strip {
  background: var(--white);
  padding: 64px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.problem-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.problem-strip p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 1rem;
}

/* ── JOURNEY PREVIEW (home) ── */
.journey-section { padding: var(--section-pad); background: var(--cream); }

.journey-words {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 36px;
}
.journey-word {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}
.journey-word:last-child { border-right: none; }
.journey-word:hover { background: var(--navy); }
.journey-word:hover .jw-num { color: var(--amber); }
.journey-word:hover .jw-label { color: var(--white); }
.journey-word:hover .jw-desc { color: rgba(255,255,255,0.6); }
.jw-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 6px;
}
.jw-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.jw-desc {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.5;
  transition: color 0.2s;
}

@media (max-width: 640px) {
  .journey-words {
    grid-template-columns: 1fr 1fr;
  }
  .journey-word {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .journey-word:nth-child(2n) { border-right: none; }
  .journey-word:nth-child(3),
  .journey-word:nth-child(4) { border-bottom: none; }
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}
.proof-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 18px;
  line-height: 1.45;
}
.proof-strip cite {
  font-size: 0.8rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

/* ── HOME TEASER GRID ── */
.teaser-section {
  padding: var(--section-pad);
  background: var(--white);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.teaser-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.teaser-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
}
.teaser-card strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.teaser-card p {
  font-size: 0.875rem;
  color: var(--slate);
}
@media (max-width: 768px) {
  .teaser-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── FOOTER CTA ── */
.footer-cta {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 14px;
}
.footer-cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ── SESSIONS PAGE ── */
.sessions-section { padding: var(--section-pad); }

.journey-arc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.arc-word {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--navy);
}
.arc-arrow {
  color: var(--amber);
  font-size: 1.1rem;
}

.session-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--white);
}
.session-number {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  text-align: center;
}
.session-num-big {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.session-word {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--amber);
  font-weight: 700;
}
.session-content { padding: 32px 36px; }
.session-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.session-desc {
  color: var(--slate);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.session-outcomes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 20px;
}
.session-outcomes li {
  font-size: 0.85rem;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
}
.session-outcomes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

@media (max-width: 640px) {
  .session-card { grid-template-columns: 1fr; }
  .session-number {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 20px 24px;
  }
  .session-num-big { font-size: 2rem; margin-bottom: 0; }
  .session-content { padding: 20px 24px; }
  .session-outcomes { grid-template-columns: 1fr; }
}

/* ── INCLUDED DARK (sessions page) ── */
.included-dark {
  background: var(--navy);
  padding: var(--section-pad);
}
.included-header {
  text-align: center;
  margin-bottom: 40px;
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.included-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 24px;
}
.included-box h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: 14px;
}
.included-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.included-box li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
}
.included-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
}
.included-cta { text-align: center; }

@media (max-width: 600px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ── PRICING PAGE ── */
.pricing-section { padding: var(--section-pad); }

.pricing-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--navy);
  box-shadow: 0 6px 28px rgba(27,58,92,0.12);
  transform: translateY(-6px);
}
.pricing-card-header {
  padding: 24px 24px 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-card-header {
  background: var(--navy);
}
.pricing-tier-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.pricing-team-size {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-team-size { color: rgba(255,255,255,0.55); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-card-body { padding: 20px 24px 24px; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { transform: none; }
}

.coaching-addon {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--amber);
  border-radius: 6px;
  padding: 28px;
  margin-top: 32px;
  margin-bottom: 28px;
}
.coaching-addon h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.coaching-addon p { color: var(--slate); font-size: 0.95rem; }

.fine-print {
  font-size: 0.8rem;
  color: var(--slate);
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ── CONTACT PAGE ── */
.contact-section { padding: var(--section-pad); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.contact-left p { color: var(--slate); margin-bottom: 28px; font-size: 1rem; }

.contact-what { margin-top: 36px; }
.contact-what h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-what ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.contact-what li {
  font-size: 0.875rem;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.contact-what li::before { content: '→'; position: absolute; left: 0; color: var(--amber); }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-card .card-sub { font-size: 0.875rem; color: var(--slate); margin-bottom: 24px; }

.email-cta { display: flex; flex-direction: column; gap: 14px; }
.email-address {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}
.email-address a:hover { color: var(--amber); }
.response-note {
  font-size: 0.8rem;
  color: var(--slate);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.expect-list li {
  font-size: 0.875rem;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.expect-list li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 660px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
  margin-bottom: 22px;
}
.faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.faq-item p { color: var(--slate); font-size: 0.95rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  padding: 44px 24px;
  text-align: center;
  border-top: 2px solid var(--amber);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand span { color: var(--amber); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ── MOBILE GLOBAL FIXES ── */
@media (max-width: 480px) {
  :root { --section-pad: 56px 20px; }
  .hero { padding: 72px 20px 64px; }
  .page-hero { padding: 56px 20px 48px; }
  .btn { padding: 12px 22px; font-size: 0.78rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 280px; text-align: center; }
  .contact-card { padding: 24px; }
}
