/* ==========================================================================
   Abundant Wellness with Kari — base styles
   Brand colors:
     --forest:    #3D5A47
     --terracotta:#8B4A3A
     --cream:     #F5F0E8
     --white:     #FFFFFF
   ========================================================================== */

:root {
  --forest: #3D5A47;
  --terracotta: #8B4A3A;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --ink: #2A2A2A;
  --muted: #6B6B6B;

  --container-max: 1200px;
  --gutter: 1.25rem;

  --font-body: 'Manrope', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

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

a { color: var(--terracotta); }
a:hover, a:focus { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--forest);
  line-height: 1.2;
  margin-top: 0;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Header ------------------------------------------------------------------ */
.site-header {
  background: var(--cream);
  color: var(--forest);
  border-bottom: 1px solid rgba(61, 90, 71, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(61, 90, 71, 0.08);
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
}
.logo-link { transition: opacity 0.2s ease; }
.logo-link:hover { opacity: 0.85; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.logo-link { display: inline-flex; }
.logo { max-height: 100px; width: auto; }
@media (max-width: 768px) {
  .logo { max-height: 64px; }
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.primary-nav a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.2s ease;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.primary-nav a:not(.nav-cta):hover,
.primary-nav a:not(.nav-cta):focus-visible {
  color: var(--terracotta);
  outline: none;
}
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: #6F3A2D;
  outline: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .primary-nav {
    display: none;
    flex-basis: 100%;
    border-top: 1px solid rgba(61, 90, 71, 0.12);
    margin-top: 1rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-block: 0.5rem;
  }
  .primary-nav li {
    width: 100%;
  }
  .primary-nav a {
    display: block;
    padding-block: 0.9rem;
    border-bottom: 1px solid rgba(61, 90, 71, 0.08);
    font-size: 1.05rem;
  }
  .primary-nav a:not(.nav-cta)::after { display: none; }
  .primary-nav .nav-cta {
    text-align: center;
    margin-top: 0.75rem;
  }
  /* Prevent body scroll when mobile nav is open */
  body.nav-open { overflow: hidden; }
}

/* Page sections ----------------------------------------------------------- */
.page-header {
  background: var(--cream);
  padding-block: 3rem;
}

.content-section {
  padding-block: 2.5rem;
}

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.section-heading { text-align: center; margin-bottom: 2.5rem; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  border: 0;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #6F3A2D;
  text-decoration: none;
  color: var(--white);
  outline: none;
}

.btn-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-link span[aria-hidden] {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn-link:hover,
.btn-link:focus-visible {
  color: var(--terracotta);
  border-color: var(--terracotta);
  text-decoration: none;
  outline: none;
}
.btn-link:hover span[aria-hidden],
.btn-link:focus-visible span[aria-hidden] {
  transform: translateX(4px);
}

/* Hero (home) ------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: #2A2A2A;
  background-image: url('assets/images/kari-hero.jpg');
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  color: var(--ink);
  min-height: min(100vh, 820px);
  display: flex;
  align-items: flex-end;
  padding-block: 4rem 5rem;
  overflow: hidden;
}
/* Decorative depth blobs in cream-heavy areas */
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 74, 58, 0.22) 0%, transparent 70%);
  top: -180px;
  left: -160px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 90, 71, 0.18) 0%, transparent 70%);
  bottom: -160px;
  left: 18%;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(245, 240, 232, 0.94) 0%,
    rgba(245, 240, 232, 0.88) 35%,
    rgba(245, 240, 232, 0.55) 65%,
    rgba(245, 240, 232, 0.2) 100%
  );
  pointer-events: none;
}
.hero .container {
  position: relative;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-left: 1.75rem;
  border-left: 3px solid var(--terracotta);
}
.hero h1 {
  text-wrap: balance;
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    align-items: center;
  }
  .hero-overlay {
    background: rgba(245, 240, 232, 0.75);
  }
  .hero-content {
    max-width: none;
    padding-left: 0;
    border-left: 0;
  }
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
  /* Subtle cream halo improves contrast over photo regions where the gradient is lighter */
  text-shadow: 0 0 22px rgba(245, 240, 232, 0.85), 0 0 6px rgba(245, 240, 232, 0.6);
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  color: var(--ink);
  max-width: 60ch;
  text-shadow: 0 0 14px rgba(245, 240, 232, 0.75);
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Trust bar --------------------------------------------------------------- */
.trust-bar { padding-block: 2.5rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.trust-icon {
  color: var(--terracotta);
  flex-shrink: 0;
}
.trust-title {
  font-size: 1.05rem;
  margin: 0;
  color: var(--forest);
}

/* Problem / Solution ------------------------------------------------------ */
.problem-solution { padding-block: 3.5rem; }
.ps-stack {
  display: grid;
  gap: 2.5rem;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.ps-block h2 {
  margin-bottom: 0.75rem;
}

/* 3-up card grids --------------------------------------------------------- */
.services-grid,
.testimonials { padding-block: 3.5rem; }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.75rem;
  border: 1px solid rgba(61, 90, 71, 0.12);
  border-radius: 6px;
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
  background-color: var(--cream);
}
.bg-white .service-card { background: var(--cream); }
.bg-cream .service-card { background: var(--white); }
.service-card-icon {
  display: block;
  color: var(--terracotta);
  margin-bottom: 0.85rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card .price {
  margin: 1rem 0 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* Lead magnet ------------------------------------------------------------- */
.lead-magnet { padding-block: 3.5rem; }
.lead-magnet-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.lead-magnet h2 { margin-bottom: 0.75rem; }
.lead-magnet-intro { margin-bottom: 1.5rem; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  text-align: left;
  display: inline-block;
}
.checklist li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.55rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--forest);
  border-radius: 3px;
  background: var(--white);
}
.lead-magnet-cue {
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* About teaser ------------------------------------------------------------ */
.about-teaser { padding-block: 6rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.about-image {
  position: relative;
  isolation: isolate;
}
/* Soft watercolor-style organic blob behind photo (no rectangle, no shadow) */
.about-image::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  right: -1rem;
  bottom: -2rem;
  background: radial-gradient(
    ellipse at 38% 42%,
    rgba(139, 74, 58, 0.22) 0%,
    rgba(139, 74, 58, 0.12) 35%,
    transparent 72%
  );
  border-radius: 62% 38% 54% 46% / 48% 62% 38% 52%;
  transform: rotate(-4deg);
  z-index: -1;
}
.about-image img {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-image::before {
    top: -1.5rem;
    left: -1.5rem;
    right: -0.5rem;
    bottom: -1.5rem;
  }
}
.about-text h2 { margin-bottom: 0.75rem; }
.about-text .btn-link {
  display: inline-block;
  margin-top: 1rem;
}

/* Testimonials ------------------------------------------------------------ */
.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  border: 1px solid rgba(61, 90, 71, 0.12);
  border-radius: 6px;
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
}
.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
}
.testimonial-card blockquote p { margin: 0; }
.testimonial-card figcaption {
  color: var(--muted);
  font-weight: 600;
  font-style: italic;
}
.testimonials-source {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
}
.testimonials-source a { font-weight: 600; }

