/* =========================================================
   FOCUS Psychology & Wellness Collective
   Cinematic · photo-forward · earth-toned
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Earthy palette */
  --forest: #2f4a2e;
  --forest-dark: #1b2e1d;
  --forest-deeper: #12201a;
  --sage: #a8b5a0;
  --sage-light: #cfd6c6;
  --moss: #5a6b4a;
  --terracotta: #c97b5a;
  --terracotta-dark: #a85f42;
  --clay: #8b5a3c;
  --cream: #f7f1e6;
  --cream-deep: #efe5d3;
  --beige: #e8ddc9;
  --sand: #d9c9ad;
  --ink: #22201a;
  --ink-soft: #4a4236;
  --muted: #7a7163;
  --white: #fffcf5;

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1280px;
  --radius: 14px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --shadow-sm: 0 2px 10px rgba(28, 28, 20, 0.06);
  --shadow-md: 0 12px 40px rgba(28, 28, 20, 0.12);
  --shadow-lg: 0 30px 80px rgba(28, 28, 20, 0.18);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { color: var(--ink-soft); }
a { color: var(--forest); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--terracotta); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* =====================================================
   NAV — glass, transparent over hero, solid on scroll
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-transparent {
  background: linear-gradient(180deg, rgba(18,32,26,.55), rgba(18,32,26,0));
}
.nav.is-transparent .nav-brand,
.nav.is-transparent .nav-links a:not(.nav-cta) {
  color: var(--cream);
}
.nav.is-transparent .nav-brand span small { color: rgba(247,241,230,.75); }
.nav.is-transparent .nav-brand img { filter: brightness(0) invert(1); }
.nav.is-solid {
  background: rgba(247, 241, 230, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(47, 74, 46, 0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max-w); margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 400;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
  transition: color .35s var(--ease);
}
.nav-brand img {
  height: 42px; width: auto;
  transition: filter .35s var(--ease);
}
.nav-brand span small {
  display: block;
  font-family: var(--font-sans);
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -7px;
  height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-cta {
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: .6rem 1.4rem;
  border-radius: 100px;
  font-weight: 500;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 1.5rem; color: currentColor;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; color: var(--cream); }
  .nav.is-solid .nav-toggle { color: var(--forest-dark); }
  .nav-links.open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(247,241,230,.98);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
  }
  .nav-links.open li { padding: .7rem 0; border-bottom: 1px solid rgba(47, 74, 46, 0.08); }
  .nav-links.open a { color: var(--ink) !important; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.85rem;
  border-radius: 100px;
  font-weight: 500; font-size: .98rem;
  font-family: var(--font-sans);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-dark); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-terracotta { background: var(--terracotta); color: var(--cream); }
.btn-terracotta:hover { background: var(--terracotta-dark); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--forest-dark); border-color: var(--forest-dark); }
.btn-secondary:hover { background: var(--forest-dark); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--forest-dark); }
.btn-cream:hover { background: var(--white); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(247,241,230,.5); }
.btn-ghost-light:hover { background: var(--cream); color: var(--forest-dark); border-color: var(--cream); }
.btn-arrow::after { content: "→"; transition: transform .3s var(--ease); display: inline-block; }
.btn-arrow:hover::after { transform: translateX(5px); }

