/* ============================================================
   Now & Zen Wellness — Design System v2
   CLA Design aesthetic · Production-ready · Mobile-first
   ============================================================ */

/* ── Google Fonts are loaded via functions.php ── */

:root {
  /* Brand Greens */
  --sage-leaf:        #5D6B52;
  --deep-forest:      #4F6C4D;
  --herbal-moss:      #56694E;

  /* Highlights & Neutrals */
  --zen-sand:         #F8EDCC;
  --soft-sage-mist:   #B9C3A3;

  /* Earthy browns */
  --earth-bark:       #403C2D;
  --weathered-olive:  #7D795F;
  --charcoal-olive:   #38362B;

  /* Deep accent */
  --midnight-slate:   #0F172A;

  /* Paper tones */
  --paper:            #FBF7EC;
  --paper-warm:       #F4EEDE;
  --paper-deep:       #EDE5CE;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-sans:  'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(64,60,45,0.08);
  --shadow-md: 0 8px 24px rgba(64,60,45,0.10);
  --shadow-lg: 0 20px 50px rgba(64,60,45,0.15);

  /* Header heights for offset calculations */
  --info-strip-h:  36px;
  --nav-bar-h:     80px;
  --header-total:  116px; /* info + nav */
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--earth-bark);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--earth-bark);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { max-width: 65ch; }
p + p { margin-top: 1em; }

a { color: var(--deep-forest); text-decoration: none; }
a:hover { color: var(--earth-bark); }
a:focus-visible { outline: 2px solid var(--deep-forest); outline-offset: 3px; border-radius: 2px; }

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
}

/* ── Skip link (accessibility) ───────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--earth-bark);
  color: var(--paper);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Layout helpers ──────────────────────────────────────── */
.container        { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-wide   { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 780px;  margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--herbal-moss);
  display: block;
}

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--weathered-olive);
  font-weight: 400;
}

.text-center { text-align: center; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--weathered-olive); font-size: 1.1rem; max-width: none; }

/* ── Fade-in animation ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */

/* Info strip (sits above nav bar) */
.header-info {
  background: var(--earth-bark);
  color: var(--zen-sand);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  width: 100%;
  z-index: 101;
}
.header-info-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  padding: 8px 32px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hi-sep {
  width: 1px;
  height: 14px;
  background: rgba(248,237,204,0.25);
  display: inline-block;
}
.hi-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--zen-sand);
  white-space: nowrap;
  line-height: 1.3;
  transition: color 0.2s;
}
a.hi-item:hover { color: #fff; }
.hi-icon { flex-shrink: 0; stroke: currentColor; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(248,237,204,0.12);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #94a3b8;
}
[data-status="open"] .status-dot  { background: #4ade80; }
[data-status="closed"] .status-dot { background: #f87171; }

/* Nav bar */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(251,247,236,0.95);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(64,60,45,0.10);
}
.site-header.scrolled .header-info { display: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  min-height: var(--nav-bar-h);
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand img,
.brand .custom-logo,
.brand .custom-logo-link img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  max-height: 64px;
  object-fit: contain;
  transition: height 0.3s ease;
}
.brand .custom-logo-link { margin: 0; padding: 0; line-height: 0; }
.site-header.scrolled .brand img,
.site-header.scrolled .brand .custom-logo-link img { height: 46px; }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(251,247,236,0.85);
  border: 1px solid rgba(64,60,45,0.15);
  backdrop-filter: blur(8px);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--paper); }
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--earth-bark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Nav-close button (mobile only) */
.nav-close {
  display: none;
  position: absolute;
  top: 18px; right: 18px;
  padding: 8px;
  color: var(--earth-bark);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-close:hover { background: var(--paper-deep); }

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--earth-bark);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-sans);
}
button.nav-link { border: none; background: none; cursor: pointer; }
.nav-link:hover,
.nav-link:focus-visible { color: var(--deep-forest); background: rgba(95,107,82,0.08); }

.chev {
  font-size: 0.7rem;
  transition: transform 0.2s;
  display: inline-block;
  line-height: 1;
}
.has-dropdown:hover .chev,
.has-dropdown .dropdown-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(64,60,45,0.08);
  padding: 10px;
  min-width: 200px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown .dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--earth-bark);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--paper-warm); color: var(--deep-forest); }

/* CTA button in nav */
.nav-cta {
  margin-left: 12px;
  flex-shrink: 0;
}

