/* =========================================================
   DEMENTIA COMPANION — STYLES
   Mobile-first, WCAG AA+, semantic, responsive
   ========================================================= */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────── */
:root {
  /* Palette */
  --cream:         #FAF8F3;
  --cream-mid:     #F2EAE0;
  --cream-deep:    #E8DDD1;
  --forest:        #2A5442;
  --forest-mid:    #3D7060;
  --sage:          #6B9080;
  --sage-light:    #C8DDD6;
  --amber:         #C47A3B;
  --amber-dark:    #A8612A;
  --amber-pale:    #F5DFC8;
  --ink:           #1C2921;
  --ink-mid:       #425249;
  --ink-light:     #7A8C82;
  --border:        #E0D7CA;
  --border-subtle: #EDE8DF;
  --white:         #FFFFFF;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Scale (fluid via clamp) */
  --text-xs:   0.8125rem;   /* 13px */
  --text-sm:   0.9375rem;   /* 15px */
  --text-base: 1.125rem;    /* 18px */
  --text-lg:   1.25rem;     /* 20px */
  --text-xl:   1.5rem;      /* 24px */
  --text-2xl:  clamp(1.75rem, 3vw, 2.25rem);
  --text-3xl:  clamp(2rem, 4vw, 2.75rem);
  --text-4xl:  clamp(2.5rem, 5.5vw, 4rem);
  --text-hero: clamp(2.75rem, 6vw, 4.5rem);

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Layout */
  --container-max: 1680px;
  --container-pad: clamp(1rem, 2vw, 1.5rem);

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(28, 41, 33, 0.06), 0 1px 2px rgba(28, 41, 33, 0.04);
  --shadow-sm:  0 2px 8px rgba(28, 41, 33, 0.07), 0 1px 3px rgba(28, 41, 33, 0.04);
  --shadow-md:  0 4px 16px rgba(28, 41, 33, 0.09), 0 2px 6px rgba(28, 41, 33, 0.05);
  --shadow-lg:  0 8px 32px rgba(28, 41, 33, 0.11), 0 4px 12px rgba(28, 41, 33, 0.06);

  /* Motion */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:     150ms;
  --dur-base:     250ms;
  --dur-slow:     500ms;
  --dur-reveal:   620ms;

  /* Z-index scale */
  --z-base:     1;
  --z-dropdown: 20;
  --z-nav:      40;
  --z-header:   50;
  --z-overlay:  45;
}


/* ─── 2. RESET & BASE ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

input, textarea, select {
  font: inherit;
  color: inherit;
}

p { max-width: 72ch; }

em { font-style: italic; }

strong { font-weight: 600; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }

address { font-style: normal; }


/* ─── 3. LAYOUT UTILITIES ──────────────────────────────── */
.container {
  width: min(100% - 2 * var(--container-pad), var(--container-max));
  margin-inline: auto;
  padding-inline: 0;
}

.section-header {
  max-width: 860px;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  line-height: 1.65;
}

.section-alt {
  background-color: var(--cream-mid);
}

section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

@media (max-width: 767px) {
  section { padding-block: var(--space-16); }
}


/* ─── 4. EYEBROW LABEL ──────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-3);
}

.eyebrow-light {
  color: var(--amber-pale);
}


/* ─── 5. BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75em 1.5em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-base);
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color var(--dur-base) var(--ease-in-out),
    color           var(--dur-base) var(--ease-in-out),
    box-shadow      var(--dur-base) var(--ease-in-out),
    transform       var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.97); }

/* Primary — amber */
.btn-primary {
  background-color: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196, 122, 59, 0.35);
}

.btn-primary:hover {
  background-color: var(--amber-dark);
  box-shadow: 0 4px 16px rgba(196, 122, 59, 0.45);
}

/* Ghost — bordered */
.btn-ghost {
  background-color: transparent;
  color: var(--forest);
  border: 1.5px solid var(--sage-light);
}

.btn-ghost:hover {
  background-color: var(--white);
  border-color: var(--forest);
}

/* Forest — solid green */
.btn-forest {
  background-color: var(--forest);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(42, 84, 66, 0.28);
}

.btn-forest:hover {
  background-color: var(--forest-mid);
  box-shadow: 0 4px 16px rgba(42, 84, 66, 0.38);
}

.btn-lg {
  padding: 0.9em 1.8em;
  font-size: var(--text-lg);
}

.btn-md {
  padding: 0.72em 1.4em;
}


/* ─── 6. SKIP LINK ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-3) var(--space-6);
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transform: translateY(-200%);
  transition: transform var(--dur-base);
  font-size: var(--text-sm);
}

.skip-link:focus {
  transform: translateY(0);
}


/* ─── 7. HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: transparent;
  transition:
    background-color var(--dur-base) var(--ease-in-out),
    box-shadow       var(--dur-base) var(--ease-in-out);
}

.site-header.scrolled {
  background-color: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(28, 41, 33, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  cursor: pointer;
}

.logo-mark {
  flex-shrink: 0;
  transition: opacity var(--dur-base);
}

.logo:hover .logo-mark { opacity: 0.85; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

/* Nav links */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-fast);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--ink);
  z-index: var(--z-header);
  transition: background-color var(--dur-fast);
}

.nav-toggle:hover { background-color: var(--cream-mid); }
.nav-toggle:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

.icon-close { display: none; }

/* Overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 41, 33, 0.45);
  z-index: var(--z-overlay);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
}

/* Mobile nav */
@media (max-width: 1200px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}


