/* ============================================================
   Clarity in Motion — landing page
   Design language inspired by Natalie Bacon / Mom On Purpose:
   editorial high-contrast serif headlines, clean letterspaced
   sans, a handwritten script flourish, pill buttons, and calm,
   airy, centred spacing — rendered in the Clarity in Motion
   palette (turquoise / yellow / gold / black), not warm neutrals.
   ============================================================ */

:root {
  --turquoise: #0e6e70;
  --turquoise-deep: #0a5254;
  --turquoise-soft: #eaf3f2;   /* editorial tint panel (replaces her beige) */
  --turquoise-tint: #f4f9f8;
  --yellow: #f4c430;           /* primary CTA / highlight only */
  --yellow-hover: #e6b41f;
  --gold: #c4a24a;             /* thin premium accents only */
  --ink: #23241f;
  --ink-soft: #55605d;
  --paper: #fdfcf9;
  --white: #ffffff;
  --line: #e7e5db;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Sacramento", "Segoe Script", cursive;

  --maxw: 1160px;
  --radius: 4px;               /* Natalie's cards are near-square; keep corners subtle */
  --shadow: 0 24px 60px -34px rgba(10, 60, 60, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1.1rem; }
a { color: var(--turquoise); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 780px; }

.section { padding: clamp(72px, 10vw, 140px) 0; }

/* Editorial helpers */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--turquoise);
  margin: 0 0 1.4rem;
}
.eyebrow.centered { text-align: center; }
.eyebrow.light { color: var(--yellow); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--turquoise);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.accent-text { color: var(--turquoise); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.section-head h2 { margin-bottom: 0.5rem; }
.section-sub { color: var(--ink-soft); font-size: 1.1rem; margin: 0; font-weight: 300; }

.body-lg { font-size: 1.18rem; color: var(--ink-soft); font-weight: 300; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Pill buttons (Natalie's signature control) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 19px 42px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

/* Primary CTA — yellow, the site's most important action */
.btn-accent { background: var(--yellow); color: #241f00; box-shadow: 0 12px 26px -14px rgba(180, 140, 0, 0.75); }
.btn-accent:hover { background: var(--yellow-hover); }

/* Dark pill — the everyday button (her espresso pill, in deep turquoise) */
.btn-dark { background: var(--turquoise-deep); color: #fff; }
.btn-dark:hover { background: var(--turquoise); }

/* Quiet outline pill */
.btn-outline { background: transparent; color: var(--turquoise); border-color: var(--turquoise); }
.btn-outline:hover { background: var(--turquoise-soft); }
.btn-ghost { background: transparent; color: var(--turquoise); border-color: var(--gold); }
.btn-ghost:hover { background: var(--turquoise-soft); }

.btn-sm { padding: 13px 26px; font-size: 0.68rem; }
.btn-lg { padding: 22px 52px; font-size: 0.82rem; }

/* ---------- Header (centred editorial wordmark) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 16px 0 14px;
}
.brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; text-decoration: none; color: var(--ink); }
.brand-caps { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.34em; font-size: 0.92rem; font-weight: 500; padding-left: 0.34em; }
.brand-script { font-family: var(--font-script); font-size: 2.1rem; color: var(--turquoise); margin-top: -2px; }
.site-nav { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.site-nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
.site-nav a:hover { color: var(--turquoise); }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(120% 90% at 82% -10%, var(--turquoise-soft) 0%, transparent 58%), var(--paper);
  padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 9vw, 120px);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.hero-copy h1 { margin-bottom: 0.7rem; }
.hero-copy h1 .script { display: block; font-size: clamp(3.2rem, 7vw, 5.4rem); color: var(--turquoise); margin: 0.1em 0 0; }
.lede { font-size: 1.2rem; color: var(--ink-soft); font-weight: 300; max-width: 42ch; margin-bottom: 2.2rem; }
.lede p { margin: 0 0 1rem; }
.lede p:last-child { margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 1.3rem; }
.hero-note { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-soft); margin: 0; }

/* Photo frames — thin gold hairline, gallery feel */
.photo-frame { margin: 0; padding: 12px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.photo-frame::after { content: ""; position: absolute; inset: 12px; border: 1px solid var(--gold); pointer-events: none; }
.photo-img { width: 100%; height: auto; display: block; object-fit: cover; }
.photo-img--hero { aspect-ratio: 2 / 3; object-position: 50% 50%; }
.photo-img--square { aspect-ratio: 1 / 1; object-position: 50% 28%; }

/* ---------- Credibility strip ---------- */
.credibility { background: var(--turquoise); color: #fff; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.cred-row { list-style: none; margin: 0; padding: 22px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; }
.cred-row li { padding: 6px 24px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; color: #eafcfb; position: relative; }
.cred-row li + li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 14px; background: rgba(255,255,255,0.3); }

/* ---------- Problem ---------- */
.problem { text-align: center; }
.problem h2 { margin-bottom: 1.3rem; }

/* ---------- Story (Natalie's "Welcome, I'm..." band) ---------- */
.story { background: var(--turquoise-tint); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.story-copy .script-head { font-family: var(--font-script); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--turquoise); display: block; margin-bottom: 0.2rem; }
.story-copy p { color: var(--ink-soft); font-weight: 300; }

/* ---------- Approach (numbered editorial principles) ---------- */
.approach { background: var(--paper); }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.principle { text-align: center; padding: 0 8px; }
.principle-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--gold); line-height: 1; display: block; }
.principle h3 { margin: 0.6rem 0 0.5rem; font-size: 1.25rem; }
.principle p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; font-weight: 300; }
.principle::after { content: ""; display: block; width: 28px; height: 1px; background: var(--gold); margin: 18px auto 0; }

/* ---------- Pricing (numbered program blocks) ---------- */
.pricing { background: var(--turquoise-soft); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 0 0 36px; display: flex; flex-direction: column; height: 100%;
  box-shadow: 0 20px 46px -32px rgba(10,60,60,0.5); position: relative;
}
.card--featured { border: 1.5px solid var(--gold); box-shadow: 0 30px 60px -34px rgba(10,60,60,0.55); }

/* Two-tone header panel (her neutral block, in turquoise) */
.card-head { background: var(--turquoise-deep); color: #fff; padding: 30px 30px 26px; text-align: center; position: relative; }
.card--featured .card-head { background: var(--turquoise); }
.card-num { font-family: var(--font-script); font-size: 2.1rem; color: var(--yellow); line-height: 1; display: block; margin-bottom: 2px; }
.card-head h3 { color: #fff; margin: 0 0 4px; font-size: 1.5rem; }
.card-head .tier-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em; color: #bfe6e4; margin: 0 0 10px; }
.price { font-family: var(--font-display); font-size: 2.4rem; color: #fff; font-weight: 600; margin: 6px 0 0; }
.price .free { color: var(--yellow); }
.ribbon {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow); color: #241f00; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px;
}

.card-body { padding: 26px 30px 0; display: flex; flex-direction: column; flex: 1; }
.usp { font-weight: 600; color: var(--ink); font-size: 1rem; text-align: center; margin: 0 0 22px; font-family: var(--font-display); font-style: italic; line-height: 1.4; }

.ticks { list-style: none; margin: 0 0 24px; padding: 0; }
.ticks li { position: relative; padding: 0 0 13px 30px; color: var(--ink-soft); font-size: 0.95rem; font-weight: 300; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: 4px; width: 15px; height: 8px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.ticks strong { color: var(--ink); font-weight: 600; }

.phases { list-style: none; margin: 0 0 22px; padding: 0; }
.phases li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.phases li:last-child { border-bottom: none; }
.phase-weeks { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--turquoise); background: var(--turquoise-soft); padding: 4px 11px; border-radius: 999px; margin-bottom: 8px; }
.phases strong { display: block; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin-bottom: 3px; }
.phases p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; font-weight: 300; }

.card-close { font-family: var(--font-display); font-style: italic; color: var(--ink); font-size: 1rem; text-align: center; border-top: 1px solid var(--gold); padding-top: 20px; margin: 0 0 24px; line-height: 1.5; }
.card-cta { margin-top: auto; align-self: center; }

/* ---------- Who ---------- */
.who { background: var(--paper); text-align: center; }
.who-list { list-style: none; margin: 2.5rem auto 0; padding: 0; display: grid; gap: 0; max-width: 640px; text-align: center; }
.who-list li { padding: 20px 10px; font-size: 1.12rem; font-weight: 300; color: var(--ink); border-bottom: 1px solid var(--line); }
.who-list li:first-child { border-top: 1px solid var(--line); }

/* ---------- Pull quote ---------- */
.quote-section { background: var(--turquoise-deep); }
.pull-quote { margin: 0; text-align: center; font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.4; color: #fff; font-weight: 400; font-style: italic; }
.pull-quote cite { display: block; margin-top: 1.6rem; font-family: var(--font-script); font-style: normal; font-size: 1.9rem; letter-spacing: 0; text-transform: none; color: var(--yellow); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 0; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--gold); font-family: var(--font-body); font-weight: 300; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 20px; color: var(--ink-soft); font-weight: 300; max-width: 64ch; }

/* ---------- Final CTA + contact ---------- */
.final-cta { background: radial-gradient(120% 120% at 50% -20%, var(--turquoise) 0%, var(--turquoise-deep) 72%); color: #fff; text-align: center; padding: clamp(72px, 10vw, 140px) 0; }
.final-cta h2 { color: #fff; }
.final-cta .script-head { font-family: var(--font-script); font-size: clamp(2.8rem, 6vw, 4.2rem); color: var(--yellow); display: block; margin-bottom: 0.1rem; line-height: 0.9; }
.final-sub { color: #d7efee; font-size: 1.15rem; font-weight: 300; max-width: 48ch; margin: 0 auto 2.4rem; }
.calendly-note { color: #a9d5d4; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; margin: 1.1rem 0 0; }

.contact-wrap { margin: 4rem auto 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); padding: clamp(28px, 4vw, 44px); text-align: left; max-width: 560px; }
.contact-intro { color: #eafcfb; text-align: center; margin-bottom: 1.6rem; font-weight: 300; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #cdeceb; margin-bottom: 8px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.97); color: var(--ink); font-family: var(--font-body); font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid var(--yellow); outline-offset: 1px; }
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-status { margin: 16px 0 0; text-align: center; font-size: 0.95rem; min-height: 1.2em; font-weight: 300; }
.form-status.is-success { color: var(--yellow); }
.form-status.is-error { color: #ffd7d0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfd3d1; padding: 64px 0 44px; text-align: center; }
.footer-inner { display: grid; gap: 12px; justify-items: center; }
.footer-brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.footer-brand .brand-caps { color: #fff; }
.footer-brand .brand-script { color: var(--yellow); }
.footer-tag { color: #cfd3d1; margin: 10px 0 0; font-weight: 300; font-style: italic; font-family: var(--font-display); }
.footer-hash { color: var(--yellow); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; margin: 6px 0; }
.footer-contact a, .footer-social a { color: #fff; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.footer-social { margin: 6px 0 0; }
.footer-legal { color: #8a908d; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 14px; }

/* ---------- Focus ---------- */
a:focus-visible, .btn:focus-visible, summary:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .principles { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .card--featured { order: -1; }
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lede { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { order: -1; max-width: 340px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; text-align: center; }
  .story-photo { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .principles { grid-template-columns: 1fr; }
  .cred-row li { padding: 4px 14px; }
  .cred-row li + li::before { display: none; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
