/* ============================================================
   FAMILY STEWARD — Shared Stylesheet
   Covers: index.html, contact.html
   Palette: upgraded per design review (2025)
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Core palette — matched to brochure */
  --navy:          #1a3a4a;   /* deep authority — nav, footer, headlines */
  --charcoal:      #3a3a38;   /* body text */

  /* Brochure warm accents */
  --terracotta:    #c84a3a;   /* heart, key highlights */
  --burnt-orange:  #c8601a;   /* borders, bullets, buttons */
  --burnt-warm:    #a84e15;   /* hover states */
  --burnt-light:   #e08050;   /* light accent on dark bg */
  --burnt-text:    #8c3a10;   /* WCAG AA text on light */
  --mustard:       #c8942a;   /* tier badges, decorative on dark */

  /* Backgrounds — brochure off-white and sage */
  --cream:         #f5f2ec;   /* main body background */
  --off-white:     #faf8f4;
  --sage-tint:     #dde6d8;   /* sage green section bg */
  --sage-mid:      #b8c9a8;   /* brochure sage green */
  --powder-blue:   #b8d4e0;   /* brochure powder blue */
  --warm-section:  #f0ebe2;   /* hero / warm-bg areas */
  --yellow-strip:  #ede8d8;   /* "what happens next" strip */

  /* Dark cards / trust blocks — using navy instead of purple */
  --purple:        #1a3a4a;   /* repurposed: use navy for dark cards */
  --purple-deep:   #0f2535;
  --purple-mid:    #2a5068;
  --teal:          #2E7D8C;
  --teal-light:    #5BBCB8;

  /* Text */
  --text-dark:     #1a3a4a;
  --text-mid:      #3a3a38;
  --white:         #FFFFFF;

  /* Typography — brochure uses Lora for both display and body */
  --serif: 'Lora', Georgia, serif;
  --sans:  'DM Sans', sans-serif;

  /* Brochure eyebrow: Lora is also used for body paragraphs on the brochure.
     We keep DM Sans for utility/nav/captions, Lora for editorial body copy. */
}

/* ── GOOGLE FONTS — add Merriweather for body supplement ──── */
/* (Lora handles both headings and body per brochure design) */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-mid);
  font-family: var(--serif);   /* Lora for body — matches brochure editorial feel */
  font-weight: 400;
  line-height: 1.78;
  overflow-x: hidden;
}

/* DM Sans for UI / utility elements only */
nav, .nav-cta, .nav-phone,
.eyebrow, .btn-amber, .btn-outline,
footer, .tier, .bio-credentials li,
.contact-item-label, .trust-badge cite,
.step-number, .footer-contact, .footer-copy,
.bio-tag, .services-intro,
.availability-note { font-family: var(--sans); }

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
/* Added via <link> in each HTML file — no @import needed here */

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
/* Phone numbers must never wrap onto two lines */
a[href^="tel:"] { white-space: nowrap; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burnt-text);
  margin-bottom: 0.9rem;
}
.divider {
  width: 52px;
  height: 3px;
  background: var(--burnt-orange);
  margin: 0 auto 3rem;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 4vw;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: var(--navy);
  backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-logo .heart {
  color: var(--terracotta);
  font-size: 0.75rem;
  position: relative; top: -0.6em;
  margin-left: -0.2rem;
}
.nav-phone {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--white); }
.nav-cta {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--white);
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--navy); color: var(--white); border-color: var(--white); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-amber {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burnt-orange);
  border: 2px solid var(--burnt-orange);
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
  align-self: flex-start;
  cursor: pointer;
}
.btn-amber:hover {
  background: var(--burnt-warm);
  border-color: var(--burnt-warm);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 1.1rem 2.6rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.btn-outline:hover { border-color: var(--burnt-light); color: var(--burnt-light); transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}
.footer-heart { color: var(--terracotta); font-size: 0.8rem; vertical-align: super; margin-left: 0.1rem; }
.footer-contact { font-size: 0.86rem; color: rgba(255,255,255,0.65); }
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact a:hover { color: var(--burnt-light); }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════════════════════════
   INDEX.HTML — PAGE SECTIONS
   ════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--sage-mid);   /* brochure's sage green cover color */
  display: grid;
  grid-template-columns: 3fr 2fr;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-blob1, .hero-blob2 { display: none; }
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 4rem 1.5rem 5vw;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--burnt-text);
  margin-bottom: 0.6rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700; line-height: 1.08;   /* brochure uses bold weight */
  color: var(--navy);
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-headline em { font-style: italic; color: var(--navy); text-decoration: underline; }
.hero-sub {
  font-size: 1.25rem; font-weight: 300;
  color: var(--text-dark); max-width: 640px;
  line-height: 1.2; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.6s forwards;
}
.hero-sub-emphasis {
  font-family: var(--serif); font-style: italic;
  font-size: 1.45rem; color: var(--navy); font-weight: 400;
}
.hero-left .btn-amber {
  opacity: 0; animation: fadeUp 0.7s ease 0.8s forwards;
}
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3rem; position: relative; z-index: 2;
  overflow: hidden;
  background: var(--off-white);
}
.hero-right-painting { position: absolute; inset: 0; z-index: 0; }
.hero-right-painting img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.25; }
.hero-right-painting::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(250,244,235,0.82);
}
.hero-text {
  position: relative; z-index: 2; max-width: 520px;
  opacity: 0; animation: fadeUp 0.9s ease 1s forwards;
}
.hero-when-item {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--navy);
  font-weight: 500; line-height: 1.5; margin-bottom: 1.4rem;
}
.hero-when-label {
  font-family: var(--serif); font-weight: 400;
  color: var(--navy);
  text-transform: none; letter-spacing: 0;
}
.hero-when-resolution {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  margin-top: 2rem; line-height: 1.3;
  border-top: 2px solid rgba(8,26,58,0.2);
  padding-top: 1.5rem;
}
.hero-right-headline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 400; color: var(--navy); line-height: 1.3; margin-bottom: 1.2rem;
}
.hero-right-logo {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--navy);
}
.hero-right-logo .heart { color: var(--terracotta); font-size: 0.85rem; vertical-align: super; margin-left: -0.1rem; }