/* ─── 8. HERO ───────────────────────────────────────────── */
.section-hero {
  padding-block: var(--space-20) var(--space-32);
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-headline {
  font-size: var(--text-hero);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-headline em {
  color: var(--forest);
  font-style: italic;
}

.hero-lead {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--ink-light);
  max-width: 100%;
}

.hero-reassurance svg {
  flex-shrink: 0;
  color: var(--sage);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
  width: min(460px, 100%);
}

.botanical {
  width: 100%;
  height: auto;
}

.hero-trust-card {
  position: absolute;
  bottom: 10%;
  left: -2%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border: 1px solid var(--border-subtle);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.trust-avatars {
  display: flex;
}

.avatar {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
}

.trust-avatars .avatar:first-child { margin-left: 0; }

.trust-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink);
  line-height: 1;
}

.trust-label {
  font-size: var(--text-xs);
  color: var(--ink-light);
  font-weight: 500;
  margin-top: 1px;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }

  .hero-visual {
    justify-content: flex-end;
  }
}

@media (max-width: 899px) {
  .hero-visual { display: none; }
  .section-hero { padding-block: var(--space-16) var(--space-20); }
}


/* ─── 9. SERVICES ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  border: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-4);
  transition:
    box-shadow  var(--dur-base) var(--ease-out),
    transform   var(--dur-base) var(--ease-out);
}

.service-card::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--amber);
  flex-shrink: 0;
  margin-bottom: var(--space-2);
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(42, 84, 66, 0.12);
  transform: translateY(-4px);
}

.service-icon { display: none; }

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0;
  color: var(--ink);
}

.service-card p {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}


/* ─── 10. HOW IT WORKS ──────────────────────────────────── */
.steps-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.step-num-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.step-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--ink);
}

.step-body p {
  color: var(--ink-mid);
  max-width: none;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .steps-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding-inline: var(--space-4);
  }

  .step-body h3 { font-size: var(--text-xl); }
  .step-body p { font-size: var(--text-sm); }

  .step-connector {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 80px;
    margin-top: 28px;
  }

  .step-connector svg {
    width: 100%;
    height: 24px;
  }
}


/* ─── 11. OUR APPROACH ──────────────────────────────────── */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: start;
}

.approach-text h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
}

.approach-text p {
  color: var(--ink-mid);
  margin-bottom: var(--space-5);
  max-width: 52ch;
}

.approach-text p:last-of-type { margin-bottom: var(--space-8); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-1);
  line-height: 1.3;
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  max-width: none;
}

@media (min-width: 960px) {
  .approach-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}


/* ─── 12. TESTIMONIALS ──────────────────────────────────── */
.section-testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.testimonial-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10) var(--space-8);
  border: 1px solid var(--border-subtle);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--amber-pale);
  position: absolute;
  top: var(--space-6);
  left: var(--space-8);
  user-select: none;
  pointer-events: none;
}

.testimonial-card p {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
  max-width: none;
  padding-top: var(--space-8);
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.testimonial-card cite strong {
  font-size: var(--text-base);
  color: var(--ink);
}

.testimonial-card cite span {
  font-size: var(--text-sm);
  color: var(--ink-light);
}

.testimonial-card cite em {
  font-size: var(--text-xs);
  opacity: 0.65;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ─── 13. RESOURCES ─────────────────────────────────────── */
.resources-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(42, 84, 66, 0.12);
}

.resource-card {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(42, 84, 66, 0.12);
  border-radius: 0;
  padding: var(--space-8) 0;
  cursor: pointer;
  transition:
    background  var(--dur-base) var(--ease-out),
    padding-left var(--dur-base) var(--ease-out);
  text-decoration: none;
  box-shadow: none;
}

.resource-card:hover {
  background: rgba(42, 84, 66, 0.03);
  box-shadow: none;
  border-bottom-color: rgba(42, 84, 66, 0.12);
  transform: none;
  padding-left: var(--space-4);
}

.resource-card:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
  border-radius: 4px;
}

.resource-icon { display: none; }

.resource-text { flex: 1; }

.resource-text h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: var(--space-2);
}

.resource-text p {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: var(--leading-relaxed);
  max-width: 70ch;
  margin: 0;
}

.resource-arrow {
  flex-shrink: 0;
  color: var(--amber);
  transition: transform var(--dur-base) var(--ease-out);
}

.resource-card:hover .resource-arrow {
  color: var(--amber);
  transform: translateX(4px);
}


/* ─── 14. CONTACT ───────────────────────────────────────── */
.section-contact {
  background-color: var(--forest);
  color: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Contact info */
.contact-info h2 {
  color: var(--cream);
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
}

.contact-info > p {
  color: var(--sage-light);
  font-size: var(--text-lg);
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: var(--space-10);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(250, 248, 243, 0.1);
  border: 1px solid rgba(250, 248, 243, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-pale);
  margin-top: 2px;
}

.detail-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 2px;
}

.detail-value {
  display: block;
  font-size: var(--text-base);
  color: var(--cream);
  line-height: 1.5;
}

.detail-value a,
a.detail-value {
  color: var(--cream);
  transition: color var(--dur-fast);
}

.detail-value a:hover,
a.detail-value:hover {
  color: var(--amber-pale);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.detail-value:focus-visible,
.detail-value a:focus-visible {
  outline: 2px solid var(--amber-pale);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink);
}

.req {
  color: var(--amber);
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-size: var(--text-base);
  color: var(--ink);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(42, 84, 66, 0.12);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Checkbox */
.form-check-group {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-check-group input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  accent-color: var(--forest);
  margin-top: 2px;
  cursor: pointer;
}

.form-check-group label {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  line-height: 1.5;
  cursor: pointer;
}

/* Form feedback */
.form-feedback {
  padding: var(--space-3) var(--space-4);
  background: #fdf0ee;
  border: 1px solid #e8c4c0;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: #7a2a22;
}

.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: #eef6f1;
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--forest);
  font-weight: 500;
}

.form-btn {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--ink-light);
  text-align: center;
  max-width: none;
  line-height: 1.5;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }
}


/* ─── 15. FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--cream-mid);
  padding-block: var(--space-16) var(--space-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

/* Footer logo */
.footer-logo .logo-name,
.footer-logo .logo-sub {
  color: var(--cream);
}