/* Final CTA --------------------------------------------------------------- */
.final-cta { padding-block: 4rem; }
.final-cta-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { margin-bottom: 1.75rem; }
.final-cta-secondary {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.final-cta-secondary a { color: var(--terracotta); }

/* About page -------------------------------------------------------------- */
.about-intro { padding-block: 3.5rem; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.intro-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.intro-sub {
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0;
}
.intro-divider {
  margin: 0 0.5rem;
  color: var(--terracotta);
}
.intro-image {
  position: relative;
  isolation: isolate;
}
.intro-image::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: -1rem;
  bottom: -2rem;
  background: radial-gradient(
    ellipse at 38% 42%,
    rgba(139, 74, 58, 0.22) 0%,
    rgba(139, 74, 58, 0.12) 35%,
    transparent 72%
  );
  border-radius: 58% 42% 56% 44% / 52% 60% 40% 48%;
  transform: rotate(3deg);
  z-index: -1;
}
.intro-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.intro-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 1.75rem 0;
  color: var(--ink);
  max-width: 52ch;
}
.intro-credentials {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.intro-credentials li {
  padding: 0.45rem 0.95rem;
  background: rgba(139, 74, 58, 0.08);
  border: 1px solid rgba(139, 74, 58, 0.28);
  border-radius: 999px;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.intro-scroll {
  display: inline-block;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .intro-scroll {
    padding-block: 0.5rem;
  }
}
@media (max-width: 768px) {
  .intro-image::before {
    top: -1.5rem;
    left: -1.5rem;
    right: -0.5rem;
    bottom: -1.5rem;
  }
}

.narrow-column {
  max-width: 720px;
  margin-inline: auto;
}

/* Pull-quote — breaks up long prose blocks */
.pull-quote {
  margin: 2.25rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 3px solid var(--terracotta);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.35;
  color: var(--forest);
  font-style: italic;
}
@media (max-width: 768px) {
  .pull-quote {
    margin: 1.75rem 0;
    padding-left: 1.1rem;
  }
}

/* Inline wellness/compliance disclaimer near ZYTO / MRT claims */
.wellness-disclaimer {
  margin-top: 1.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(61, 90, 71, 0.06);
  border-left: 3px solid var(--forest);
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #555555;
}

.story,
.video-section,
.credentials,
.philosophy,
.personal,
.about-cta { padding-block: 3rem; }

.story h2,
.credentials h2,
.philosophy h2 { margin-bottom: 1rem; }

.placeholder-note {
  background: rgba(139, 74, 58, 0.08);
  border-left: 3px solid var(--terracotta);
  padding: 0.75rem 1rem;
  font-style: italic;
  color: var(--muted);
  border-radius: 4px;
}

/* Video placeholder */
.video-placeholder {
  background: var(--white);
  border: 1px solid rgba(61, 90, 71, 0.18);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-inner {
  text-align: center;
  color: var(--muted);
  padding: 1rem;
}
.video-placeholder-icon {
  display: block;
  font-size: 2.75rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.video-placeholder p { margin: 0; font-weight: 600; }

/* Credentials list */
.cred-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(61, 90, 71, 0.12);
  border-radius: 6px;
}
.cred-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
}
.cred-list li:last-child { margin-bottom: 0; }
.cred-list li::before {
  content: "\2713"; /* checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* Philosophy list */
.philosophy-subhead {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.1rem;
  color: var(--forest);
}
.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.philosophy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}
.philosophy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}

/* Personal section */
.personal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .personal-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}
.personal-image img {
  border-radius: 6px;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

/* CTA buttons (multi-CTA, centered) */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  padding: calc(0.85rem - 2px) calc(1.5rem - 2px);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
}