/* Nav backdrop (mobile) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 98;
  backdrop-filter: blur(2px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:focus-visible { outline: 2px solid var(--deep-forest); outline-offset: 3px; }

.btn-primary {
  background: var(--deep-forest);
  color: var(--zen-sand);
  border-color: var(--deep-forest);
}
.btn-primary:hover { background: var(--herbal-moss); border-color: var(--herbal-moss); color: var(--zen-sand); }

.btn-outline {
  background: transparent;
  color: var(--earth-bark);
  border-color: rgba(64,60,45,0.35);
}
.btn-outline:hover { border-color: var(--earth-bark); background: rgba(64,60,45,0.05); color: var(--earth-bark); }

.btn-outline-light {
  background: transparent;
  color: var(--zen-sand);
  border-color: rgba(248,237,204,0.45);
}
.btn-outline-light:hover { background: rgba(248,237,204,0.1); border-color: var(--zen-sand); color: #fff; }

.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 18px 42px; font-size: 1rem; }

/* ============================================================
   HERO (Homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-total) + 60px) 0 90px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(248,237,204,0.35) 0%, rgba(244,238,222,0.25) 40%, rgba(185,195,163,0.35) 100%),
    url('./assets/hero-bg.jpg') center center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251,247,236,0.15) 0%, rgba(251,247,236,0.50) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
  width: 100%;
}

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.03;
  color: var(--earth-bark);
  margin-bottom: 28px;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--deep-forest); }

.hero-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  color: var(--charcoal-olive);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--weathered-olive);
  margin-bottom: 38px;
  max-width: 560px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.locations {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(64,60,45,0.18);
}
.locations .loc { display: flex; flex-direction: column; }
.locations .loc span:first-child {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--herbal-moss); font-weight: 700; margin-bottom: 4px;
}
.locations .loc span:last-child {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--earth-bark); font-style: italic;
}

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 1/1.05; }
.hero-visual .disk {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(248,237,204,0.9), rgba(185,195,163,0.7) 55%, rgba(86,105,78,0.6) 100%);
  box-shadow: 0 30px 80px rgba(64,60,45,0.2);
}
.hero-capy {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  filter: drop-shadow(0 10px 25px rgba(64,60,45,0.25));
  z-index: 2;
}
.hero-visual .leaf {
  position: absolute;
  width: 140px; height: 220px;
  background: var(--herbal-moss);
  border-radius: 0 100% 0 100%;
  opacity: 0.65;
}
.hero-visual .leaf.l1 { top: -20px; left: 20%; transform: rotate(-24deg); }
.hero-visual .leaf.l2 { bottom: 0; right: 10%; transform: rotate(40deg); opacity: 0.45; width: 160px; height: 260px; }
.hero-visual .leaf.l3 { bottom: 30px; left: -30px; transform: rotate(-80deg); opacity: 0.35; width: 110px; height: 180px; }

.hero-quote-pill {
  position: absolute;
  bottom: 60px; right: -20px;
  background: var(--paper);
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.hero-quote-pill span { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--earth-bark); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--earth-bark);
  padding: 18px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
  color: var(--zen-sand);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  align-items: center;
}
.trust-track .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--soft-sage-mist);
  flex-shrink: 0;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT PREVIEW (Homepage)
   ============================================================ */