/* =====================================================
   CINEMATIC HERO (Home)
   ===================================================== */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-cinematic .hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: slowzoom 24s ease-out forwards;
}
@keyframes slowzoom { to { transform: scale(1); } }
.hero-cinematic::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(18,32,26,.35) 0%, rgba(18,32,26,.1) 35%, rgba(18,32,26,.75) 100%);
}
.hero-cinematic .container { width: 100%; padding-top: 6rem; padding-bottom: 4rem; }
.hero-cinematic .hero-copy { max-width: 780px; }
.hero-cinematic h1 {
  color: var(--cream);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.2);
}
.hero-cinematic h1 em {
  font-style: italic;
  color: var(--sage-light);
  font-weight: 300;
}
.hero-cinematic .hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .78rem; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--cream);
  margin-bottom: 1.75rem;
  opacity: .9;
}
.hero-cinematic .hero-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--cream); opacity: .7;
}
.hero-cinematic .hero-lede {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: rgba(247,241,230,.9);
  max-width: 54ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-cinematic .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cinematic .hero-trust {
  margin-top: 2.5rem;
  font-size: .85rem; color: rgba(247,241,230,.75);
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-cinematic .hero-trust span::before {
  content: "✓"; color: var(--sage-light); margin-right: .45rem;
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cream); opacity: .7;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 40px; background: var(--cream);
  animation: scroll-line 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(.2); opacity: .2; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =====================================================
   PAGE HERO (inner pages, smaller photo hero)
   ===================================================== */
.page-hero-photo {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  padding: 6rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-photo .hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: slowzoom 20s ease-out forwards;
}
.page-hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,32,26,.35), rgba(18,32,26,.7));
}
.page-hero-photo h1 { color: var(--cream); max-width: 18ch; }
.page-hero-photo p { color: rgba(247,241,230,.88); max-width: 52ch; font-size: 1.15rem; margin-top: 1rem; font-weight: 300; }
.page-hero-photo .hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .25em;
  color: var(--cream); opacity: .85; margin-bottom: 1.25rem;
}
.page-hero-photo .hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--cream); opacity: .7;
}

/* =====================================================
   SECTIONS
   ===================================================== */
section { padding: clamp(4rem, 8vw, 8rem) 0; position: relative; }
.section-header { max-width: 760px; margin-bottom: 4rem; }
.section-header.center { margin: 0 auto 4rem; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.section-title { margin-bottom: 1.25rem; }
.section-desc { font-size: 1.1rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =====================================================
   BANDS
   ===================================================== */
.band-cream { background: var(--cream-deep); }
.band-beige { background: var(--beige); }
.band-sand { background: var(--sand); }
.band-forest { background: var(--forest); color: var(--cream); }
.band-forest h2, .band-forest h3 { color: var(--cream); }
.band-forest p { color: rgba(247, 241, 230, 0.85); }
.band-forest-deep { background: var(--forest-dark); color: var(--cream); }
.band-forest-deep h2, .band-forest-deep h3 { color: var(--cream); }
.band-forest-deep p { color: rgba(247, 241, 230, 0.8); }

/* Full-bleed photo band with parallax feel */
.band-photo {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.band-photo .band-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 860px) { .band-photo .band-bg { background-attachment: scroll; } }
.band-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,32,26,.55), rgba(18,32,26,.75));
}
.band-photo h2 { color: var(--cream); font-weight: 300; }
.band-photo p { color: rgba(247, 241, 230, 0.9); font-weight: 300; }
.band-photo .section-eyebrow { color: var(--sage-light); }

/* =====================================================
   STATE STRIP
   ===================================================== */
.state-strip {
  background: var(--cream);
  color: var(--forest-dark);
  padding: .9rem 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(47, 74, 46, 0.08);
}
.state-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; text-align: center;
}
.state-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem .9rem;
  background: var(--cream-deep);
  border-radius: 100px;
  font-weight: 500;
  color: var(--forest-dark);
}
.state-chip.terra { background: rgba(201, 123, 90, 0.15); color: var(--terracotta-dark); }

/* =====================================================
   GRIDS
   ===================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 4rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =====================================================
   PHOTO MODULE — text beside image
   ===================================================== */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.photo-split.flipped { direction: rtl; }
.photo-split.flipped > * { direction: ltr; }
.photo-split .photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.photo-split .photo-frame.tall { aspect-ratio: 3/4; }
.photo-split .photo-frame.wide { aspect-ratio: 1/1; }
@media (max-width: 860px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-split .photo-frame { aspect-ratio: 16/11; }
}

/* =====================================================
   FEATURE CARDS (services)
   ===================================================== */
