/* =========================================================
   NabsFit — Faith · Fitness · Finances
   styles.css
   ========================================================= */

:root {
  --purple-deep:   #3e1a4f;
  --purple-mid:    #5e2a6e;
  --purple-soft:   #7a3a8a;
  --magenta:       #a12a9c;
  --magenta-dark:  #8a2486;
  --gold:          #c19a4b;
  --gold-dark:     #a9843a;
  --cream:         #faf5ec;
  --cream-2:       #f4ecdd;
  --hero-1:        #f3e7f0;
  --hero-2:        #ece1ee;
  --ink:           #2b2530;
  --ink-soft:      #5a5360;
  --white:         #ffffff;

  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(62, 26, 79, 0.12);
  --shadow-sm: 0 6px 18px rgba(62, 26, 79, 0.10);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.section { padding: clamp(48px, 8vw, 90px) 0; }

h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2.6rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: 40px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--purple-deep); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-pink { background: var(--magenta); color: #fff; }
.btn-pink:hover { background: var(--magenta-dark); }
.btn-purple { background: var(--purple-mid); color: #fff; }
.btn-purple:hover { background: var(--purple-deep); }

/* ---------- Logo badge ---------- */
.logo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #a12a9c, #7a2384);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  padding: 8px 16px 7px;
  border-radius: 10px;
  line-height: 1;
}
.logo-badge em { font-style: normal; font-weight: 400; opacity: 0.92; }
.logo-badge-lg { font-size: 1.55rem; padding: 11px 22px; margin-bottom: 1.2rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(62, 26, 79, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 44px; width: auto; display: block; }
.main-nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 34px);
}
.main-nav a {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-deep);
  padding: 6px 2px;
  position: relative;
  transition: color .15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.main-nav a:hover { color: var(--magenta); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--purple-deep);
  border-radius: 3px;
  transition: transform .3s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(243,231,240,0.96) 0%, rgba(243,231,240,0.78) 34%, rgba(243,231,240,0.18) 56%, rgba(243,231,240,0) 70%),
    url("assets/bg-hero-woman.jpg") right center / cover no-repeat,
    linear-gradient(135deg, var(--hero-1), var(--hero-2));
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  min-height: clamp(440px, 43.7vw, 700px);
}
.hero-copy { padding: 40px 0; max-width: 560px; }
.hero-copy h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.hero-copy p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { background: var(--purple-deep); color: #fff; }
.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  padding: 28px 22px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.35;
}
.trust-item img {
  width: 42px; height: 42px;
  flex: none;
  object-fit: contain;
}

/* =========================================================
   STORY
   ========================================================= */
.story {
  background:
    linear-gradient(rgba(250,245,236,0.28), rgba(250,245,236,0.44)),
    url("assets/bg-story.jpg") center / cover no-repeat,
    var(--cream);
}
.story h2 { color: var(--ink); margin-bottom: 1.6rem; }
.story p { color: var(--ink-soft); }
.story .emph { color: var(--purple-mid); font-weight: 600; }
.story .btn-outline { margin-top: 1.4rem; }

/* =========================================================
   FRAMEWORK
   ========================================================= */
.framework { background: var(--cream-2); }
.framework h2 { color: var(--ink); margin-bottom: .6rem; }
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 1rem;
  text-align: center;
}
.pillar-icon {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.framework-col h3 { font-size: 1.3rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: .5rem; }
.pillar-name { font-style: italic; color: var(--magenta); font-weight: 600; margin-bottom: .7rem; }
.framework-col p { color: var(--ink-soft); font-size: .95rem; }
.framework-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple-mid);
  margin-top: 2.6rem;
  font-size: 1.05rem;
}

/* =========================================================
   HOW I HELP YOU
   ========================================================= */