.about-preview { padding: 130px 0; background: var(--paper-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.about-portrait {
  border-radius: 280px 280px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--soft-sage-mist);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.about-copy .eyebrow { margin-bottom: 18px; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy p { color: var(--weathered-olive); margin-bottom: 16px; }
.about-copy .btn { margin-top: 8px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 130px 0; background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.service-card {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid rgba(64,60,45,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; gap: 16px;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--deep-forest);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.service-icon svg { stroke: var(--zen-sand); }
.service-card h3 { font-size: 1.55rem; margin-bottom: 0; }
.service-card p { color: var(--weathered-olive); font-size: 0.98rem; line-height: 1.65; max-width: none; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--deep-forest);
  margin-top: auto;
  transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 10px; }

/* ============================================================
   SPECIALTIES (Homepage teaser)
   ============================================================ */
.specs-section { padding: 130px 0; background: var(--paper-warm); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.spec-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  border: 1px solid rgba(64,60,45,0.07);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spec-card .spec-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--deep-forest);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.spec-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.spec-card p { font-size: 0.88rem; color: var(--weathered-olive); max-width: none; line-height: 1.5; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { padding: 130px 0; background: var(--paper); }
.process-list { margin-top: 64px; border-top: 1px solid rgba(64,60,45,0.12); }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(64,60,45,0.12);
  align-items: start;
  transition: padding-left 0.3s;
}
.process-step:hover { padding-left: 12px; }
.step-num {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: var(--soft-sage-mist);
  line-height: 1;
  font-style: italic;
  font-weight: 400;
}
.step-content h3 { font-size: 1.55rem; margin-bottom: 10px; }
.step-content p { color: var(--weathered-olive); max-width: none; }
.step-time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--herbal-moss); font-weight: 700; margin-top: 12px;
  font-family: var(--font-sans);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 130px 0; background: var(--paper-warm); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testimonial {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(64,60,45,0.07);
}
.testimonial .stars { color: var(--deep-forest); font-size: 0.95rem; margin-bottom: 16px; }
.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--charcoal-olive);
  margin-bottom: 20px;
  max-width: none;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--herbal-moss);
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview { padding: 130px 0; background: var(--paper); }
.blog-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 64px;
}
.blog-card.big { grid-row: 1 / 3; }
.blog-card {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(64,60,45,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--soft-sage-mist);
}
.blog-card.small .card-thumb { aspect-ratio: 16/7; }
.blog-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .card-thumb img { transform: scale(1.04); }
.blog-card .card-body { padding: 28px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-card .card-cat {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--herbal-moss); margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.45rem; line-height: 1.2; margin-bottom: 12px; }
.blog-card.small h3 { font-size: 1.15rem; }
.blog-card p { color: var(--weathered-olive); font-size: 0.95rem; max-width: none; line-height: 1.6; flex: 1; }
.blog-card .read-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--deep-forest);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 130px 0;
  background: var(--deep-forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(185,195,163,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(248,237,204,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  color: var(--zen-sand);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  position: relative;
}
.final-cta p {
  color: rgba(248,237,204,0.8);
  font-size: 1.15rem;
  margin: 0 auto 40px;
  max-width: 560px;
  position: relative;
}
.final-cta .cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { padding: 90px 0; background: var(--paper-warm); }
.newsletter-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.newsletter-inner h2 { margin-bottom: 14px; }
.newsletter-inner p { color: var(--weathered-olive); margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 12px; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 0;
  padding: 14px 20px;
  border: 1.5px solid rgba(64,60,45,0.18);
  border-radius: var(--radius-md);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--earth-bark);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--deep-forest); }
.newsletter-form input::placeholder { color: var(--weathered-olive); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal-olive);
  color: rgba(248,237,204,0.75);
  padding: 80px 0 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 90px; width: auto;
  background: var(--paper);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(248,237,204,0.65);
  max-width: 280px;
  line-height: 1.55;
}
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--soft-sage-mist);
  margin-bottom: 20px;
}
.footer-grid a {
  display: block;
  color: rgba(248,237,204,0.65);
  margin-bottom: 10px;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--zen-sand); }
.footer-bottom {
  border-top: 1px solid rgba(248,237,204,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(248,237,204,0.45);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(248,237,204,0.55); }
.footer-bottom a:hover { color: var(--zen-sand); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--header-total) + 80px) 0 90px;
  background: linear-gradient(165deg, #F8EDCC 0%, #F4EEDE 50%, #B9C3A3 100%);
  position: relative;
  overflow: hidden;
}
.page-hero.dark {
  background: linear-gradient(135deg, var(--charcoal-olive) 0%, var(--deep-forest) 100%);
}
.page-hero.dark h1,
.page-hero.dark .eyebrow,
.page-hero.dark p { color: var(--zen-sand); }
.page-hero.dark p { color: rgba(248,237,204,0.8); }
.page-hero.dark .eyebrow { color: var(--soft-sage-mist); }

.page-hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.page-hero-inner.centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.05;
}
.page-hero h1 em { color: var(--deep-forest); font-style: normal; }
.page-hero .lede { margin-top: 6px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bio-section { padding: 120px 0; background: var(--paper); }
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.bio-side {
  position: sticky; top: calc(var(--nav-bar-h) + 24px);
}
.bio-portrait {
  border-radius: 260px 260px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
  background: var(--soft-sage-mist);
  aspect-ratio: 4/5;
}
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.bio-credentials { list-style: none; padding: 0; }
.bio-credentials li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(64,60,45,0.1);
  font-size: 0.9rem;
  color: var(--weathered-olive);
}
.bio-credentials li:last-child { border-bottom: none; }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--deep-forest); flex-shrink: 0; margin-top: 6px; }