/* Services page ----------------------------------------------------------- */
.page-header .page-sub {
  font-size: 1.1rem;
  margin: 0.75rem 0 0;
  color: var(--ink);
  max-width: 60ch;
}
.page-header.bg-cream { padding-block: 3.5rem; }

.service-section { padding-block: 3.25rem; }
.service-block { max-width: 1080px; margin-inline: auto; }
.service-block-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 880px) {
  .service-block-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.4rem;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-content h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.service-sub {
  margin: 0 0 1.25rem;
  color: var(--terracotta);
  font-style: italic;
  font-size: 1.05rem;
}
.service-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}

.inclusions-label {
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
  color: var(--forest);
}
.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inclusions-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
}
.inclusions-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* Service meta sidebar (price + CTA) */
.service-meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}
.service-meta .btn { text-align: center; }

.meta-list {
  margin: 0 0 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(61, 90, 71, 0.12);
  border-radius: 6px;
}
.bg-white .meta-list { background: var(--cream); }
.meta-list .meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(61, 90, 71, 0.1);
  margin: 0;
}
.meta-list .meta-row:first-child { padding-top: 0; }
.meta-list .meta-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.meta-list dt {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
  margin: 0;
}
.meta-list dd {
  margin: 0;
  text-align: right;
  color: var(--ink);
}
.meta-price {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Multi-tier pricing (Wellness Assessment) */
.pricing-tiers {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
}
.tier {
  background: var(--white);
  border: 1px solid rgba(61, 90, 71, 0.12);
  border-radius: 6px;
  padding: 1rem 1.25rem;
}
.bg-white .tier { background: var(--cream); }
.tier-label {
  margin: 0 0 0.2rem;
  font-weight: 700;
  color: var(--forest);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tier-desc {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.tier-price {
  margin: 0;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}

/* Service figure (photo with caption inside service meta) */
.service-figure {
  margin: 0 0 1.25rem;
}
.service-figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.service-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

/* Story figure (before/after photo in About "Why I Do This Work") */
.story-figure {
  margin: 2rem auto;
  max-width: 480px;
}
.story-figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.story-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

/* Included-in-assessment badge */
.included-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(61, 90, 71, 0.08);
  border: 1px solid rgba(61, 90, 71, 0.25);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1rem;
  align-self: flex-start;
  line-height: 1.2;
}
.badge-check {
  color: var(--terracotta);
  font-weight: 700;
}

/* Additional services list */
.additional-services { padding-block: 3.5rem; }
.extras-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.extras-item {
  background: var(--cream);
  border: 1px solid rgba(61, 90, 71, 0.12);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}
.bg-white .extras-item { background: var(--cream); }
.extras-item dt {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}
.extras-item dd {
  margin: 0;
  color: var(--ink);
}
.extras-price {
  color: var(--terracotta);
  font-weight: 600;
  font-style: italic;
}

/* Pricing summary table */
.pricing-section { padding-block: 3.5rem; }
.pricing-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid rgba(61, 90, 71, 0.12);
  border-radius: 6px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.pricing-table th,
.pricing-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(61, 90, 71, 0.1);
  font-weight: 400;
}
.pricing-table thead th {
  background: var(--forest);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 0;
}
.pricing-table tbody th {
  color: var(--forest);
  font-weight: 600;
}
.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}
.pricing-table td:last-child {
  color: var(--terracotta);
  font-weight: 700;
  white-space: nowrap;
}

