/* ==========================================================================
   Hey Doc Peterson — Shared Stylesheet
   Design tokens, base, layout, and components used across every page.
   ========================================================================== */

:root {
  /* Color */
  --ink: #1F2A24;
  --ink-soft: #445048;
  --paper: #FAF7F0;
  --paper-dim: #F1ECE1;
  --moss: #3F5D45;
  --moss-deep: #2A3F30;
  --moss-pale: #E7EEE6;
  --clay: #A85A2A;
  --clay-deep: #8A4A22;
  --stone: #E4DDD0;
  --stone-line: #D9D0BF;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-card: 0 1px 2px rgba(31, 42, 36, 0.06), 0 8px 24px -12px rgba(31, 42, 36, 0.18);
  --shadow-lift: 0 4px 10px rgba(31, 42, 36, 0.08), 0 20px 40px -16px rgba(31, 42, 36, 0.24);

  --max-width: 1180px;
  --max-width-narrow: 780px;
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration-color: rgba(31, 42, 36, 0.35);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 var(--space-2);
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 var(--space-2); color: var(--ink-soft); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.4em; color: var(--ink-soft); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.wrap-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section { padding: var(--space-6) 0; }
@media (max-width: 640px) {
  section { padding: var(--space-5) 0; }
}

.section-alt { background: var(--paper-dim); }
.section-moss {
  background: var(--moss-deep);
  color: var(--paper);
}
.section-moss h2, .section-moss h3 { color: var(--paper); }
.section-moss p { color: rgba(250, 247, 240, 0.82); }

.section-head {
  max-width: 640px;
  margin: 0 0 var(--space-4);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--clay);
  display: inline-block;
}
.section-moss .eyebrow { color: var(--stone); }
.section-moss .eyebrow::before { background: var(--stone); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--clay-deep); box-shadow: var(--shadow-lift); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 42, 36, 0.28);
}
.btn-secondary:hover { border-color: var(--ink); background: rgba(31, 42, 36, 0.04); }

.section-moss .btn-secondary,
.cta-band .btn-secondary {
  color: var(--paper);
  border-color: rgba(250, 247, 240, 0.4);
}
.section-moss .btn-secondary:hover,
.cta-band .btn-secondary:hover {
  border-color: var(--paper);
  background: rgba(250, 247, 240, 0.08);
}

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75em;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 55px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: clamp(0.85rem, 1.6vw, 1.5rem);
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-size: clamp(0.86rem, 1vw, 0.94rem);
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--moss-deep);
  border-color: var(--clay);
}

/* Services dropdown (desktop) */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: clamp(0.86rem, 1vw, 0.94rem);
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown > button svg {
  width: 12px;
  height: 12px;
  transition: transform 0.15s ease;
}
.nav-dropdown:hover > button,
.nav-dropdown.is-open > button,
.nav-dropdown > button[aria-current="page"] {
  color: var(--moss-deep);
  border-color: var(--clay);
}
.nav-dropdown.is-open > button svg,
.nav-dropdown:hover > button svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.6em;
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 0.4em;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6em 0.8em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--moss-pale);
  color: var(--moss-deep);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.header-cta .btn-primary {
  padding: 0.9em 1.5em;
  font-size: 0.94rem;
}
@media (min-width: 1180px) {
  .header-cta .btn-primary { padding: 0.95em 1.7em; font-size: 0.98rem; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4em;
}
.nav-toggle svg { width: 26px; height: 26px; }

.header-cta .btn-primary span.short { display: none; }

@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 420px) {
  .header-cta .btn-primary span.long { display: none; }
  .header-cta .btn-primary span.short { display: inline; }
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--stone-line);
  background: var(--paper);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: var(--space-2) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.mobile-nav a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  padding: 0.6em 0.2em;
  border-bottom: 1px solid var(--stone-line);
}

/* Mobile "Services" group */
.mobile-nav .nav-group-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.8em 0.2em 0.2em;
}
.mobile-nav .nav-subitem a {
  padding-left: 1em;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Tension-line signature graphic ---------- */

.tension-line {
  width: 100%;
  height: auto;
  display: block;
}
.tension-line path {
  fill: none;
  stroke: var(--moss);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.tension-line .relief-path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: relieve 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
@keyframes relieve {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tension-line .relief-path { animation: none; stroke-dashoffset: 0; }
}

/* ---------- Hero ---------- */

.hero {
  padding: var(--space-6) 0 var(--space-5);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 760px;
}

.hero h1 {
  margin-bottom: var(--space-2);
}

.hero .lede {
  max-width: 54ch;
  margin-bottom: var(--space-4);
}

.hero-graphic {
  margin: var(--space-4) 0;
  max-width: 620px;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  margin-top: var(--space-5);
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.portrait-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--stone-line);
}
.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.book-cover {
  width: 140px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.book-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.book-row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
@media (max-width: 480px) {
  .book-row { flex-direction: column; align-items: center; text-align: center; }
  .book-cover { width: 120px; }
}

.testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.testimonial-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--stone) linear-gradient(135deg, var(--moss-pale), var(--stone));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonial-thumb .play {
  position: relative;
  z-index: 2;
}
.testimonial-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 36, 0.18);
  z-index: 1;
}