.bio-content h2 { margin-bottom: 24px; }
.bio-content p { color: var(--weathered-olive); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.75; }
.bio-content h3 { margin-top: 50px; margin-bottom: 18px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--paper-warm);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border-left: 3px solid var(--deep-forest);
}
.value-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--weathered-olive); max-width: none; }

/* ============================================================
   RATES PAGE
   ============================================================ */
.rates-section { padding: 120px 0; background: var(--paper); }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.rate-card {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid rgba(64,60,45,0.08);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rate-card.featured {
  background: var(--deep-forest);
  color: var(--zen-sand);
}
.rate-card.featured h3 { color: var(--zen-sand); }
.rate-card.featured .rate-price { color: var(--zen-sand); }
.rate-card.featured .eyebrow { color: var(--soft-sage-mist); }
.rate-card.featured p { color: rgba(248,237,204,0.8); }
.rate-card h3 { font-size: 1.8rem; margin: 6px 0; }
.rate-price {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--earth-bark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rate-price sup { font-size: 1.2rem; font-weight: 400; vertical-align: top; margin-right: 4px; opacity: 0.7; }
.rate-duration {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--weathered-olive); font-weight: 700; margin-top: -8px;
}
.rate-card.featured .rate-duration { color: var(--soft-sage-mist); }
.rate-card p { color: var(--weathered-olive); font-size: 0.98rem; line-height: 1.6; max-width: none; }
.rate-divider { height: 1px; background: rgba(64,60,45,0.12); }
.rate-card.featured .rate-divider { background: rgba(248,237,204,0.2); }

/* Insurance section */
.insurance-section { padding: 120px 0; background: var(--paper-warm); }
.ins-logos-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
}
.ins-logos-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.ins-logo {
  width: 160px; height: 90px;
  background: var(--paper);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  padding: 14px 18px;
  margin: 0 10px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.ins-logo img { max-width: 120px; max-height: 56px; object-fit: contain; }

.insurance-list {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  margin-top: 60px;
  border: 1px solid rgba(64,60,45,0.08);
}
.insurance-list h3 { margin-bottom: 24px; }
.insurance-list ul {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 24px;
  list-style: none; padding: 0;
}
.insurance-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(64,60,45,0.08);
  font-size: 0.95rem;
  color: var(--charcoal-olive);
  display: flex; align-items: center; gap: 8px;
}
.insurance-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--deep-forest);
  flex-shrink: 0;
}