/* ── WHEN SECTION ─────────────────────────────────────────── */
.when-section { padding: 3rem 5vw; background: var(--sage-tint); }
.when-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.when-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400; color: var(--navy); margin-bottom: 3.5rem;
}
.when-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-bottom: 3.5rem;
}
.when-card {
  background: var(--navy); padding: 2.5rem 2rem;
  text-align: left; border-top: 3px solid var(--burnt-orange);
}
.when-label {
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--burnt-light); margin-bottom: 0.9rem;
}
.when-card p {
  font-family: var(--serif); font-size: 1.08rem;
  font-style: normal; line-height: 1.55; color: rgba(255,255,255,0.88);
}
.when-resolution {
  font-family: var(--serif); font-size: 2rem;
  font-weight: 600; color: var(--navy);
  margin-top: 2.5rem; padding-top: 2rem; padding-bottom: 4rem;
  border-top: 2px solid rgba(8,26,58,0.12);
}
.when-resolution strong { color: var(--burnt-orange); font-style: italic; font-weight: 600; }

/* ── BIO SECTION ──────────────────────────────────────────── */
.bio-section {
  background: var(--off-white);
  padding: 3rem 5vw;
  position: relative; overflow: hidden;
}
.bio-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,106,32,0.06) 0%, transparent 65%);
  top: -200px; right: -150px; pointer-events: none;
}
.bio-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 160px 1fr;
  gap: 3rem; align-items: start;
  position: relative; z-index: 1;
}
.bio-left { position: static; text-align: center; padding-top: 0.5rem; }
.bio-photo-frame {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--purple-mid) 0%, var(--burnt-warm) 100%);
  margin-bottom: 1.5rem;
  border: 2px solid rgba(212,160,23,0.2);
}
.photo-name {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 600; color: var(--navy);
  letter-spacing: 0.06em; margin-bottom: -0.3rem;
}
.photo-title {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple-deep); margin-top: 0.1rem;
}
.bio-right .eyebrow { text-align: left; }
.bio-right h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  font-weight: 400; line-height: 1.25;
  color: var(--navy); margin-bottom: 2.2rem;
}
.bio-right p {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--navy); margin-bottom: 1.4rem; font-weight: 400;
}
.bio-right p strong { color: var(--navy); font-weight: 700; }
.bio-credentials {
  list-style: none; padding: 0; margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 1rem;
}
.bio-credentials li {
  font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--purple-deep);
  font-weight: 700; line-height: 1.9;
  padding-left: 1.2rem; position: relative;
}
.bio-credentials li::before {
  content: "●"; position: absolute; left: 0;
  color: var(--burnt-orange); font-size: 0.5rem; top: 0.35em;
}
.bio-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.bio-tag {
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 1rem;
  border: 1px solid var(--navy); color: var(--navy); border-radius: 2px;
}

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-section { padding: 3rem 5vw; background: var(--powder-blue); }
.services-inner { max-width: 1080px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 2rem; }
.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400; color: var(--navy); margin-bottom: 1.2rem;
}
.services-header p {
  font-size: 0.94rem; color: var(--text-mid);
  max-width: 680px; margin: 0 auto; line-height: 1.85;
}
.roadmap-box {
  background: var(--navy); padding: 2.5rem 3rem;
  margin-bottom: 3rem; border-left: 4px solid var(--burnt-orange); text-align: center;
}
.roadmap-box p {
  font-family: var(--serif); font-size: 1.1rem;
  line-height: 1.75; color: rgba(255,255,255,0.9);
}
.tiers { display: flex; gap: 0.6rem; margin-top: 1.2rem; flex-wrap: wrap; justify-content: center; }
.tier {
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.5rem 1.2rem;
  border-radius: 2px; font-weight: 500;
}
.tier.steady    { background: var(--teal);      color: #fff; }
.tier.alongside { background: var(--burnt-orange);     color: #fff; }
.tier.devoted   { background: var(--mustard);      color: var(--purple-deep); }

.tiers-intro {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 600; color: var(--navy); margin-bottom: 1rem;
}
.tiers-described {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-bottom: 2rem;
}
.tier-desc {
  padding: 1.2rem 1.5rem; background: var(--white);
  box-shadow: 0 2px 12px rgba(74,44,122,0.07);
  border-top: 3px solid transparent;
}
.tier-desc-title {
  font-family: var(--serif); font-size: 2.2rem;
  font-weight: 700; margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.tier-steady-title    { color: var(--teal); }
.tier-alongside-title { color: var(--burnt-orange); }
.tier-devoted-title   { color: var(--mustard); }
.tier-desc-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.4; }

.services-intro {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 600; color: var(--burnt-text);
  margin-bottom: 0.8rem; margin-top: 2rem; line-height: 1.7;
}
.services-subheader {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 400; color: var(--navy);
  margin-bottom: 0.6rem; margin-top: 2rem;
}
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.service-card {
  background: var(--white); padding: 1.8rem 2rem;
  border-left: 3px solid var(--burnt-orange);
  box-shadow: 0 2px 12px rgba(74,44,122,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(74,44,122,0.13); transform: translateY(-2px); }
.service-card p { font-size: 0.92rem; line-height: 1.75; color: var(--text-mid); }

.services-bullets {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr;
  gap: 0.6rem; margin-bottom: 2rem;
}
.services-bullets li {
  font-size: 1rem; color: var(--navy);
  padding-left: 1.5rem; position: relative; line-height: 1.6;
}
.services-bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 0.55rem; height: 0.55rem; background: var(--burnt-orange);
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 4rem 5vw; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before { display: none; }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400; font-style: italic;
  color: var(--white); margin-bottom: 0.8rem;
}
.cta-section p { font-size: 0.97rem; color: rgba(255,255,255,0.78); margin-bottom: 3rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  font-family: var(--sans); font-size: 0.85rem;
  color: rgba(255,255,255,0.65); margin-top: 1rem; letter-spacing: 0.05em;
}
.cta-phone a { color: rgba(255,255,255,0.65); text-decoration: underline; font-weight: 500; }
.cta-phone a:hover { color: var(--burnt-light); }

/* ════════════════════════════════════════════════════════════
   CONTACT.HTML — PAGE SECTIONS
   ════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding-top: 68px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--burnt-warm), var(--burnt-light), var(--burnt-warm));
}
.page-hero-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 4rem 4vw 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.page-hero-left { opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards; }
.page-hero-left .eyebrow { color: var(--burnt-light); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--burnt-light); }
.page-hero-desc {
  font-size: 1.12rem; color: rgba(255,255,255,0.78);
  line-height: 1.85; max-width: 500px;
}

/* ── CONTACT INFO BOX ─────────────────────────────────────── */
.contact-info-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--burnt-orange);
  padding: 2.5rem 2rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.45s forwards;
}
.contact-info-box h3 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 600; color: var(--white);
  margin-bottom: 1.8rem; letter-spacing: 0.03em;
}
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(201,106,32,0.15);
  border: 1px solid rgba(201,106,32,0.3);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--burnt-light); font-size: 0.95rem;
}
.contact-item-label {
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem;
}
.contact-item-value { font-size: 1.05rem; color: rgba(255,255,255,0.88); }
.contact-item-value a { color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--burnt-light); }
.availability-note {
  margin-top: 1.8rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7;
}
.availability-note strong { color: rgba(255,255,255,0.65); display: block; margin-bottom: 0.2rem; }