.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  isolation: isolate;
  cursor: pointer;
  display: flex; align-items: flex-end;
  color: var(--cream);
  text-decoration: none;
  transition: transform .5s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); color: var(--cream); }
.feature-card .fc-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.feature-card:hover .fc-bg { transform: scale(1.07); }
.feature-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,32,26,.15) 30%, rgba(18,32,26,.85) 100%);
}
.feature-card .fc-body { padding: 2rem; width: 100%; }
.feature-card h3 { color: var(--cream); font-weight: 400; margin-bottom: .5rem; }
.feature-card p { color: rgba(247,241,230,.85); font-size: .95rem; font-weight: 300; margin-bottom: 1rem; }
.feature-card .fc-link {
  font-size: .82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--sage-light);
}

/* =====================================================
   THERAPIST CARD
   ===================================================== */
.therapist {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.therapist:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.therapist-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--beige);
  position: relative;
  overflow: hidden;
}
.therapist-photo::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
  font-family: var(--font-serif); font-style: italic;
  font-size: .9rem;
  background: linear-gradient(180deg, rgba(47,74,46,.1), rgba(47,74,46,.4));
}
.therapist-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.therapist-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--forest-dark); margin-bottom: .25rem; }
.therapist-title { color: var(--terracotta); font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 1rem; }
.therapist-bio { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.25rem; flex: 1; }
.therapist-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.25rem; }
.tag {
  font-size: .72rem;
  padding: .3rem .75rem;
  background: var(--cream-deep);
  color: var(--ink-soft);
  border-radius: 100px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
}
.tag.tag-filter { cursor: pointer; border: 0; font-family: inherit; }
.tag.active { background: var(--forest); color: var(--cream); }
.therapist-link { font-size: .85rem; font-weight: 500; color: var(--forest); letter-spacing: .05em; }

/* =====================================================
   SERVICE ROW (services page)
   ===================================================== */
.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 4rem 0;
  border-top: 1px solid rgba(47, 74, 46, 0.12);
  align-items: start;
}
.service-row:first-of-type { border-top: 0; padding-top: 0; }
.service-row.flipped { direction: rtl; }
.service-row.flipped > * { direction: ltr; }
.service-row .service-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
  position: sticky; top: 100px;
}
.service-row h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: .5rem; font-weight: 400; }
.service-row .service-subtitle { color: var(--terracotta); font-weight: 500; margin-bottom: 1.25rem; font-size: .88rem; text-transform: uppercase; letter-spacing: .12em; }
.service-row p { font-size: 1rem; line-height: 1.75; }
.service-row ul { list-style: none; margin-top: 1.5rem; }
.service-row ul li {
  padding: .5rem 0 .5rem 1.75rem;
  position: relative;
  color: var(--ink-soft);
}
.service-row ul li::before {
  content: "✦";
  color: var(--terracotta);
  position: absolute; left: 0; top: .5rem;
  font-size: .85rem;
}
@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0; }
  .service-row .service-photo { aspect-ratio: 16/11; position: static; }
}

.support-callout {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(168, 181, 160, 0.14);
  border-left: 3px solid var(--forest);
  border-radius: 0 var(--radius-md, 12px) var(--radius-md, 12px) 0;
}
.support-callout .support-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: .4rem;
}
.support-callout p { margin: 0; font-size: .98rem; line-height: 1.7; }
.support-callout strong { color: var(--forest-dark); font-weight: 500; }

/* =====================================================
   POST CARD
   ===================================================== */