.verify-note {
  background: var(--paper-deep);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 48px;
  display: flex; gap: 16px; align-items: flex-start;
}
.verify-note svg { flex-shrink: 0; stroke: var(--deep-forest); }
.verify-note p { max-width: none; font-size: 0.95rem; color: var(--charcoal-olive); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { padding: 100px 0; background: var(--paper); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 60px; }
.faq-group-title {
  font-family: var(--font-sans);
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--herbal-moss); font-weight: 700;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(64,60,45,0.15);
}
.faq-item { border-bottom: 1px solid rgba(64,60,45,0.12); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; list-style: none;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--earth-bark);
  padding: 22px 0;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--deep-forest); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-family: var(--font-serif);
  font-size: 1.8rem; color: var(--deep-forest);
  transition: transform 0.25s; flex-shrink: 0;
}
details[open] .faq-q::after { content: '–'; }
.faq-a {
  padding: 0 0 22px;
  color: var(--charcoal-olive);
  font-size: 1.02rem; line-height: 1.75; max-width: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info p { color: var(--weathered-olive); margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--paper-warm);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { stroke: var(--deep-forest); }
.contact-detail-text strong { display: block; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 700; color: var(--herbal-moss); margin-bottom: 2px; }
.contact-detail-text span { color: var(--charcoal-olive); font-size: 0.98rem; }

.contact-form {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid rgba(64,60,45,0.08);
}
.contact-form h3 { margin-bottom: 28px; font-size: 1.6rem; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--herbal-moss);
  margin-bottom: 8px; font-family: var(--font-sans);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(64,60,45,0.18);
  border-radius: var(--radius-md);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px; /* prevents iOS zoom */
  color: var(--earth-bark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--deep-forest);
  box-shadow: 0 0 0 3px rgba(79,108,77,0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-row .field { margin-bottom: 0; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero { padding: calc(var(--header-total) + 60px) 0 70px; text-align: center; background: linear-gradient(165deg, #F8EDCC 0%, #F4EEDE 60%, #B9C3A3 100%); }
.blog-hero h1 { margin-bottom: 14px; }
.blog-hero p { color: var(--weathered-olive); max-width: 540px; margin: 0 auto; }

.blog-controls { padding: 32px 0 0; background: var(--paper); border-bottom: 1px solid rgba(64,60,45,0.1); }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 24px; }
.filter-pill {
  padding: 9px 20px; border-radius: 999px;
  font-size: 0.77rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid rgba(64,60,45,0.18);
  background: var(--paper); color: var(--weathered-olive);
  transition: all 0.2s;
}
.filter-pill.active,
.filter-pill:hover { background: var(--deep-forest); color: var(--zen-sand); border-color: var(--deep-forest); }

.blog-search { position: relative; max-width: 360px; margin-bottom: 24px; }
.blog-search input { padding-left: 44px; }
.blog-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); stroke: var(--weathered-olive); }

.blog-layout {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 64px; padding: 70px 0;
  align-items: start;
}
.masonry { columns: 2; column-gap: 24px; }
.masonry > * { break-inside: avoid; margin-bottom: 24px; }
.post-card {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(64,60,45,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .thumb { overflow: hidden; }
.post-card .thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .thumb img { transform: scale(1.04); }
.post-card .body { padding: 26px 28px 28px; }
.post-card .cat {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--herbal-moss); margin-bottom: 10px; display: block;
}
.post-card h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: 12px; }
.post-card p { color: var(--weathered-olive); font-size: 0.95rem; max-width: none; line-height: 1.6; }
.post-card .meta { font-size: 0.8rem; color: var(--weathered-olive); margin-top: 14px; }

.blog-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: calc(var(--nav-bar-h) + 24px); }
.sidebar-widget {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid rgba(64,60,45,0.07);
}
.sidebar-widget h4 {
  font-family: var(--font-sans); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--herbal-moss);
  margin-bottom: 18px;
}

/* ============================================================
   SERVICE / SPECIALTY INNER PAGES
   ============================================================ */
.svc-section { padding: 120px 0; background: var(--paper); }
.svc-section:nth-child(even) { background: var(--paper-warm); }
.service-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }
.svc-copy .eyebrow { margin-bottom: 16px; }
.svc-copy h2 { margin-bottom: 22px; }
.svc-copy p { color: var(--weathered-olive); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.75; }
.svc-copy h3 { margin-top: 36px; margin-bottom: 14px; font-size: 1.5rem; }
.svc-copy ul { list-style: none; padding: 0; margin-bottom: 18px; }
.svc-copy ul li {
  padding: 9px 0; border-bottom: 1px solid rgba(64,60,45,0.08);
  color: var(--weathered-olive); font-size: 0.98rem;
  display: flex; align-items: flex-start; gap: 10px;
}
.svc-copy ul li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--deep-forest);
  flex-shrink: 0; margin-top: 8px;
}
.svc-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--soft-sage-mist);
}
.svc-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Specialty stat number */
.spec-number {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-style: italic;
  color: var(--deep-forest);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

/* ============================================================
   STATUS PILL
   ============================================================ */
[data-status="open"] .status-text::before    { content: 'Open'; }
[data-status="closed"] .status-text::before  { content: 'Closed'; }
[data-status="loading"] .status-text::before { content: '—'; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex; gap: 8px; align-items: center;
  justify-content: center; padding: 20px 0 40px;
  flex-wrap: wrap;
}
.pagination a,
.pagination .current,
.pagination button {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid rgba(64,60,45,0.15);
  background: var(--paper); color: var(--earth-bark);
  transition: all 0.2s;
}
.pagination .current,
.pagination a:hover { background: var(--deep-forest); color: var(--zen-sand); border-color: var(--deep-forest); }
.pagination .arrow { width: auto; padding: 0 18px; gap: 6px; }

/* ============================================================
   SCROLL HINT
   ============================================================ */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.5; z-index: 5;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--earth-bark);
}
.scroll-hint .line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--earth-bark), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Footer: 4-column grid ────────────────────────────────── */
.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr !important;
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