.footer-tagline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 38ch;
}

.footer-reg {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--ink-light);
  opacity: 0.7;
}

/* Footer nav columns */
.footer-col-heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: var(--space-4);
}

.footer-nav ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a,
.footer-contact-col a {
  font-size: var(--text-sm);
  color: var(--ink-light);
  transition: color var(--dur-fast);
}

.footer-nav a:hover,
.footer-contact-col a:hover {
  color: var(--cream);
}

.footer-nav a:focus-visible,
.footer-contact-col a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-contact-col li {
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: 1.5;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(250, 248, 243, 0.08);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--ink-light);
  opacity: 0.6;
  max-width: 100%;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--ink-light);
  opacity: 0.6;
  transition: opacity var(--dur-fast);
}

.footer-legal a:hover { opacity: 1; }

.footer-legal a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}


/* ─── 16. SCROLL REVEAL ANIMATIONS ─────────────────────── */
.reveal-up,
.reveal-fade {
  opacity: 0;
}

.reveal-up {
  transform: translateY(22px);
  transition:
    opacity   var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
}

.reveal-fade {
  transition: opacity var(--dur-reveal) var(--ease-out);
}

.reveal-up.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fires immediately via JS */
.hero-content .reveal-up,
.hero-content .reveal-fade,
.hero-visual.reveal-up {
  transition:
    opacity   0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}


/* ─── 17. FLOATING CARD ANIMATION ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-trust-card {
    animation: none;
  }

  .reveal-up,
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}


/* ─── 18. FOCUS STYLES (global) ─────────────────────────── */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Remove default outline only for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}


/* ─── 19. SECTION-SPECIFIC TWEAKS ───────────────────────── */

/* Section header centered option */
.section-header.centered {
  text-align: center;
  margin-inline: auto;
}

/* How-it-works section has its own background */
.section-how {
  background: var(--white);
}

/* ─── 20. PRINT ─────────────────────────────────────────── */
@media print {
  .site-header,
  .nav-toggle,
  .hero-trust-card,
  .hero-visual { display: none; }

  body { font-size: 11pt; color: #000; background: #fff; }

  .reveal-up,
  .reveal-fade {
    opacity: 1;
    transform: none;
  }

  section { padding-block: 1.5rem; page-break-inside: avoid; }
}


/* =========================================================
   MULTI-PAGE ADDITIONS
   ========================================================= */

/* ─── 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;
}

.inline-link {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color var(--dur-fast);
}
.inline-link:hover { color: var(--amber); }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding-block: var(--space-16) var(--space-20);
  border-bottom: 1px solid var(--border);
}

.page-hero--dark {
  background-color: var(--forest);
  border-bottom: none;
}

.page-hero--dark h1        { color: var(--cream); }
.page-hero--dark .eyebrow  { color: var(--amber-pale); }
.page-hero--dark .page-lead--light { color: var(--sage-light); }

.page-hero-content { max-width: 740px; }

.page-lead {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 58ch;
  margin-top: var(--space-4);
}

/* ─── ACTIVE NAV ─────────────────────────────────────────── */
.nav-links a[aria-current="page"] {
  color: var(--forest);
}
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ─── SECTION CTA ROW ────────────────────────────────────── */
.section-cta-row {
  margin-top: var(--space-12);
  display: flex;
  justify-content: center;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.section-faq { background: var(--white); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-10);
  border-top: 1px solid var(--border-subtle);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-6) 0;
}

.faq-question {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink);
  cursor: default;
  margin-bottom: var(--space-3);
}

.faq-answer {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: var(--leading-relaxed);
  max-width: 68ch;
  margin: 0;
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── STATS STRIP ────────────────────────────────────────── */
.section-stats {
  background: var(--forest);
  padding-block: var(--space-10);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8) var(--space-6);
}
@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { display: flex; flex-direction: column; gap: var(--space-2); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-sm);
  color: rgba(250,248,243,0.75);
  line-height: 1.4;
}

/* ─── CITY SERVICES LIST ─────────────────────────────────── */
.city-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-10);
  border-top: 1px solid var(--border-subtle);
}
.city-service-row {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: flex-start;
}
.city-service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(42,84,66,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-service-row h3 {
  font-size: var(--text-lg);
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.city-service-row p {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: none;
}

/* ─── WHY CITY ───────────────────────────────────────────── */
.why-city-layout {
  display: grid;
  gap: var(--space-12);
}
@media (min-width: 900px) {
  .why-city-layout { grid-template-columns: 1fr 380px; align-items: start; }
}
.why-city-layout h2 { margin-bottom: var(--space-5); }
.why-city-layout > div > p { margin-bottom: var(--space-6); max-width: 58ch; }

.card--forest {
  background: var(--forest);
  border-radius: 20px;
  padding: var(--space-9) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.card--forest h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--cream);
  margin: 0;
}
.card--forest p {
  color: rgba(250,248,243,0.80);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: none;
}
.card-sub {
  font-size: var(--text-sm) !important;
  color: rgba(250,248,243,0.55) !important;
  margin-top: var(--space-2) !important;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background-color: var(--forest);
  color: var(--cream);
  padding-block: var(--space-20);
}

.cta-band-inner {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: var(--sage-light);
  font-size: var(--text-lg);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  margin-inline: auto;
  max-width: 52ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* CTA band buttons */
.btn-amber {
  background-color: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196, 122, 59, 0.40);
}
.btn-amber:hover {
  background-color: var(--amber-dark);
  box-shadow: 0 4px 16px rgba(196, 122, 59, 0.50);
}
.btn-amber:focus-visible { outline-color: var(--amber-pale); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 248, 243, 0.35);
}
.btn-ghost-light:hover {
  background: rgba(250, 248, 243, 0.1);
  border-color: rgba(250, 248, 243, 0.65);
}
.btn-ghost-light:focus-visible { outline-color: var(--amber-pale); }