/* ── FORM SECTION ─────────────────────────────────────────── */
.form-section { background: var(--cream); padding: 5rem 4vw 6rem; }
.form-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 5rem; align-items: start;
}
.form-sidebar { position: sticky; top: 100px; }
.form-sidebar .eyebrow { color: var(--burnt-orange); }
.form-sidebar h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.25; margin-bottom: 1.6rem;
}
.expect-list { list-style: none; padding: 0; margin-bottom: 2.5rem; }
.expect-list li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  margin-bottom: 1.2rem; font-size: 1.02rem;
  color: var(--text-mid); line-height: 1.65;
}
.expect-dot {
  width: 8px; height: 8px; background: var(--burnt-orange);
  border-radius: 0; flex-shrink: 0; margin-top: 0.45em;
}
.trust-badge {
  background: var(--navy);
  padding: 1.5rem 1.6rem;
  border-left: 3px solid var(--burnt-orange);
}
.trust-badge p {
  font-family: var(--serif); font-size: 1.05rem;
  font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.65;
}
.trust-badge cite {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--burnt-light); margin-top: 0.8rem;
}
.tally-wrap {
  background: var(--white);
  box-shadow: 0 4px 32px rgba(74,44,122,0.08);
  border-top: 4px solid var(--burnt-orange);
  padding: 0; min-height: 500px;
}
.tally-placeholder {
  padding: 3.5rem 3rem; text-align: center;
  border: 2px dashed rgba(201,106,32,0.3); margin: 2rem;
}
.tally-placeholder h3 {
  font-family: var(--serif); font-size: 1.3rem;
  color: var(--navy); margin-bottom: 0.8rem;
}
.tally-placeholder p {
  font-size: 0.98rem; color: rgba(8,26,58,0.55);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.tally-placeholder code {
  display: block; background: #f0ecf7;
  border: 1px solid rgba(74,44,122,0.15);
  padding: 1rem 1.2rem; font-size: 0.82rem; font-family: monospace;
  color: var(--purple-deep); text-align: left; line-height: 1.8;
  border-radius: 2px; word-break: break-all;
}

/* ── REAL CONTACT FORM ────────────────────────────────────── */
.contact-form { padding: 2.5rem 2.5rem 2.8rem; scroll-margin-top: 90px; }
.contact-form-intro {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--text-mid); line-height: 1.65; margin-bottom: 2rem;
}
.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block; font-family: var(--sans);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-field label .req { color: var(--burnt-orange); }
.form-field input,
.form-field textarea {
  width: 100%; box-sizing: border-box;
  font-family: var(--serif); font-size: 1.02rem;
  color: var(--text-dark); background: var(--off-white);
  border: 1px solid rgba(26,58,74,0.22);
  border-radius: 2px; padding: 0.8rem 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--burnt-orange);
  box-shadow: 0 0 0 3px rgba(200,96,26,0.12);
}
.contact-form .btn-amber { border: none; cursor: pointer; width: 100%; margin-top: 0.5rem; font-size: 0.9rem; padding: 0.95rem 1.5rem; }
.form-privacy {
  font-family: var(--sans); font-size: 0.82rem;
  color: rgba(8,26,58,0.5); line-height: 1.6;
  margin-top: 1.1rem; text-align: center;
}
.form-privacy a { color: var(--burnt-text); }