.post {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative; overflow: hidden;
}
.post-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.15));
  transition: opacity .4s var(--ease);
}
.post:hover .post-image::after { opacity: 0; }
.post-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--muted); margin-bottom: .75rem; }
.post-category { color: var(--terracotta); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.post h3 { font-size: 1.3rem; margin-bottom: .75rem; line-height: 1.3; font-weight: 500; }
.post p { font-size: .94rem; flex: 1; margin-bottom: 1.25rem; }
.post-link { font-weight: 500; color: var(--forest); font-size: .88rem; }

/* =====================================================
   FEATURED POST
   ===================================================== */
.featured-post {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 540px;
  display: flex; align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
}
.featured-post .fp-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.featured-post::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,32,26,.1) 30%, rgba(18,32,26,.88) 100%);
}
.featured-post .fp-body { padding: clamp(2rem, 5vw, 4rem); max-width: 760px; }
.featured-post h2 { color: var(--cream); font-weight: 300; margin-bottom: 1rem; }
.featured-post p { color: rgba(247,241,230,.88); margin-bottom: 1.5rem; font-weight: 300; }
.featured-post .post-meta { color: var(--sage-light); }
.featured-post .post-category { color: var(--sage-light); }

/* =====================================================
   CINEMATIC QUOTE
   ===================================================== */
.quote-section {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  text-align: center;
}
.quote-section .qs-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
@media (max-width: 860px) { .quote-section .qs-bg { background-attachment: scroll; } }
.quote-section::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,32,26,.55), rgba(18,32,26,.7));
}
.quote-section .quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem; line-height: .5;
  color: var(--sage-light);
  opacity: .8;
  margin-bottom: 1.5rem;
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  max-width: 22ch;
  margin: 0 auto 2rem;
  letter-spacing: -0.01em;
}
.quote-section cite {
  font-style: normal;
  font-size: .82rem;
  color: var(--sage-light);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Rotating quote carousel */
.quote-carousel { position: relative; max-width: 860px; margin: 0 auto; }
.quote-track { position: relative; min-height: 260px; }
.quote-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease, visibility 0s linear .7s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.quote-slide.is-active {
  opacity: 1; visibility: visible;
  transition: opacity .7s ease, visibility 0s linear 0s;
}
.quote-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  max-width: 28ch;
  margin: 0 auto 1.75rem;
  letter-spacing: -0.01em;
}
.quote-slide cite {
  font-style: normal;
  font-size: .82rem;
  color: var(--sage-light);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}
.quote-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-top: 2.5rem;
}
.quote-arrow {
  background: transparent;
  border: 1.5px solid rgba(220, 225, 207, .45);
  color: var(--cream);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.quote-arrow:hover { background: rgba(220, 225, 207, .15); border-color: var(--sage-light); transform: scale(1.05); }
.quote-dots { display: inline-flex; gap: .6rem; }
.quote-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(220, 225, 207, .35);
  cursor: pointer; transition: background .25s ease, transform .25s ease;
}
.quote-dots button.is-active { background: var(--sage-light); transform: scale(1.35); }
.quote-dots button:hover { background: var(--sage-light); }

/* =====================================================
   STATS
   ===================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: clamp(3rem, 5vw, 4rem); font-weight: 300; color: var(--terracotta); display: block; line-height: 1; margin-bottom: .75rem; }
.stat-label { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .15em; font-weight: 500; }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* =====================================================
   BIG CTA
   ===================================================== */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
  margin: 0 clamp(1rem, 3vw, 2rem);
  color: var(--cream);
  text-align: center;
  isolation: isolate;
}
.cta-band .cta-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,32,26,.55), rgba(18,32,26,.8));
}
.cta-band h2 { color: var(--cream); max-width: 22ch; margin: 0 auto 1.25rem; font-weight: 300; }
.cta-band p { color: rgba(247,241,230,.88); max-width: 52ch; margin: 0 auto 2rem; font-weight: 300; }
.cta-band .section-eyebrow { color: var(--sage-light); }

/* =====================================================
   FORM
   ===================================================== */