/* ─── SERVICES GRID (full detail layout) ─────────────────── */
.services-grid--full {
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.service-card--full {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding: var(--space-8);
}

.service-card--full:hover {
  transform: translateY(-2px);
}

.service-card-icon-wrap { flex-shrink: 0; }

.service-icon--lg {
  width: 60px;
  height: 60px;
}

.service-card-body h3 {
  margin-bottom: var(--space-3);
}

.service-card-body p {
  color: var(--ink-mid);
  max-width: none;
}

.service-card-body p + p {
  margin-top: var(--space-3);
}

@media (min-width: 640px) {
  .services-grid--full {
    grid-template-columns: 1fr;
  }
}

/* ─── WHO IS THIS FOR ────────────────────────────────────── */
.section-who { background: var(--cream-mid); }

.who-for {
  max-width: 780px;
  margin-inline: auto;
}

.who-for h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.who-for > p:not(.section-lead) {
  color: var(--ink-mid);
  margin-top: var(--space-5);
}

.who-for-list {
  margin-block: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.who-for-list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.55;
}

.who-for-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 9px;
}

/* ─── STEPS DETAILED (how-it-works.html) ─────────────────── */
.section-steps { background: var(--white); }

.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  max-width: 820px;
  margin-inline: auto;
  counter-reset: none;
}

.step-detailed {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.step-detailed:last-child {
  border-bottom: none;
}

.step-detailed-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.step-detailed-num span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}

.step-detailed-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.step-detailed-body p {
  color: var(--ink-mid);
  max-width: none;
}

.step-detailed-body p + p {
  margin-top: var(--space-3);
}

/* ─── FIRST CALL SECTION ─────────────────────────────────── */
.section-first-call { background: var(--cream-mid); }

.first-call-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  max-width: 820px;
}

.first-call-layout h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.conversation-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
}

.conversation-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.5;
}

.conversation-list li svg {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 3px;
}

@media (min-width: 768px) {
  .first-call-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.section-faq { background: var(--white); }

.faq-section {
  max-width: 800px;
  margin-inline: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--cream);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--dur-fast);
}

.faq-question:hover { background-color: var(--cream-mid); }

.faq-question:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur-base), transform var(--dur-base) var(--ease-out);
}

.faq-item.is-open .faq-icon {
  background: var(--sage-light);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
  padding: 0 var(--space-6) var(--space-5);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  color: var(--ink-mid);
  max-width: none;
}

/* ─── STORY / ABOUT PAGE ─────────────────────────────────── */
.section-story { background: var(--white); }

.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}

.story-text .eyebrow { margin-bottom: var(--space-3); }
.story-text h2 { margin-bottom: var(--space-6); }
.story-text p {
  color: var(--ink-mid);
  max-width: 58ch;
  margin-bottom: var(--space-5);
}
.story-text p:last-child { margin-bottom: 0; }

.story-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.story-pull-quote {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  position: relative;
  max-width: 360px;
}

.story-pull-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(250, 248, 243, 0.2);
  position: absolute;
  top: var(--space-5);
  left: var(--space-7);
  pointer-events: none;
}

.story-pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--cream);
  line-height: 1.45;
  max-width: none;
  padding-top: var(--space-8);
}

@media (min-width: 900px) {
  .story-layout {
    grid-template-columns: 1fr 380px;
    gap: var(--space-16);
  }
}

/* ─── VALUES EXPANDED ────────────────────────────────────── */
.section-values { background: var(--cream-mid); }

.values-expanded-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10) var(--space-14);
}

@media (min-width: 640px) {
  .values-expanded-grid { grid-template-columns: 1fr 1fr; }
}

.value-card {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-card::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--amber);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.value-card-icon { display: none; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--forest);
  margin-bottom: var(--space-4);
}

.value-card p {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--ink-mid);
  line-height: var(--leading-relaxed);
  max-width: 48ch;
  margin: 0;
}

/* ─── COMPANIONS SECTION ─────────────────────────────────── */
.section-companions { background: var(--white); }

.companions-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.companions-layout h2 { margin-top: var(--space-3); }

.companions-section {
  background: var(--cream-mid);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8);
  border: 1px solid var(--border-subtle);
}

.companions-section > p {
  color: var(--ink);
  font-weight: 500;
  max-width: none;
}

.companions-list {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.companions-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.5;
}

.companions-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage-light);
  border: 2px solid var(--forest);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' fill='none'%3E%3Cpath d='M1 4.5l3 3L10 1' stroke='%232A5442' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 900px) {
  .companions-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ─── RESOURCES PAGE ─────────────────────────────────────── */
.section-intro {
  max-width: 680px;
  margin-bottom: var(--space-10);
}

.section-intro h2 { margin-bottom: var(--space-4); }
.section-intro p { color: var(--ink-mid); font-size: var(--text-lg); line-height: 1.65; }

/* ─── TIPS LIST ──────────────────────────────────────────── */
.section-tips { background: var(--white); }

.tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 820px;
  margin-inline: auto;
}