/* Page-to-page transitions (very subtle crossfade) ------------------------ */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}

/* Safari/Firefox fallback: light body fade-in on load */
@keyframes aw-page-load {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  @supports not (view-transition-name: auto) {
    body {
      animation: aw-page-load 0.22s ease-out both;
    }
  }
}

/* Scroll reveal (fade-up on scroll-into-view) ----------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero parallax (desktop only, motion-aware) ------------------------------ */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .hero {
    background-attachment: fixed;
  }
}

/* Screen-reader-only utility ---------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* What to Expect page ----------------------------------------------------- */
.steps-section,
.zyto-section,
.mrt-section,
.prepare-section,
.faq-section { padding-block: 3.5rem; }

.steps-section h2,
.zyto-section h2,
.mrt-section h2,
.prepare-section h2,
.faq-section h2 {
  margin-bottom: 1.5rem;
}

/* Numbered steps as a vertical journey -------------------------------- */
.steps-section { padding-block: 5rem; }
.steps-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  position: relative;
}
/* Dashed terracotta line connecting all the step circles */
.steps-list::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 35px;
  bottom: 35px;
  width: 0;
  border-left: 2px dashed rgba(139, 74, 58, 0.3);
  pointer-events: none;
}
.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.step:hover .step-num {
  background: var(--terracotta);
  color: var(--cream);
  transform: scale(1.05);
}
.step-content {
  padding-top: 0.6rem; /* aligns the H3 baseline near circle center */
}
.step-content h3 {
  margin: 0 0 0.7rem;
  font-size: 1.4rem;
  color: var(--forest);
}
.step-content p {
  margin: 0;
  line-height: 1.7;
}
.step-sublist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.step-sublist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.step-sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}
@media (max-width: 600px) {
  .step {
    grid-template-columns: 54px 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  .steps-list::before {
    left: 27px;
    top: 27px;
    bottom: 27px;
  }
  .step-num {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }
  .step-content { padding-top: 0.4rem; }
  .step-content h3 { font-size: 1.2rem; }
}

/* FDA disclaimer */
.fda-disclaimer {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 1.75rem;
}

/* External-link wrapper for MRT reference */
.reference-link-wrap {
  margin-top: 1.5rem;
}

/* MRT "Faith-Rooted Perspective" subheading */
.mrt-subhead {
  margin: 2rem 0 0.85rem;
  font-size: 1.15rem;
  color: var(--forest);
  font-style: italic;
}

/* FAQ accordion (HTML <details>) */
.faq-list {
  border-top: 1px solid rgba(61, 90, 71, 0.15);
}
.faq-item {
  border-bottom: 1px solid rgba(61, 90, 71, 0.15);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "\2212"; /* minus sign */
}
.faq-item summary {
  border-radius: 4px;
  padding-inline: 0.6rem;
  margin-inline: -0.6rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--terracotta);
  background-color: rgba(139, 74, 58, 0.04);
  outline: none;
}
.faq-item > p {
  margin: 0 0 1.1rem;
  padding-right: 2rem;
  color: var(--ink);
}