.form-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--white);
  border: 1.5px solid rgba(47, 74, 46, 0.15);
  border-radius: 12px;
  padding: .95rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(47, 74, 46, 0.1);
}
.form-field textarea { min-height: 150px; resize: vertical; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* =====================================================
   FAQ
   ===================================================== */
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  padding: 1.35rem 1.75rem;
  font-weight: 400;
  color: var(--forest-dark);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.6rem; color: var(--terracotta);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.75rem 1.5rem; color: var(--ink-soft); }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--forest-deeper);
  color: rgba(247, 241, 230, 0.7);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 10% 0%, rgba(168,181,160,.06) 0%, transparent 50%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--cream);
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer-brand img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-col h4 { color: var(--cream); font-family: var(--font-sans); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col a { color: rgba(247, 241, 230, 0.7); font-size: .95rem; font-weight: 300; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(247, 241, 230, 0.12);
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; font-weight: 300;
  position: relative;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-directories {
  border-top: 1px solid rgba(247, 241, 230, 0.12);
  padding: 1.75rem 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
  position: relative;
}
.footer-directories .fd-label {
  font-family: var(--font-sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(247, 241, 230, 0.55);
  font-weight: 600;
  margin-right: .5rem;
}
.footer-directories .fd-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .65rem;
}
.footer-directories a.fd-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1rem;
  border: 1px solid rgba(247, 241, 230, 0.18);
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .01em;
  background: rgba(247, 241, 230, 0.04);
  transition: all .25s var(--ease);
}
.footer-directories a.fd-badge:hover {
  background: rgba(247, 241, 230, 0.1);
  border-color: rgba(247, 241, 230, 0.35);
  color: var(--cream);
  transform: translateY(-1px);
}
.footer-directories a.fd-badge .fd-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.footer-directories a.fd-badge-pt {
  padding: .5rem .9rem .5rem .65rem;
  gap: .65rem;
}
.footer-directories a.fd-badge-pt .fd-seal {
  width: 22px; height: 22px; flex-shrink: 0;
}
.footer-directories a.fd-badge-pt span {
  display: flex; flex-direction: column; line-height: 1.15;
  text-align: left;
}
.footer-directories a.fd-badge-pt span small {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(247, 241, 230, 0.55);
  font-weight: 600;
  margin-bottom: 1px;
}
@media (max-width: 520px) {
  .footer-directories { flex-direction: column; align-items: flex-start; gap: .9rem; }
  .footer-directories .fd-label { margin-right: 0; }
}

/* =====================================================
   ARTICLE / POST PAGE (single blog post layout)
   ===================================================== */
.article-hero { min-height: 58vh; }
.article-hero .post-meta { color: rgba(247,241,230,.82); margin-bottom: 1.1rem; font-size: .82rem; letter-spacing: .05em; }
.article-hero .post-meta .post-category { color: var(--sage-light); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; }
.article-hero h1 { max-width: 22ch; font-weight: 300; }
.article-hero .byline { color: rgba(247,241,230,.82); font-size: .95rem; margin-top: 1.1rem; font-weight: 300; font-style: italic; letter-spacing: .02em; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
}
.article-body p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}
.article-body p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-weight: 400;
  float: left;
  font-size: 3.8rem;
  line-height: .85;
  padding: .35rem .6rem 0 0;
  color: var(--forest);
}
.article-body h3,
.article-body h4 {
  font-family: var(--font-serif);
  color: var(--forest-dark);
  margin-top: 2.75rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.015em;
}
.article-body h3 { font-size: 1.65rem; font-weight: 500; }
.article-body h4 { font-size: 1.35rem; font-weight: 500; }
.article-body ul, .article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1.75rem;
}
.article-body li {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: .7rem;
  padding-left: .4rem;
}
.article-body ul li::marker { color: var(--terracotta); }
.article-body ol li::marker { color: var(--terracotta); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--terracotta);
  padding: .25rem 0 .25rem 1.5rem;
  margin: 2.25rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--forest-dark);
  font-weight: 400;
}
.article-body .post-signoff {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(47, 74, 46, 0.15);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: .04em;
  font-style: normal;
}
.article-body .post-signoff::first-letter {
  all: unset;
}

.article-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 5rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-nav a {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--forest);
  padding: .85rem 1.5rem;
  border: 1.5px solid rgba(47, 74, 46, 0.18);
  border-radius: 100px;
  transition: all .3s var(--ease);
}
.article-nav a:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* helpers */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