.tips-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-5);
  background: var(--cream-mid);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.tips-num {
  display: flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tips-list strong {
  display: block;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.tips-list p {
  color: var(--ink-mid);
  max-width: none;
  margin: 0;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.section-contact-page {
  padding-block: var(--space-16) var(--space-24);
  background: var(--cream);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.contact-info-block h3,
.contact-reassurance h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

/* ─── CONTACT DETAILS (shared between pages) ─────────────── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--cream-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-top: 2px;
}

.detail-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2px;
}

.detail-value {
  display: block;
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.5;
}

a.detail-value,
.detail-value a {
  color: var(--forest);
  transition: color var(--dur-fast);
}

a.detail-value:hover,
.detail-value a:hover { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
a.detail-value:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 2px; }

@media (min-width: 960px) {
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: start;
  }
}

/* ─── HOW-IT-WORKS TEASER (home) ─────────────────────────── */
.section-how-teaser { background: var(--white); }

/* ─── TIPS LIST: counter via ::before (no extra element) ─── */
.tips-list {
  counter-reset: tips;
}
.tips-list li {
  counter-increment: tips;
}
.tips-list li::before {
  content: counter(tips);
  display: flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: start;
}

/* ═══════════════════════════════════════════════════════════
   EXTENDED CONTENT — additional sections across all pages
   ═══════════════════════════════════════════════════════════ */

/* ─── STATS BAR (index.html) ─────────────────────────────── */
.stats-bar {
  background: var(--forest);
  padding: var(--space-8) 0;
}

.stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .stats-list { grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-big {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  line-height: 1;
}

.stat-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

/* ─── SITUATIONS (index.html) ────────────────────────────── */
.section-situations {
  padding: var(--space-20) 0;
  background: var(--white);
}

.situations-layout {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .situations-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.situations-text h2 { margin-bottom: var(--space-4); }
.situations-text p  { color: var(--ink-light); margin-bottom: var(--space-4); line-height: var(--leading-relaxed); }

.situations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.situations-list li {
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--forest-light, #C8DDD6);
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--text-base);
  color: var(--ink);
  line-height: var(--leading-normal);
}

/* ─── DIFFERENTIATORS (index.html) ───────────────────────── */
.section-differentiators {
  padding: var(--space-20) 0;
  background: var(--cream);
}

.diff-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}

.diff-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 48px 40px;
  border: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-4);
  transition:
    box-shadow  var(--dur-base) var(--ease-out),
    transform   var(--dur-base) var(--ease-out);
}

.diff-card::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--amber);
  flex-shrink: 0;
  margin-bottom: var(--space-2);
}

.diff-card:hover {
  box-shadow: 0 16px 48px rgba(42, 84, 66, 0.12);
  transform: translateY(-4px);
}

.diff-icon { display: none; }

.diff-card h3 {
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: 0;
}

.diff-card p {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: none;
}

/* ─── SERVICES GRID THREE (index.html) ───────────────────── */
.services-grid--three {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .services-grid--three { grid-template-columns: repeat(3, 1fr); }
}

/* ─── TESTIMONIALS GRID (index.html — 4 quotes) ──────────── */
.testimonials-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── VISIT PRACTICE (services.html) ────────────────────── */
.section-visit-practice {
  padding: var(--space-20) 0;
}

.visit-practice-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

@media (min-width: 768px) {
  .visit-practice-grid { grid-template-columns: repeat(2, 1fr); }
}

.visit-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.visit-step-num {
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: start;
  margin-top: 2px;
}

.visit-step-body h3 {
  font-size: var(--text-lg);
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.visit-step-body p {
  font-size: var(--text-base);
  color: var(--ink-light);
  margin: 0;
  line-height: var(--leading-relaxed);
}

/* ─── SCHEDULING (services.html) ────────────────────────── */
.section-scheduling {
  padding: var(--space-20) 0;
  background: var(--cream);
}

.scheduling-layout {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .scheduling-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.scheduling-text h2 { margin-bottom: var(--space-4); }
.scheduling-text p  { color: var(--ink-light); margin-bottom: var(--space-4); line-height: var(--leading-relaxed); }

.scheduling-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sched-option {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(42,84,66,0.1);
  gap: var(--space-4);
}

.sched-option:last-child { border-bottom: none; }

.sched-option-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  padding-top: 1px;
}

.sched-option-value {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: var(--leading-normal);
}

/* ─── WHO LAYOUT (services.html) ────────────────────────── */
.who-layout {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .who-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.who-text h2 { margin-bottom: var(--space-4); }
.who-text p  { color: var(--ink-light); margin-bottom: var(--space-4); line-height: var(--leading-relaxed); }

.who-for-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.who-for-list li {
  padding: var(--space-3) var(--space-4);
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--forest);
  font-size: var(--text-base);
  color: var(--ink);
  line-height: var(--leading-normal);
}

/* ─── SERVICE QUOTE (services.html) ─────────────────────── */
.section-svc-quote {
  padding: var(--space-16) 0;
  background: var(--cream);
}

.svc-quote-block {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  box-shadow: var(--shadow-md);
  position: relative;
}

.svc-quote-block .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--forest);
  opacity: 0.15;
  margin-bottom: var(--space-2);
  display: block;
}

.svc-quote-block p {
  font-size: var(--text-lg);
  color: var(--ink);
  font-style: italic;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.svc-quote-block cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.svc-quote-block cite strong {
  font-weight: 600;
  color: var(--forest);
}

.svc-quote-block cite span {
  font-size: var(--text-sm);
  color: var(--ink-light);
}

/* ─── FIRST MONTH (how-it-works.html) ───────────────────── */
.section-first-month {
  padding: var(--space-20) 0;
}

.first-month-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

@media (min-width: 768px) {
  .first-month-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .first-month-grid { grid-template-columns: repeat(4, 1fr); }
}

.month-week {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-top: 4px solid var(--forest);
}

.week-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 4px 10px;
  background: rgba(42,84,66,0.08);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.week-body h3 {
  font-size: var(--text-lg);
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.week-body p {
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ─── PHILOSOPHY (about.html) ────────────────────────────── */
.section-philosophy {
  padding: var(--space-20) 0;
}

.philosophy-grid {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-12);
  border-top: 1px solid rgba(42, 84, 66, 0.12);
}

.philosophy-item {
  background: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(42, 84, 66, 0.12);
  box-shadow: none;
  padding: var(--space-12) 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 640px) {
  .philosophy-item {
    grid-template-columns: 96px 1fr;
    gap: var(--space-12);
  }
}

.philosophy-num {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  padding-top: 0.15em;
}

.philosophy-body h3 {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-family: var(--font-display);
  font-style: normal;
  color: var(--ink);
  margin-bottom: var(--space-5);
}

.philosophy-body p {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-base);
  color: var(--ink-mid);
  margin: 0 0 var(--space-3);
  line-height: var(--leading-relaxed);
  max-width: 60ch;
}

.philosophy-body p:last-child { margin-bottom: 0; }

/* ─── COMMITMENTS (about.html) ───────────────────────────── */
.section-commitments {
  padding: var(--space-20) 0;
}

.commitments-layout {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .commitments-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.commitments-intro h2 { margin-bottom: var(--space-4); }
.commitments-intro p  { color: var(--ink-light); line-height: var(--leading-relaxed); }

.commitments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.commit-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--space-4);
  align-items: start;
}