.trust-strip {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--stone-line);
}
.trust-item {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}
.trust-figure {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--moss-deep);
  line-height: 1;
}
.trust-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.35em;
}

/* ---------- Cards & grids ---------- */

.grid {
  display: grid;
  gap: var(--space-3);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.condition-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  background: var(--moss-pale);
  color: var(--moss-deep);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid rgba(63, 93, 69, 0.16);
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}

/* Numbered steps — used only where content is a genuine sequence */
.steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-3);
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-3);
  align-items: start;
}
.step-num {
  counter-increment: step;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-num::before { content: counter(step); }

/* Testimonial cards */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.testimonial-card:has(a):hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.testimonial-meta .external-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 0.3em;
  vertical-align: -1px;
}
.testimonial-thumb .play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(31, 42, 36, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-thumb .play svg { width: 20px; height: 20px; fill: var(--paper); margin-left: 3px; }

.play-video-btn {
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.play-video-btn:hover {
  background: var(--clay);
  transform: scale(1.06);
}

.testimonial-thumb-video {
  cursor: pointer;
}
.testimonial-thumb-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}
.testimonial-body { padding: var(--space-3); }
.testimonial-body p { font-size: 0.96rem; margin-bottom: 0.6em; }
.testimonial-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}
.testimonial-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  text-align: center;
}
@media (max-width: 720px) {
  .stat-band { grid-template-columns: 1fr; }
}
.stat-band .trust-figure { font-size: 2.6rem; }

/* ---------- FAQ / accordion ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.faq-item {
  border-bottom: 1px solid var(--stone-line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-item .faq-icon::before,
.faq-item .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--moss);
  transition: transform 0.2s ease;
}
.faq-item .faq-icon::before {
  width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%);
}
.faq-item .faq-icon::after {
  width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item p { padding-bottom: var(--space-3); max-width: 62ch; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--moss-deep);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}
.cta-band h2, .cta-band p { color: var(--paper); }
.cta-band .lede { margin: 0 auto var(--space-3); color: rgba(250,247,240,0.85); }
.cta-band .btn-row { justify-content: center; }

/* ---------- Booking calendar embed ---------- */

.booking-embed-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-2);
  margin-top: calc(-1 * var(--space-3));
  scroll-margin-top: 90px;
}
.booking-embed-card iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  border-radius: var(--radius-md);
}
@media (max-width: 640px) {
  .booking-embed-card iframe { min-height: 900px; }
}

/* ---------- Lead magnet form embed ---------- */

.lead-magnet-form-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-3);
}
.ghl-form-wrap {
  width: 100%;
}
.ghl-form-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
}

/* Free chapters form (results.html) — taller field stack on mobile */
@media (max-width: 640px) {
  #free-chapters-form-card .ghl-form-wrap iframe { height: 620px !important; }
}

/* Contact form (contact.html) — taller field stack on mobile */
@media (max-width: 640px) {
  #contact-form-card .ghl-form-wrap iframe { height: 1250px !important; }
}

/* ---------- Disclaimer ---------- */

.disclaimer {
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 90ch;
  line-height: 1.6;
}
.disclaimer-box {
  background: var(--paper-dim);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 240, 0.78);
  padding: var(--space-5) 0 var(--space-3);
}
.site-footer a { color: rgba(250, 247, 240, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 1.2rem;
  margin-bottom: var(--space-1);
}
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--paper);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55em; color: inherit; }
.footer-col p { color: rgba(250, 247, 240, 0.78); }
.footer-legal {
  border-top: 1px solid rgba(250, 247, 240, 0.14);
  padding-top: var(--space-3);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.55);
}
.footer-legal p { color: inherit; margin-bottom: 0.8em; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-size: 0.78rem;
  color: rgba(250, 247, 240, 0.5);
}

/* ---------- Sticky mobile CTA ---------- */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--paper);
  border-top: 1px solid var(--stone-line);
  padding: var(--space-1) var(--space-2);
  box-shadow: 0 -6px 20px rgba(31,42,36,0.12);
}
@media (max-width: 640px) {
  .mobile-sticky-cta { display: flex; gap: var(--space-1); }
  body { padding-bottom: 72px; }
}
.mobile-sticky-cta .btn { flex: 1; padding: 0.85em 1em; font-size: 0.92rem; }

/* ---------- Plain testimonial (quote-style, no thumbnail) ---------- */

.testimonial {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--moss);
  line-height: 0.8;
  position: absolute;
  top: 0.7rem;
  left: 0.9rem;
  opacity: 0.16;
  pointer-events: none;
}
.testimonial p { position: relative; z-index: 1; font-size: 0.95rem; }
.testimonial .testimonial-name { margin-top: 0.6em; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 0.9em;
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.testimonial-author .testimonial-name { margin-top: 0; }

/* ---------- Checklist rows (clarity check pattern) ---------- */

.check-row-list {
  display: flex;
  flex-direction: column;
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--stone-line);
}
.check-row:last-child { border-bottom: none; }
.check-row p { margin: 0; font-size: 0.92rem; }
.check-dot {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.dot-yes { background: var(--moss-pale); }
.dot-no { background: #FBE7E5; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