/* ── FOUNDER NOTE (replaces placeholder testimonial) ──────── */
.founder-note {
  background: var(--navy);
  padding: 1.8rem 1.7rem;
  border-left: 3px solid var(--burnt-orange);
}
.founder-note-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.founder-note-photo {
  width: 78px; height: 78px; flex-shrink: 0;
  object-fit: cover; object-position: center top;
  border-radius: 50%; border: 2px solid var(--burnt-light);
}
.founder-note-name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--white); line-height: 1.15;
}
.founder-note-role {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--burnt-light); margin-top: 0.2rem;
}
.founder-note p {
  font-family: var(--serif); font-size: 1.02rem; font-style: italic;
  color: rgba(255,255,255,0.88); line-height: 1.7;
}

/* ── STICKY MOBILE CALL BUTTON ────────────────────────────── */
.sticky-call {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--burnt-orange); color: var(--white);
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none;
  padding: 1rem; box-shadow: 0 -3px 18px rgba(0,0,0,0.22);
}
.sticky-call:active { background: var(--burnt-warm); }
@media (max-width: 720px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 3.5rem; }
  /* Sticky Call button is the mobile action — drop the cramped nav button */
  .nav-cta { display: none; }
}

/* ── WHAT HAPPENS NEXT ────────────────────────────────────── */
.next-strip { background: var(--yellow-strip); padding: 4rem 4vw; }
.next-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.next-inner .eyebrow { color: var(--burnt-warm); }
.next-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--navy); margin-bottom: 3rem;
}
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step { text-align: center; }
.step-number {
  font-family: var(--serif); font-size: 3rem;
  font-weight: 600; color: var(--burnt-orange); line-height: 1; margin-bottom: 0.8rem;
}
.step h3 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 600; color: var(--navy); margin-bottom: 0.5rem;
}
.step p { font-size: 1rem; color: rgba(8,26,58,0.65); line-height: 1.7; }
.step-divider { display: flex; align-items: center; justify-content: center; padding-top: 1.5rem; }
.step-arrow { font-size: 1.5rem; color: var(--burnt-orange); opacity: 0.4; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first optimizations
   ════════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 860px) ─────────────────────────────────────── */