.commit-icon {
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.commit-body strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-1);
}

.commit-body p {
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin: 0;
  line-height: var(--leading-relaxed);
}

/* ─── UNDERSTANDING DEMENTIA (resources.html) ────────────── */
.section-understanding {
  padding: var(--space-20) 0;
  background: var(--cream);
}

.understanding-layout {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .understanding-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.understanding-intro h2 { margin-bottom: var(--space-4); }
.understanding-intro p  { color: var(--ink-light); margin-bottom: var(--space-4); line-height: var(--leading-relaxed); }

.understanding-types {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .understanding-types { grid-template-columns: repeat(2, 1fr); }
}

.type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--forest);
}

.type-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: var(--space-2);
}

.type-card p {
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin: 0;
  line-height: var(--leading-relaxed);
}

/* ─── LEGAL RESOURCES (resources.html) ──────────────────── */
.section-resources-legal {
  padding: var(--space-20) 0;
  background: var(--white);
}

.section-resources-legal .section-intro {
  max-width: 680px;
  margin-bottom: var(--space-10);
}

.section-resources-legal .section-intro h2 { margin-bottom: var(--space-4); }
.section-resources-legal .section-intro p  { color: var(--ink-light); line-height: var(--leading-relaxed); }

/* ─── PRE-CONTACT FAQ (contact.html) ─────────────────────── */
.section-precta-faq {
  padding: var(--space-20) 0;
}

.section-precta-faq .section-header {
  max-width: 640px;
  margin-bottom: var(--space-10);
}

/* ─── CONTACT REASSURANCE PLAIN (contact.html) ───────────── */
.contact-reassurance--plain {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(42,84,66,0.12);
}

.contact-reassurance--plain h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.contact-reassurance--plain p {
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ─── SECTION-SERVICES-TEASER (index.html) ───────────────── */
.section-services-teaser {
  padding: var(--space-20) 0;
}

/* ─── BTN-FOREST (additional button variant) ─────────────── */
.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-forest:hover,
.btn-forest:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ─── SECTION-CTA-ROW ────────────────────────────────────── */
.section-cta-row {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   NAV DROPDOWN
   ═══════════════════════════════════════════════════════════ */

/* Toggle button inherits nav link appearance */
.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
}

.nav-dropdown-toggle:hover  { color: var(--forest); }
.nav-dropdown-toggle:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 3px; }
.nav-dropdown-toggle.is-active { color: var(--forest); font-weight: 600; }