.help { background: var(--cream); }
.help h2 { margin-bottom: 2.4rem; color: var(--ink); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
  align-items: stretch;
}
.card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-gold   { background: #f7efe0; }
.card-pink   { background: #f7e2ec; }
.card-purple { background: #f0e4f1; }

.card-ico {
  width: 62px; height: 62px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 18px;
}

.card h3 { font-size: 1.28rem; margin-bottom: .7rem; line-height: 1.25; }
.card-gold   h3 { color: var(--gold-dark); }
.card-pink   h3 { color: var(--magenta-dark); }
.card-purple h3 { color: var(--purple-mid); }
.card h3 .tag { display: block; font-family: var(--sans); font-style: italic; font-weight: 500; font-size: .85rem; color: var(--ink-soft); margin-top: 2px; }

.card-lead { font-size: .95rem; color: var(--ink); }
.card ul { margin: .4rem 0 1.4rem; flex: 1 0 auto; }
.card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: .55rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
}
.card .btn { align-self: flex-start; }
.card-foot {
  font-style: italic;
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 1.1rem 0 0;
  min-height: 3.2em;
}

/* =========================================================
   THIS IS FOR YOU IF
   ========================================================= */
.foryou {
  background:
    linear-gradient(rgba(244,236,221,0.28), rgba(244,236,221,0.44)),
    url("assets/bg-foryou.jpg") center / cover no-repeat,
    var(--cream-2);
}
.foryou h2 { color: var(--purple-deep); margin-bottom: 1.8rem; }
.foryou-list { display: inline-block; text-align: left; max-width: 720px; }
.foryou-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.foryou-list li::before {
  content: "•";
  position: absolute; left: 4px; top: -1px;
  color: var(--gold);
  font-size: 1.2rem;
}
.foryou-close {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple-mid);
  font-size: 1.2rem;
  margin-top: 1.6rem;
  line-height: 1.5;
}

/* =========================================================
   WHAT CHANGES WHEN YOU ALIGN
   ========================================================= */
.changes { background: var(--white); }
.changes h2 { color: var(--ink); margin-bottom: 2.4rem; }
.pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pills li {
  background: linear-gradient(135deg, #f7e9d6, #f5e1ec);
  border: 1px solid rgba(161,42,156,0.12);
  border-radius: 40px;
  padding: 12px 30px;
  font-size: 1rem;
  min-width: min(360px, 90%);
  text-align: center;
}
.pills li span { color: var(--ink-soft); }
.pills li strong { color: var(--magenta-dark); }

/* =========================================================
   NEXT CHAPTER / CTA
   ========================================================= */
.next {
  background:
    linear-gradient(180deg, rgba(50,20,66,0.30) 0%, rgba(50,20,66,0.18) 45%, rgba(50,20,66,0.45) 100%),
    url("assets/bg-cta-cliff.jpg") center / cover no-repeat fixed,
    var(--purple-deep);
  color: #fff;
  text-shadow: 0 2px 18px rgba(20,6,30,0.85);
}
.next-logo { height: 56px; width: auto; margin: 0 auto 1.2rem; display: block; }
.next h2 { color: #fff; margin-bottom: 1rem; }
.next-sub { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-buttons .btn { min-width: min(320px, 90%); text-shadow: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--purple-deep); color: rgba(255,255,255,0.85); padding: 34px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.socials { display: flex; gap: 16px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--gold); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-brand { font-family: var(--serif); font-size: 1.05rem; color: #fff; margin: 0; }
.footer-tag { font-size: .85rem; margin: 0; opacity: .8; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .framework-grid { gap: 28px; }
  .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 820px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 8px 0 16px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid rgba(62,26,79,0.08);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a {
    padding: 14px 22px;
    border-bottom: 1px solid rgba(62,26,79,0.06);
    font-size: .9rem;
  }
  .main-nav a::after { display: none; }

  /* Hero: strong scrim only behind the headline up top, then it clears
     quickly so her head/face isn't washed out by white. */
  .hero {
    background:
      linear-gradient(180deg, rgba(243,231,240,0.96) 0%, rgba(243,231,240,0.86) 16%, rgba(243,231,240,0.45) 33%, rgba(243,231,240,0.12) 48%, rgba(243,231,240,0) 62%),
      url("assets/bg-hero-woman.jpg") 70% top / cover no-repeat,
      linear-gradient(135deg, var(--hero-1), var(--hero-2));
  }
  .hero-inner {
    align-items: flex-start;
    text-align: center;
    min-height: min(158vw, 640px);
  }
  .hero-copy { padding: 32px 0 24px; max-width: 100%; }
  .hero-copy h1 br { display: none; }
  .hero-copy p { margin: 0 auto; }
  /* keep dark copy legible where the scrim is now lighter */
  .hero-copy h1, .hero-copy p { text-shadow: 0 1px 12px rgba(243,231,240,0.92), 0 1px 3px rgba(243,231,240,0.7); }

  .framework-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 38px; }

  /* disable parallax on mobile (iOS renders fixed backgrounds poorly),
     and frame the image on the left so the person on the cliff stays visible */
  .next {
    background-attachment: scroll;
    background-position: 20% center;
  }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .trust-item { width: 100%; justify-content: flex-start; }
  .card { padding: 28px 22px; }
  .pills li, .cta-buttons .btn { min-width: 100%; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* =========================================================
   INSIDE PAGES — shared components
   ========================================================= */

/* active nav state */
.main-nav a[aria-current="page"] { color: var(--magenta); }
.main-nav a[aria-current="page"]::after { width: 100%; }

/* footer links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 4px 0 2px;
}
.footer-links a {
  font-size: .82rem;
  letter-spacing: .03em;
  color: rgba(255,255,255,0.8);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--gold); }

/* page hero (compact banner for inside pages) */
.page-hero {
  background:
    radial-gradient(120% 130% at 88% 0%, #fbe9d8 0%, rgba(251,233,216,0) 50%),
    linear-gradient(135deg, var(--hero-1), var(--hero-2));
  text-align: center;
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink);
  margin: 0 0 .6rem;
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: .9rem;
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* alternating section backgrounds */
.section.alt { background: var(--cream); }
.section.alt2 { background: var(--cream-2); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 760px; margin: 0 auto 2.4rem; }

/* credentials row (about) */
.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 1rem;
}
.cred {
  background: #fff;
  border: 1px solid rgba(62,26,79,0.08);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cred img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 14px; }
.cred h3 { font-size: 1.12rem; color: var(--purple-mid); margin-bottom: .5rem; }
.cred p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* two-column prose block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split.narrow-text p { color: var(--ink-soft); }
.split .panel {
  background: linear-gradient(135deg, var(--hero-1), #e7d8ea);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}
.split .panel .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--purple-mid);
  line-height: 1.5;
}
.panel-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--purple-mid);
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 1.8rem 0 0;
}

/* feature list with check bullets */
.checklist { max-width: 760px; margin: 0 auto; text-align: left; }
.checklist li {
  position: relative;
  padding: 4px 0 4px 38px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* blog & resources grids */
.post-grid, .res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}
.post-card, .res-card {
  background: #fff;
  border: 1px solid rgba(62,26,79,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover, .res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb {
  height: 168px;
  background: linear-gradient(135deg, var(--magenta), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
}
.post-thumb.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.post-thumb.purple { background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep)); }
.post-thumb svg { width: 48px; height: 48px; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 1.4; }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--magenta); margin-bottom: 8px;
}
.post-card h3, .res-card h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; }
.post-card p, .res-card p { font-size: .94rem; color: var(--ink-soft); margin-bottom: 1rem; }
.post-meta { margin-top: auto; font-size: .82rem; color: var(--ink-soft); font-style: italic; }
.post-link, .res-link {
  margin-top: auto;
  font-weight: 600; font-size: .85rem; letter-spacing: .03em;
  color: var(--magenta);
}
.post-link:hover, .res-link:hover { color: var(--magenta-dark); }
.badge-soon {
  display: inline-block;
  background: rgba(161,42,156,0.1);
  color: var(--magenta-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 30px;
  margin-top: 1.6rem;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  text-align: left;
}
.contact-info h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 1rem; }
.contact-info .info-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info .info-item svg {
  width: 22px; height: 22px; flex: none; margin-top: 2px;
  stroke: var(--magenta); fill: none; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-info .info-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.contact-info .info-item strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }

.contact-form {
  background: #fff;
  border: 1px solid rgba(62,26,79,0.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  color: var(--ink); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans); font-size: .95rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid rgba(62,26,79,0.18);
  border-radius: 10px;
  background: var(--cream);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(161,42,156,0.12);
}
.contact-form .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: .8rem; color: var(--ink-soft); text-align: center; margin: 14px 0 0; }

/* legal / prose pages */
.prose { max-width: 820px; margin: 0 auto; text-align: left; }
.prose .updated { color: var(--ink-soft); font-style: italic; font-size: .9rem; margin-bottom: 2rem; }
.prose h2 {
  font-family: var(--serif); font-size: 1.4rem; color: var(--purple-mid);
  margin: 2.2rem 0 .8rem; line-height: 1.3;
}
.prose h3 { font-family: var(--sans); font-size: 1rem; color: var(--ink); margin: 1.2rem 0 .4rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 1rem; }
.prose ul li { color: var(--ink-soft); margin-bottom: .5rem; }
.prose a { color: var(--magenta); text-decoration: underline; }
.prose .callout {
  background: var(--cream-2);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 1.4rem 0;
}
.prose .callout strong { color: var(--purple-mid); display: block; margin-bottom: 4px; }

/* inside-page responsive */
@media (max-width: 900px) {
  .creds, .post-grid, .res-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .panel { min-height: 220px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .creds, .post-grid, .res-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
/* skip-to-content link */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--purple-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-size: .85rem; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--gold); outline-offset: 2px; }

/* visible keyboard focus everywhere */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn-gold:focus-visible, .next :focus-visible { outline-color: var(--gold); }

/* =========================================================
   LEAD-CAPTURE LANDING
   ========================================================= */
.lead-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(62,26,79,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  overflow: hidden;
}
.lead-form-wrap iframe { display: block; width: 100%; min-height: 1078px; border: none; border-radius: 6px; }
.landing-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  max-width: 820px;
  margin: 0 auto 2.4rem;
  list-style: none;
  padding: 0;
}
.landing-points li {
  display: flex; align-items: center; gap: 9px;
  font-size: .96rem; color: var(--ink);
}
.landing-points li::before {
  content: "✓";
  width: 22px; height: 22px; flex: none;
  background: var(--gold); color: #fff;
  border-radius: 50%;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   FAQ (AEO)
   ========================================================= */
.faq { max-width: 800px; margin: 0 auto; text-align: left; }
.faq details {
  background: #fff;
  border: 1px solid rgba(62,26,79,0.1);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--magenta);
  font-family: var(--sans); line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { color: var(--magenta-dark); }
.faq .faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: .98rem; }