@media (max-width: 860px) {

  /* Nav: hide phone number to give logo + CTA room */
  .nav-phone { display: none; }
  nav { padding: 1rem 5vw; }
  .nav-logo { font-size: 1.25rem; }

  /* Hero: stack vertically */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 5vw 2rem; }
  .hero-right { padding: 2.5rem 5vw 3.5rem; min-height: 55vw; }

  /* When section */
  .when-cards { grid-template-columns: 1fr; }
  .when-resolution { font-size: 1.5rem; padding-bottom: 2rem; }

  /* Bio */
  .bio-inner { grid-template-columns: 1fr; gap: 2rem; }
  .bio-left { position: static; }
  .bio-photo-frame { max-width: 180px; margin: 0 auto 1rem; }
  .bio-credentials { grid-template-columns: 1fr; }

  /* Services */
  .tiers-described { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr; }

  /* Contact page hero */
  .page-hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5vw 4rem; }
  .page-hero-desc { max-width: 100%; }

  /* Contact form */
  .form-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-sidebar { position: static; }

  /* What happens next */
  .steps-row { grid-template-columns: 1fr; gap: 2.5rem; max-width: 420px; margin: 0 auto; }
}

/* ── MOBILE (≤ 600px) ─────────────────────────────────────── */
@media (max-width: 600px) {

  /* Nav */
  .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.75rem; letter-spacing: 0.1em; }

  /* Hero */
  .hero-left { padding: 2.5rem 5vw 2rem; }
  .hero-sub { font-size: 1.1rem; }
  .hero-right { padding: 2rem 5vw 3rem; min-height: 70vw; }
  .hero-when-resolution { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* Section padding — consistent breathing room */
  .when-section { padding: 3.5rem 5vw; }
  .bio-section { padding: 3.5rem 5vw; }
  .services-section { padding: 3rem 5vw; }
  .cta-section { padding: 3rem 5vw; }
  .form-section { padding: 3rem 5vw 4rem; }
  .next-strip { padding: 3rem 5vw; }

  /* When section */
  .when-inner h2 { margin-bottom: 2rem; }
  .when-card { padding: 2rem 1.5rem; }

  /* Bio */
  .bio-photo-frame { max-width: 150px; }
  .bio-right h2 { font-size: 1.5rem; margin-bottom: 1.4rem; }
  .bio-right p { font-size: 0.98rem; }

  /* Services */
  .roadmap-box { padding: 1.8rem 1.5rem; }
  .tier-desc-title { font-size: 1.8rem; }
  .services-bullets li { font-size: 0.95rem; }

  /* CTA */
  .cta-section h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-amber, .btn-outline { width: 100%; max-width: 320px; text-align: center; align-self: center; }

  /* Contact page */
  .page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .contact-info-box { padding: 2rem 1.5rem; }
  .tally-placeholder { padding: 2.5rem 1.5rem; margin: 1rem; }

  /* Footer */
  footer { flex-direction: column; text-align: center; gap: 0.6rem; padding: 1.8rem 5vw; }
  .footer-contact { line-height: 2; }
}

/* ── SMALL MOBILE (≤ 400px) ───────────────────────────────── */
@media (max-width: 400px) {
  .nav-logo { font-size: 1.1rem; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); }
  .when-resolution { font-size: 1.35rem; }
  .bio-photo-frame { max-width: 130px; }
  .bio-credentials { gap: 0; }
  .services-header h2 { font-size: 1.6rem; }
  .step-number { font-size: 2.4rem; }
}