.dropdown-caret { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-has-dropdown.is-open .dropdown-caret { transform: rotate(180deg); }

/* Mobile: dropdown expands inline */
.nav-dropdown {
  display: none;
  list-style: none;
  margin: var(--space-2) 0 var(--space-2) var(--space-5);
  padding: 0;
  flex-direction: column;
  gap: 2px;
}

.nav-has-dropdown.is-open .nav-dropdown { display: flex; }

.nav-dropdown a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.nav-dropdown-all {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: var(--space-1);
  padding-top: var(--space-1);
}

.nav-dropdown-all a { font-weight: 600; }

/* Desktop: floating dropdown panel */
@media (min-width: 1201px) {
  .nav-has-dropdown { position: relative; }

  .nav-dropdown {
    display: block;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border: 1px solid rgba(42,84,66,0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(28,41,33,0.14);
    min-width: 240px;
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    z-index: 200;
  }

  /* Triangle pointer */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: var(--white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }

  .nav-has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
  }

  .nav-dropdown a {
    color: var(--ink);
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
  }

  .nav-dropdown a:hover { background: var(--cream); color: var(--forest); }
  .nav-dropdown a:focus-visible { outline: 2px solid var(--forest); outline-offset: -2px; border-radius: var(--radius-md); }

  .nav-dropdown-all {
    border-top: 1px solid rgba(42,84,66,0.1);
    margin-top: var(--space-1);
    padding-top: var(--space-1);
  }

  .nav-dropdown-all a { font-weight: 600; color: var(--forest); }
  .nav-dropdown-all a:hover { background: rgba(42,84,66,0.06); }
}

/* ═══════════════════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════════════════ */

.section-blog-listing { padding: var(--space-20) 0; }

/* Blog tag / category badge */
.blog-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(42,84,66,0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.blog-tag--amber { color: var(--amber); background: rgba(196,122,59,0.1); }

/* Featured post (full width) */
.blog-card--featured {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .blog-card--featured { grid-template-columns: 1fr 1fr; }
}

.blog-card-img {
  background: linear-gradient(135deg, #C8DDD6 0%, #3D7060 100%);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
  position: relative;
}

.blog-card-img--alt1 { background: linear-gradient(135deg, #EAD8C2 0%, #C47A3B 100%); }
.blog-card-img--alt2 { background: linear-gradient(135deg, #D4E5DE 0%, #2A5442 100%); }
.blog-card-img--alt3 { background: linear-gradient(135deg, #F0E6D3 0%, #8B5E3C 100%); }
.blog-card-img--alt4 { background: linear-gradient(135deg, #C8D8E8 0%, #3B5E8B 100%); }
.blog-card-img--alt5 { background: linear-gradient(135deg, #E8D4D4 0%, #8B3B3B 100%); }

.blog-card-img-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

.blog-card--featured .blog-card-body {
  padding: var(--space-8) var(--space-8) var(--space-8) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .blog-card--featured .blog-card-body {
    padding: var(--space-6);
  }
}

.blog-card--featured .blog-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.blog-card--featured .blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card--featured .blog-card-title a:hover { color: var(--forest); }

.blog-card-excerpt {
  font-size: var(--text-base);
  color: var(--ink-light);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--ink-light);
  flex-wrap: wrap;
}

.blog-card-meta time { color: var(--ink-light); }

.blog-card-meta .sep { color: rgba(28,41,33,0.3); }

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.blog-card-readmore:hover { color: var(--amber); gap: 9px; }

/* Blog grid */
.blog-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* Regular blog card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.blog-card .blog-card-img { min-height: 180px; }

.blog-card .blog-card-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.blog-card .blog-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

.blog-card .blog-card-title a { color: inherit; text-decoration: none; }
.blog-card .blog-card-title a:hover { color: var(--forest); }

.blog-card .blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: var(--leading-relaxed);
  margin: 0;
  flex: 1;
}

/* ─── BLOG POST PAGE ─────────────────────────────────────── */
.post-hero {
  background: var(--forest);
  padding: calc(var(--header-h) + var(--space-16)) 0 var(--space-14);
  text-align: center;
}

.post-hero .blog-tag { margin-bottom: var(--space-5); }

.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto var(--space-6);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.post-meta .sep { color: rgba(255,255,255,0.35); }

.section-post-content {
  padding: var(--space-20) 0;
  background: var(--cream);
}

.post-layout {
  display: grid;
  gap: var(--space-12);
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 1100px) {
  .post-layout {
    max-width: none;
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

.post-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .post-content { padding: var(--space-6); }
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--ink);
  margin: var(--space-8) 0 var(--space-4);
}

.post-content h2:first-child { margin-top: 0; }

.post-content p {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.post-content ul, .post-content ol {
  margin: var(--space-4) 0 var(--space-5) var(--space-6);
}

.post-content li {
  font-size: var(--text-base);
  color: var(--ink-light);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
}

.post-content blockquote {
  margin: var(--space-8) 0;
  padding: var(--space-5) var(--space-6);
  border-left: 4px solid var(--forest);
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--ink);
}

.post-content blockquote p { margin-bottom: 0; }

/* Sidebar / related */
.post-sidebar { display: flex; flex-direction: column; gap: var(--space-6); }

.post-author-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.post-author-card h3 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  margin-bottom: var(--space-3);
}

.post-author-card p {
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.post-related {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.post-related h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.related-list li a {
  font-size: var(--text-sm);
  color: var(--forest);
  text-decoration: none;
  line-height: var(--leading-normal);
  display: block;
}

.related-list li a:hover { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════
   AREAS & CITY PAGES
   ═══════════════════════════════════════════════════════════ */

/* Areas hub grid */
.areas-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

@media (min-width: 480px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1060px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.area-card:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.area-card:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.area-card-city {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--forest);
  line-height: 1;
}

.area-card-region {
  font-size: var(--text-sm);
  color: var(--ink-light);
}

.area-card-note {
  font-size: var(--text-xs);
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: var(--space-3);
}

.area-card-arrow {
  color: var(--forest);
  margin-top: var(--space-1);
  transition: transform 0.2s;
}

.area-card:hover .area-card-arrow { transform: translateX(4px); }

/* City page hero (reuses page-hero with a location badge) */
.city-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: var(--text-sm);
  color: var(--white);
  margin-bottom: var(--space-5);
}

/* City local intro */
.section-city-intro {
  padding: var(--space-16) 0;
  background: var(--white);
}

.city-intro-layout {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .city-intro-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.city-intro-text h2 { margin-bottom: var(--space-4); }
.city-intro-text p  { color: var(--ink-light); margin-bottom: var(--space-4); line-height: var(--leading-relaxed); }

.city-coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.city-coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--ink);
  padding: var(--space-3) var(--space-4);
  background: var(--cream);
  border-radius: var(--radius-md);
}

.city-coverage-list li svg {
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 2px;
}

/* ─── FORM SELECT ────────────────────────────────────────── */
.contact-form select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(42,84,66,0.22);
  border-radius: var(--radius-md);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%232A5442' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  line-height: 1.5;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(42,84,66,0.12);
}


/* ─── BLOG POST STYLES ───────────────────────────────────── */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--forest);
  font-weight: 500;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.post-back:hover { color: var(--amber); }

.post-toc {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}
.post-toc h3 {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.post-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.post-toc a { color: var(--forest); text-decoration: none; font-size: var(--text-sm); }
.post-toc a:hover { text-decoration: underline; color: var(--amber); }

.sidebar-cta-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}
.sidebar-cta-card h3 { color: var(--cream); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.sidebar-cta-card p { color: rgba(250,248,243,0.8); font-size: var(--text-sm); margin-bottom: var(--space-4); }

.author-avatar { margin-bottom: var(--space-3); }
.author-name { font-weight: 600; font-size: var(--text-base); color: var(--ink); margin-bottom: var(--space-1); }
.author-bio { font-size: var(--text-sm); color: var(--ink-light); }

.post-author-card {
  border: 1.5px solid rgba(42,84,66,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}

/* ─── TESTIMONIAL QUOTE ──────────────────────────────────── */
.testimonial-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-12) var(--space-6);
}
.testimonial-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.55;
  color: var(--forest);
  margin-bottom: var(--space-6);
}
.testimonial-quote cite { font-style: normal; font-size: var(--text-sm); color: var(--ink-light); }

/* ─── LINK UNDERLINE ─────────────────────────────────────── */
.link-underline {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  font-size: var(--text-sm);
}
.link-underline:hover { color: var(--amber); }

/* ─── BLOG INLINE FORM (email signup) ───────────────────── */
.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-5);
}
.inline-form input[type="email"] {
  flex: 1 1 240px;
  max-width: 360px;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(42,84,66,0.22);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
}
.inline-form input[type="email"]:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(42,84,66,0.1); }
.form-note { font-size: var(--text-xs); color: var(--ink-light); margin-top: var(--space-3); }

/* ─── AREAS PAGE ADDITIONS ───────────────────────────────── */
.area-card--coming {
  opacity: 0.72;
  cursor: default;
  border-style: dashed;
}
.area-card--coming:hover { transform: none; box-shadow: var(--shadow-md); }
.coming-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(196,122,59,0.1);
  border-radius: 4px;
  padding: 2px 7px;
  vertical-align: middle;
  margin-left: var(--space-2);
}

/* ─── UTILITY ADDITIONS ──────────────────────────────────── */
.text-center { text-align: center; }
.card-note { font-size: var(--text-sm); color: var(--ink-light); margin-top: var(--space-4); }
.card-note a { color: var(--forest); }

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 768px) {
  .two-col-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.check-list li {
  padding-left: var(--space-6);
  position: relative;
  font-size: var(--text-base);
  color: var(--ink);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%232A5442' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.card--border {
  border: 1.5px solid rgba(42,84,66,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  background: var(--white);
}
.card--cream {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}

/* ─── CTA ACTIONS ────────────────────────────────────────── */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}

/* ─── CITY COVERAGE LIST ─────────────────────────────────── */
.city-coverage-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.city-coverage-list li {
  font-size: var(--text-sm);
  color: var(--ink);
  padding-left: var(--space-4);
  position: relative;
}
.city-coverage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.5;
}

/* ─── POST CONTENT TYPOGRAPHY ────────────────────────────── */
.post-content h2 { margin-top: var(--space-10); margin-bottom: var(--space-4); }
.post-content h3 { margin-top: var(--space-7); margin-bottom: var(--space-3); }
.post-content p { margin-bottom: var(--space-5); line-height: 1.75; }
.post-content ul { padding-left: var(--space-6); margin-bottom: var(--space-5); }
.post-content ul li { margin-bottom: var(--space-2); line-height: 1.65; }
.post-content blockquote {
  border-left: 4px solid var(--amber);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-8) 0;
  background: rgba(196,122,59,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.post-content blockquote p { margin-bottom: 0; font-style: italic; font-size: 1.08rem; }

/* ─── PHOTO IMAGES ───────────────────────────────────────── */

/* Hero photo (homepage) */
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

/* Story photo (about page) */
.story-photo {
  width: 100%;
  max-width: 360px;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}

/* Photo feature strip (services, how-it-works) */
.section-photo-feature {
  padding-block: var(--space-12);
}

.photo-feature-figure {
  margin: 0;
}

.photo-feature-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
  max-height: 520px;
  object-fit: cover;
  object-position: center 25%;
  box-shadow: var(--shadow-md);
}

.photo-feature-caption {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin-top: var(--space-4);
  font-style: italic;
}

/* ─── JOIN US PAGE ───────────────────────────────────────── */

/* Nav highlight for Join Us */
.nav-link-highlight {
  color: var(--amber) !important;
  font-weight: 500;
}

/* Benefits grid */
.join-benefits-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

@media (min-width: 640px) {
  .join-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .join-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.join-benefit {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  border: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-4);
  transition:
    box-shadow  var(--dur-base) var(--ease-out),
    transform   var(--dur-base) var(--ease-out);
}

.join-benefit::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--amber);
  flex-shrink: 0;
  margin-bottom: var(--space-2);
}

.join-benefit:hover {
  box-shadow: 0 16px 48px rgba(42, 84, 66, 0.12);
  transform: translateY(-4px);
}

.join-benefit-icon { display: none; }

.join-benefit h3 {
  font-size: var(--text-xl);
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

.join-benefit p {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: none;
}

/* Form layout */
.join-form-layout {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 900px) {
  .join-form-layout {
    grid-template-columns: 340px 1fr;
    gap: var(--space-16);
  }
}

.join-form-intro h2 { margin-bottom: var(--space-4); }
.join-form-intro p { color: var(--ink-light); line-height: var(--leading-relaxed); margin-bottom: var(--space-4); }

.join-form-reassurances {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.join-reassurance {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--ink-mid);
  font-weight: 500;
}

/* Availability checkboxes */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-1);
}

@media (min-width: 480px) {
  .availability-grid { grid-template-columns: repeat(3, 1fr); }
}

.avail-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--ink-mid);
  transition: border-color var(--dur-fast), background var(--dur-fast);
  user-select: none;
}

.avail-option:hover {
  border-color: var(--forest);
  background: var(--white);
}

.avail-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--forest);
  flex-shrink: 0;
}

.avail-option:has(input:checked) {
  border-color: var(--forest);
  background: rgba(42, 84, 66, 0.06);
  color: var(--ink);
}

/* Select field */
.select-field {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-size: var(--text-base);
  color: var(--ink);
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%231C2921' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  cursor: pointer;
}

.select-field:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(42, 84, 66, 0.12);
}

.select-field option[value=""][disabled] {
  color: var(--ink-light);
}


/* Header phone */
.header-phone{display:none;align-items:center;font-size:.875rem;font-weight:600;color:inherit;text-decoration:none;white-space:nowrap;margin-right:.75rem;}
.header-phone:hover{color:var(--clr-primary,#2A5442);}
@media(min-width:900px){.header-phone{display:flex;}}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0;}

/* Accessibility fix: ensure sufficient contrast for the small footer CTA button */
.footer-cta {
  background-color: var(--amber-dark);
}
