/* =============================================================
   The Founder Track — themambouniverse.com
   Palette:  ink #16283C · action blue #22577A · tint #EDF2F7
             accent gold #B08A3E · paper #FBFCFD
   Type:     Source Serif 4 (display) · Inter (body)
   ============================================================= */

:root {
  --ink:    #16283C;
  --blue:   #22577A;
  --blue-d: #183F59;
  --tint:   #EDF2F7;
  --gold:   #B08A3E;
  --paper:  #FBFCFD;
  --white:  #FFFFFF;
  --line:   #D8E0E8;
  --muted:  #5A6B7D;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(22, 40, 60, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Source Serif 4', Georgia, serif; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; font-family: 'Inter', sans-serif; }

p { margin: 0 0 1em; }
a { color: var(--blue); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8em;
}

.section-title { margin-bottom: .6em; }
.section-intro { max-width: 640px; color: var(--muted); margin-bottom: 2.5em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--blue-d); }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--tint); }
.btn-small { padding: 8px 18px; font-size: .88rem; }
.btn-block { display: block; text-align: center; width: 100%; margin-bottom: 10px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 253, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.wordmark {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--ink); text-decoration: none;
}
.wordmark span { color: var(--gold); font-style: italic; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 500; }
.nav a:hover { color: var(--blue); }
.nav .btn { color: var(--white); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 18px; }
.hero-price-note { color: var(--muted); font-size: .95rem; }
.hero-price-note strong { color: var(--ink); font-size: 1.05rem; }

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px;
}
.panel-title { font-family: 'Inter', sans-serif; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1em; }
.glance { list-style: none; margin: 0; padding: 0; }
.glance li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 0; border-bottom: 1px solid var(--tint);
}
.glance li:last-child { border-bottom: none; }
.glance span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.glance strong { font-weight: 600; }

/* ---------- bands ---------- */
.band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 12px; }
.three-col h3 { margin-bottom: .4em; }
.three-col p { color: var(--muted); font-size: .95rem; }

/* ---------- journey (signature) ---------- */
.journey { padding: 72px 0; }
.phases {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  counter-reset: phase;
}
.phase {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 18px;
  position: relative;
  counter-increment: phase;
}
.phase::before {
  content: counter(phase, decimal-leading-zero);
  position: absolute; top: 18px; right: 20px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: var(--tint);
}
.phase-months {
  display: inline-block;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue);
  background: var(--tint);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px;
}
.phase h3 { margin-bottom: .6em; }
.phase ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .9rem; }
.phase li { margin-bottom: 5px; }

/* ---------- testimonials ---------- */
.testimonials { padding: 72px 0; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 12px; }
.quote-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column;
}
.quote-card blockquote {
  margin: 0 0 18px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.08rem; line-height: 1.5; color: var(--ink);
}
.quote-card figcaption { margin-top: auto; display: flex; flex-direction: column; }
.q-name { font-weight: 600; }
.q-role { font-size: .88rem; color: var(--muted); }

/* ---------- pricing ---------- */
.pricing { padding: 72px 0; background: var(--ink); color: var(--white); }
.pricing .section-title { color: var(--white); }
.pricing .eyebrow { color: var(--gold); }
.pricing p { color: #C4D0DC; }
.pricing-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }

.price-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  padding: 32px;
  text-align: center;
}
.price-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .4em; }
.price {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3.2rem; font-weight: 700; line-height: 1; margin: 0 0 .15em;
}
.price .currency { font-size: 1.2rem; font-weight: 600; vertical-align: super; color: var(--gold); }
.price-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.6em; }
.price-card .muted { margin-top: .8em; }
.price-card p.muted, .price-card p.small { color: var(--muted); }

/* ---------- contact ---------- */
.contact { padding: 72px 0 88px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.contact-form label { display: block; font-size: .85rem; font-weight: 600; margin: 16px 0 5px; }
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34, 87, 122, .15);
}
.contact-form button { margin-top: 22px; border: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-notice { padding: 12px 14px; border-radius: 8px; font-size: .92rem; margin-bottom: 18px; }
.form-notice--ok  { background: #E7F4EC; color: #1F5F3B; border: 1px solid #BFE3CC; }
.form-notice--err { background: #FBEAEA; color: #8A2A2A; border: 1px solid #EFC7C7; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--white); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-inner p { margin: 0; font-size: .88rem; color: var(--muted); }

/* ---------- utility pages (checkout errors, success) ---------- */
.utility-page { display: grid; place-items: center; min-height: 100vh; padding: 24px; background: var(--tint); }
.utility-card {
  max-width: 560px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px; text-align: center;
}
.utility-card h1 { font-size: 1.6rem; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .phases, .three-col, .quote-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .phases, .three-col, .quote-grid { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
  .hero { padding: 48px 0 40px; }
}