/* Bottom CTA divider line on what-to-expect (between primary + secondary buttons) */
.cta-divider-text {
  margin: 1.5rem 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Contact page ------------------------------------------------------------ */
.placeholder-inline {
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}

.contact-booking { padding-block: 3.5rem; }
.contact-booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .contact-booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-block h2,
.booking-block h2 { margin-bottom: 1rem; }

.contact-list {
  margin: 0;
  padding: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(61, 90, 71, 0.1);
}
.contact-row:first-of-type { padding-top: 0.25rem; }
.contact-row:last-of-type { border-bottom: 0; }
.contact-row dt {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
  margin: 0;
}
.contact-row dd { margin: 0; line-height: 1.45; }
.contact-row a { color: var(--terracotta); }
@media (max-width: 480px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.booking-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.booking-cta-stack .btn { text-align: center; }

/* Contact form */
.form-section { padding-block: 3.5rem; }
.form-section h2 { margin-bottom: 0.5rem; }
.form-intro { margin: 0 0 1.75rem; }

.contact-form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--forest);
}
.required-mark { color: var(--terracotta); }
.optional-mark {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85rem;
}
.form-field input,
.form-field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(61, 90, 71, 0.25);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(139, 74, 58, 0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}
.contact-form button[type="submit"] {
  justify-self: start;
  margin-top: 0.5rem;
}

/* Validation: only show invalid styles after submit attempt */
.contact-form.was-validated input:invalid,
.contact-form.was-validated textarea:invalid {
  border-color: #B04848;
  box-shadow: 0 0 0 3px rgba(176, 72, 72, 0.15);
}

/* Service area + map */
.service-area { padding-block: 3.5rem; }
.service-area h2 { margin-bottom: 0.5rem; }
.map-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(61, 90, 71, 0.15);
  background: var(--cream);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* Promise section (full-bleed forest) ------------------------------------- */
.promise-section {
  background: var(--forest);
  color: var(--cream);
  padding-block: 5.5rem;
  text-align: center;
}
.promise-ornament {
  display: block;
  margin: 0 auto 1.5rem;
  color: var(--terracotta);
}
.promise-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto;
  color: var(--cream);
  text-wrap: balance;
}
.promise-quote em { font-style: normal; }
.promise-attribution {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}

/* H2 ornament — small terracotta sprig above section headings ------------- */
.problem-solution h2::before,
.services-grid h2::before,
.lead-magnet h2::before,
.about-teaser h2::before,
.testimonials h2::before,
.final-cta h2::before,
.about-cta h2::before,
.story h2::before,
.credentials h2::before,
.philosophy h2::before,
.personal h2::before,
.steps-section h2::before,
.zyto-section h2::before,
.mrt-section h2::before,
.prepare-section h2::before,
.faq-section h2::before,
.service-section h2::before,
.contact-block h2::before,
.booking-block h2::before,
.form-section h2::before,
.service-area h2::before,
.additional-services h2::before,
.pricing-section h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 0.85rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%238B4A3A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28V14'/%3E%3Cpath d='M16 14C10 14 5 10 5 5c5 0 10 3 11 9'/%3E%3Cpath d='M16 17c6 0 11-4 11-9-5 0-10 3-11 9'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Centered ornament for centered section headings */
.section-heading::before,
.ps-block h2::before,
.lead-magnet h2::before,
.testimonials h2::before,
.final-cta h2::before,
.about-cta h2::before,
.additional-services h2::before,
.pricing-section h2::before {
  margin-left: auto;
  margin-right: auto;
}

/* Hide ornament inside service cards (h3) - only h2s get it */
.service-card h3::before,
.testimonial-card figcaption::before { content: none; }

/* Legal pages (Privacy, Terms, Disclaimer) ------------------------------- */
.legal-page { padding-block: 3.5rem 4rem; }
.legal-content {
  max-width: 760px;
  margin-inline: auto;
}
.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  color: var(--forest);
}
.legal-content h2:first-of-type { margin-top: 0.5rem; }
.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem;
  line-height: 1.65;
}
.legal-content ul,
.legal-content ol { padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.legal-content .placeholder-note {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.legal-content .placeholder-note strong { color: var(--terracotta); }

/* Footer ------------------------------------------------------------------ */
.site-footer {
  background: var(--cream);
  color: var(--forest);
  margin-top: 3rem;
  border-top: 1px solid rgba(61, 90, 71, 0.12);
}

.site-footer h2,
.site-footer .footer-heading {
  color: var(--forest);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-block: 2.5rem;
}

.footer-logo { max-height: 80px; width: auto; }

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer a {
  color: var(--forest);
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(61, 90, 71, 0.18);
  padding-block: 1.25rem;
  font-size: 0.85rem;
  color: var(--forest);
}

.disclaimer {
  max-width: 70ch;
  margin: 0 0 0.5rem;
}

.copyright { margin: 0; }
