/* ================================================================
   THRIVING IN SAFE PLACES — Design System
   A warm, editorial, clinically-credible visual language.
   ================================================================ */

/* ---------- Design tokens ---------- */
:root{
  /* Brand colours */
  --forest:        #5f8d3d;
  --forest-dark:   #476a2d;
  --forest-deep:   #33501f;
  --forest-tint:   #eaf1e2;
  --earth:         #964b00;
  --earth-dark:    #713900;
  --earth-tint:    #f4e9dd;
  --gold:          #efb51d;
  --gold-dark:     #c6910f;
  --gold-tint:     #fdf2d9;
  --plum:          #74246e;
  --plum-dark:     #591a55;
  --plum-tint:     #f2e5f1;

  /* Neutrals */
  --cream:         #faf6ec;
  --cream-deep:    #f1e9d7;
  --paper:         #fffdf8;
  --ink:           #2a2620;
  --ink-soft:      #57524a;
  --ink-faint:     #857f74;
  --line:          #e3dac6;
  --white:         #ffffff;

  /* Type */
  --font-display: "Libre Caslon Text", "Iowan Old Style", Georgia, serif;
  --font-text: "Libre Caslon Text", "Iowan Old Style", Georgia, serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape & motion */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.4,.08,.2,1);
  --shadow-soft: 0 2px 10px rgba(42,38,32,.06), 0 12px 32px -12px rgba(42,38,32,.14);
  --shadow-lift: 0 8px 20px rgba(42,38,32,.10), 0 24px 48px -16px rgba(42,38,32,.22);

  --container: 1220px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(1.75rem, 3.2vw, 3rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 14.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video{ max-width: 100%; display: block; height: auto; }
a{ color: inherit; text-decoration: none; }
ul, ol{ padding: 0; margin: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select{ font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6{ margin: 0; font-family: var(--font-text); font-weight: 700; color: var(--forest-deep); line-height: 1.16; letter-spacing: -0.005em; }
h1, h2, .h1, .h2{ font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
p{ margin: 0; }

:focus-visible{ outline: 2.5px solid var(--gold-dark); outline-offset: 3px; border-radius: 4px; }

.skip-link{
  position: absolute; left: 1rem; top: -60px;
  background: var(--forest-deep); color: var(--white);
  padding: .8rem 1.4rem; border-radius: var(--radius-sm);
  z-index: 999; transition: top .2s var(--ease);
  font-weight: 600;
}
.skip-link:focus{ top: 1rem; }

/* ---------- Layout helpers ---------- */
.container{ width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section{ padding-block: var(--section-y); }
.section-tight{ padding-block: clamp(1.25rem, 2vw, 1.75rem); }
.bleed{ width: 100vw; margin-inline: calc(50% - 50vw); }

.bg-cream{ background: var(--cream); }
.bg-paper{ background: var(--paper); }
.bg-cream-deep{ background: var(--cream-deep); }
.bg-forest{ background: var(--forest-deep); color: var(--cream); }
.bg-earth-tint{ background: var(--earth-tint); }
.bg-earth{ background: linear-gradient(135deg, #6b3600 0%, var(--earth) 55%, #7a3f00 100%); color: rgba(250,246,236,.92); }
.bg-earth .eyebrow{ color: var(--gold); }

/* ---------- Dark-on-dark safety net ----------
   .hero, .page-head, .cta-banner and .bg-forest all sit on the same deep
   green. Anything that defaults to a green or brown text colour must be
   reset to a light tone inside them, or it disappears against the background. */
.bg-forest .h-accent, .bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4,
.page-head h1, .page-head h2, .page-head h3, .page-head h4,
.cta-banner h1, .cta-banner h2, .cta-banner h3, .cta-banner h4{ color: var(--white); }

.bg-forest p, .bg-forest .lede,
.cta-banner p, .cta-banner .lede{ color: rgba(250,246,236,.85); }

.bg-forest .quote-block p, .page-head .quote-block p, .cta-banner .quote-block p{ color: var(--white); }
.bg-forest .quote-block cite, .page-head .quote-block cite, .cta-banner .quote-block cite{ color: var(--gold); }
.bg-forest .quote-block::before, .page-head .quote-block::before, .cta-banner .quote-block::before{ color: var(--gold); }

.grid{ display: grid; gap: clamp(1.1rem, 2.2vw, 1.75rem); }
.grid-2{ grid-template-columns: 1fr; }
.grid-3{ grid-template-columns: 1fr; }
.grid-4{ grid-template-columns: 1fr; }
@media (min-width: 640px){
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 900px){
  .grid-2{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(3,1fr); }
  .grid-4{ grid-template-columns: repeat(4,1fr); }
}

.stack{ display: flex; flex-direction: column; }
.cluster{ display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }

/* ---------- Typography ---------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .9rem;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--earth-dark);
}
.bg-forest .eyebrow, .page-head .eyebrow, .cta-banner .eyebrow{ color: var(--gold); }

h1, .h1{ font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h2, .h2{ font-size: clamp(1.55rem, 3.1vw, 2.2rem); }
h3, .h3{ font-size: clamp(1.15rem, 1.9vw, 1.4rem); }
h4, .h4{ font-size: clamp(1rem, 1.4vw, 1.12rem); }

.lede{ font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--ink-soft); line-height: 1.7; }
.section-head{ max-width: 44rem; margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }
.section-head h2{ max-width: 27ch; }
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head.center h2{ margin-inline: auto; }
.section-head > .eyebrow{ margin-bottom: .9rem; }
.section-head > h2{ margin-bottom: 1rem; }

.italic-serif{ font-style: italic; font-weight: 500; }
.text-forest{ color: var(--forest); }
.text-earth{ color: var(--earth-dark); }
.text-soft{ color: var(--ink-soft); }
.text-cream{ color: var(--cream); }

.rule{ height: 1px; background: var(--line); border: 0; margin: 0; }
.bg-forest .rule{ background: rgba(255,255,255,.18); }

/* ---------- Prose (blog articles) ---------- */
.prose{ max-width: 42rem; margin-inline: auto; font-size: 1.02rem; }
.prose > * + *{ margin-top: 1.35em; }
.prose h2{ font-size: 1.6rem; margin-top: 1.8em; }
.prose h3{ font-size: 1.25rem; margin-top: 1.6em; }
.prose p{ line-height: 1.8; color: var(--ink); }
.prose ul, .prose ol{ padding-left: 1.4rem; list-style: disc; }
.prose ol{ list-style: decimal; }
.prose li + li{ margin-top: .5em; }
.prose a{ color: var(--forest-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover{ color: var(--earth-dark); }
.prose blockquote{
  margin: 2em 0; padding: .3em 0 .3em 1.5rem; border-left: 3px solid var(--gold-dark);
  font-family: var(--font-display); font-size: 1.28rem; font-style: italic; color: var(--forest-deep);
}
.prose figure{ margin: 2em 0; }
.prose figcaption{ margin-top: .7em; font-size: .9rem; color: var(--ink-faint); text-align: center; }
.prose figure img{ border-radius: var(--radius-md); }

/* ---------- Buttons ---------- */
.btn{
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.9rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .98rem; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  min-height: 48px;
}
.btn svg{ width: 1.1em; height: 1.1em; flex: none; }
.btn-primary{ background: var(--forest); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover{ background: var(--forest-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-gold{ background: var(--gold); color: var(--forest-deep); box-shadow: var(--shadow-soft); }
.btn-gold:hover{ background: var(--gold-dark); color: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline{ background: transparent; color: var(--forest-deep); border: 1.5px solid var(--forest-deep); }
.btn-outline:hover{ background: var(--forest-deep); color: var(--white); }
.bg-forest .btn-outline{ color: var(--white); border-color: rgba(255,255,255,.55); }
.bg-forest .btn-outline:hover{ background: var(--white); color: var(--forest-deep); }
.btn-ghost{
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.7rem; min-height: 44px; border-radius: var(--radius-pill);
  background: transparent; color: var(--forest-deep); border: 1.5px solid var(--forest-deep);
  font-weight: 700; font-size: .93rem;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-ghost:hover{ background: var(--forest-deep); color: var(--white); }
.cta-banner .btn-ghost:hover, .cta-path .btn-ghost:hover{ background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }
.btn-block{ width: 100%; }
.btn-lg{ padding: 1.15rem 2.3rem; font-size: 1.05rem; }

/* ---------- Site header (floating glass capsule) ---------- */
.site-header{
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 500;
  padding: clamp(.85rem, 2.4vw, 1.4rem) clamp(.85rem, 3vw, 1.6rem);
  transition: padding .35s var(--ease);
}
.site-header .container{
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: var(--container); padding: .55rem .6rem .55rem 1.4rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 10px 32px -12px rgba(20,26,12,.4), inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-solid .container{
  background: rgba(250,246,236,.62);
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 10px 28px -14px rgba(20,26,12,.32), inset 0 1px 0 rgba(255,255,255,.5);
}
.site-header.is-solid .brand-word{ color: var(--forest-deep); }

.brand{ display: flex; align-items: center; gap: .65rem; flex: none; }
.brand img{ height: 40px; width: auto; }
.brand .brand-word{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--forest-deep); }

.brand .logo-color{ display: none; }
.site-header.is-solid .brand .logo-white{ display: none; }
.site-header.is-solid .brand .logo-color{ display: block; }

/* Homepage: light nav text over the hero, reverting to dark once scrolled */
.is-home .main-nav a{ color: var(--white); }
.is-home .main-nav a[aria-current="page"]{ color: var(--gold); }
.is-home .header-phone{ color: var(--white); }
.is-home .header-phone svg{ color: var(--gold); }
.is-home.is-solid .main-nav a{ color: var(--ink); }
.is-home.is-solid .main-nav a[aria-current="page"]{ color: var(--forest-dark); }
.is-home.is-solid .header-phone{ color: var(--forest-deep); }
.is-home.is-solid .header-phone svg{ color: var(--earth-dark); }

.main-nav{ display: none; }
.main-nav ul{ display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.main-nav a{
  font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; padding: .4rem 0;
}
.main-nav a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold-dark);
  transition: right .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after{ right: 0; }
.main-nav a[aria-current="page"]{ color: var(--forest-dark); }

.header-actions{ display: flex; align-items: center; gap: 1rem; }
.header-phone{ display: none; align-items: center; gap: .5rem; font-weight: 700; font-size: .92rem; color: var(--forest-deep); }
.header-phone svg{ width: 18px; height: 18px; color: var(--earth-dark); }

/* Book a Session lives in the mobile menu only; the mobile bar keeps just the logo and hamburger */
.header-actions .btn-primary{ display: none; }
@media (min-width: 1020px){ .header-actions .btn-primary{ display: inline-flex; } }

.nav-toggle{
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--forest-deep);
  flex: none;
}
.nav-toggle span{ width: 17px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-nav{
  position: fixed; inset: 0; z-index: 490; background: rgba(30,45,17,.82);
  backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  display: flex; flex-direction: column; padding: 6.5rem var(--gutter) 3rem;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  overflow-y: auto;
}
.mobile-nav.is-open{ transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav ul{ display: flex; flex-direction: column; gap: .3rem; }
.mobile-nav a{
  display: block; padding: 1rem 0; font-family: var(--font-display); font-size: 1.7rem; color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.14); font-weight: 600;
}
.mobile-nav a[aria-current="page"]{ color: var(--gold); }
.mobile-nav .mobile-contact{ margin-top: 1.8rem; display: flex; gap: .7rem; }
.mobile-nav .mobile-contact a.btn{
  flex: 1 1 0; width: auto; padding: .8rem .6rem; font-size: .85rem; min-height: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
}
.mobile-nav .mobile-contact a.btn svg{ width: 16px; height: 16px; flex: none; }
.mobile-nav .mobile-contact a.btn-outline{ border-color: rgba(255,255,255,.55); }
.mobile-nav .mobile-meta{ margin-top: auto; padding-top: 2rem; color: rgba(250,246,236,.6); font-size: .9rem; }

body.nav-open{ overflow: hidden; }

@media (min-width: 1020px){
  .main-nav{ display: block; }
  .header-phone{ display: inline-flex; }
  .nav-toggle{ display: none; }
}

/* ---------- Hero (full-bleed background, uncropped) ---------- */
.hero{
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden; isolation: isolate; background: var(--forest-deep);
}
.hero-media{ position: absolute; inset: 0; z-index: -2; }
.hero-media picture{ position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.hero-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 78% 35%; }
@media (max-width: 699px){ .hero-media img{ object-position: 68% 15%; } }
.hero-media::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(24,32,15,.9) 0%, rgba(24,32,15,.62) 32%, rgba(24,32,15,.32) 58%, rgba(24,32,15,.48) 100%),
    linear-gradient(100deg, rgba(51,80,31,.55) 0%, rgba(51,80,31,0) 46%);
}
.hero-inner{ padding-block: 7.5rem 3.5rem; position: relative; z-index: 1; }
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: .6rem; padding: .5rem 1.05rem;
  background: rgba(250,246,236,.14); border: 1px solid rgba(250,246,236,.35); border-radius: var(--radius-pill);
  font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.hero h1{ color: var(--white); max-width: 17ch; }
.hero .lede{ color: rgba(250,246,236,.92); max-width: 34rem; margin-top: 1.25rem; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero .btn-outline, .cta-banner .btn-outline{ color: var(--white); border-color: rgba(255,255,255,.65); }
.hero .btn-outline:hover, .cta-banner .btn-outline:hover{ background: var(--white); color: var(--forest-deep); }
.hero-credential{
  margin-top: 2.5rem; display: flex; align-items: center; gap: 1rem; max-width: 30rem;
  padding-top: 1.7rem; border-top: 1px solid rgba(250,246,236,.25);
}
.hero-credential picture{ flex: none; display: block; width: 52px; height: 52px; }
.hero-credential img{ width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(250,246,236,.6); flex: none; display: block; }
.hero-credential p{ font-size: .92rem; color: rgba(250,246,236,.9); line-height: 1.5; }
.hero-credential strong{ color: var(--white); }

/* ---------- Page header (inner pages) ---------- */
.page-head{
  position: relative; padding-block: 7.5rem 1.75rem; overflow: hidden;
  background: var(--forest-deep); color: var(--cream);
}
.page-head::before{
  content: ""; position: absolute; inset: 0; opacity: .16; z-index: 0;
  background: radial-gradient(60% 90% at 85% 0%, var(--gold) 0%, transparent 60%),
              radial-gradient(50% 70% at 0% 100%, var(--earth) 0%, transparent 60%);
}
.page-head .container{ position: relative; z-index: 1; }
.page-head h1{ color: var(--white); max-width: 24ch; }
.page-head .lede{ color: rgba(250,246,236,.88); max-width: 40rem; margin-top: 1.1rem; }
.breadcrumb{ display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(250,246,236,.7); margin-bottom: 1.6rem; }
.breadcrumb a{ color: rgba(250,246,236,.85); font-weight: 600; }
.breadcrumb a:hover{ color: var(--gold); }
.breadcrumb .sep{ opacity: .5; }

/* ---------- Cards ---------- */
.card{
  background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.service-card{ padding: clamp(1.6rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 1rem; }
.service-icon{
  width: 54px; height: 54px; border-radius: var(--radius-sm); background: var(--forest-tint); color: var(--forest-dark);
  display: flex; align-items: center; justify-content: center; flex: none;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover .service-icon{ background: var(--forest-dark); color: var(--white); transform: scale(1.06); }
.value-card:hover .service-icon{ background: var(--earth-dark); color: var(--white); }
.contact-card:hover .service-icon{ background: var(--gold-dark); color: var(--white); }
.service-icon svg{ transition: transform .25s var(--ease); }
.service-icon svg{ width: 26px; height: 26px; }
.service-icon-plum{ background: var(--plum-tint); color: var(--plum); }
.service-card h3{ font-size: 1.28rem; }
.service-focus{
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--earth-dark);
  padding-top: .85rem; border-top: 1px dashed var(--line); margin-top: auto;
}

.service-detail{
  display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; grid-template-columns: 1fr;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.service-detail + .service-detail{ border-top: 1px solid var(--line); }
.service-detail figure{ margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.service-detail figure img{ width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-detail .num{ font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gold-dark); letter-spacing: .05em; }
.service-detail ul{ margin-top: 1.1rem; display: flex; flex-direction: column; gap: .6rem; }
.service-detail ul li{ position: relative; padding-left: 1.3rem; color: var(--ink-soft); }
.service-detail ul li::before{ content: ""; position: absolute; left: 0; top: .55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--forest); }
@media (min-width: 900px){
  .service-detail{ grid-template-columns: 1fr 1fr; }
  .service-detail.reverse figure{ order: 2; }
}

.blog-card{ overflow: hidden; display: flex; flex-direction: column; }
.blog-card .thumb{ aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .thumb img{ transform: scale(1.06); }
.blog-card .body{ padding: clamp(1.4rem, 3vw, 1.9rem); display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.blog-card h3{ font-size: 1.2rem; }
.blog-card .excerpt{ color: var(--ink-soft); font-size: .96rem; }
.blog-card .meta{ margin-top: auto; padding-top: .9rem; display: flex; align-items: center; gap: .7rem; font-size: .82rem; color: var(--ink-faint); border-top: 1px solid var(--line); }
.blog-card .read-more{ font-weight: 700; color: var(--forest-dark); }

.tag{
  display: inline-flex; align-items: center; padding: .4rem 1rem; border-radius: 6px;
  font-size: .78rem; font-weight: 700; letter-spacing: .03em;
}
.tag-forest{ background: var(--forest-tint); color: var(--forest-dark); }
.tag-earth{ background: var(--earth-tint); color: var(--earth-dark); }
.tag-plum{ background: var(--plum-tint); color: var(--plum); }
.tag-gold{ background: var(--gold-tint); color: var(--gold-dark); }

.pill-row{ display: flex; flex-wrap: wrap; gap: .7rem; }
.pill-row-scroll{
  flex-wrap: nowrap; overflow-x: auto; padding-bottom: .4rem; gap: .5rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.pill-row-scroll::-webkit-scrollbar{ display: none; }
.pill-row-scroll .pill{ flex: none; padding: .55rem .9rem; font-size: .82rem; }

.service-jump-nav{
  position: sticky; top: clamp(4.5rem, 9vw, 5.5rem); z-index: 300;
  background: rgba(250,246,236,.94); backdrop-filter: blur(10px);
  padding-block: .9rem; border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px -14px rgba(42,38,32,.3);
}
.service-jump-select{ display: none; }
@media (max-width: 719px){
  .service-jump-nav .pill-row{ display: none; }
  .service-jump-select{
    display: block; width: 100%; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
    border: 1.5px solid var(--line); background: var(--paper); font-weight: 700; font-size: .92rem; color: var(--forest-deep);
  }
}
.pill{
  display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.15rem; border-radius: 8px;
  background: var(--paper); border: 1px solid var(--line); font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-soft);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.pill:hover{ transform: translateY(-2px); border-color: var(--gold-dark); box-shadow: var(--shadow-lift);
}
.pill svg{ width: 17px; height: 17px; color: var(--forest); }

/* ---------- Glassmorphism tiles ---------- */
.section-blobs{ position: relative; overflow: hidden; isolation: isolate; }
.section-blobs::before{
  content: ""; position: absolute; inset: -10% -5%; z-index: -1; opacity: .55;
  background:
    radial-gradient(32% 42% at 12% 18%, var(--forest) 0%, transparent 68%),
    radial-gradient(28% 38% at 88% 12%, var(--gold) 0%, transparent 65%),
    radial-gradient(34% 46% at 78% 88%, var(--plum) 0%, transparent 65%),
    radial-gradient(30% 40% at 10% 92%, var(--earth) 0%, transparent 65%);
  filter: blur(10px);
}
@media (prefers-color-scheme: dark){ .section-blobs::before{ opacity: .32; } }

.glass-tile{
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 10px 30px -14px rgba(42,38,32,.28), inset 0 1px 0 rgba(255,255,255,.5);
}
.glass-tile-dark{
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

/* ---------- Journey / steps (glass tiles over colour blobs) ---------- */
.journey{ display: grid; gap: 1.4rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 900px){ .journey{ grid-template-columns: repeat(4,1fr); } }
.journey-step{
  position: relative; padding: 2rem 1.6rem 1.8rem; border-radius: var(--radius-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.journey-step:hover{ transform: translateY(-4px); }
.journey-step .step-no{
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--forest);
  line-height: 1; margin-bottom: .8rem; display: block;
}
.journey-step h3{ font-size: 1.15rem; margin-bottom: .55rem; }
.journey-step p{ color: var(--ink-soft); font-size: .95rem; }
.journey-connector{ display: none; }
@media (min-width: 900px){
  .journey-step:not(:last-child)::after{
    content: ""; position: absolute; top: 2.6rem; right: -1.05rem; width: 1.4rem; height: 1px;
    background-image: linear-gradient(to right, var(--gold-dark) 50%, transparent 50%); background-size: 8px 1px;
  }
}

/* ---------- Founder / split sections ---------- */
.split{ display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px){ .split{ grid-template-columns: .85fr 1.15fr; } .split.media-right{ grid-template-columns: 1.15fr .85fr; } .split.media-right .split-media{ order: 2; } }
.split-media{ position: relative; }
.split-media .frame{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.split-media .frame img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-media .accent-dot{
  position: absolute; width: 110px; height: 110px; border-radius: 50%; background: var(--gold); z-index: -1;
  bottom: -22px; left: -22px; opacity: .9;
}
.stat-chip{
  position: absolute; bottom: 1.4rem; right: -1.2rem; border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lift); max-width: 210px;
  background: rgba(250,246,236,.82) !important; border: 1px solid rgba(255,255,255,.8) !important;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-chip:hover{ transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 40px -12px rgba(42,38,32,.35); }
.stat-chip strong{ font-family: var(--font-display); font-size: 1.7rem; color: var(--forest-dark); display: block; }
.stat-chip span{ font-size: .82rem; color: var(--ink-soft); }

.quote-block{ position: relative; padding-left: clamp(1.2rem, 3vw, 2.2rem); }
.quote-block::before{
  content: "\201C"; position: absolute; left: -.3rem; top: -1.6rem; font-family: var(--font-display);
  font-size: 5.5rem; color: var(--gold); line-height: 1; opacity: .7;
}
.quote-block p{ font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.55rem); font-style: italic; color: var(--forest-deep); line-height: 1.5; }
.quote-block cite{ display: block; margin-top: 1.1rem; font-style: normal; font-weight: 700; color: var(--earth-dark); font-size: .92rem; }

/* ---------- Values / goals ---------- */
.value-card{ padding: clamp(1.5rem, 3vw, 2rem); }
.value-card .service-icon{ background: var(--earth-tint); color: var(--earth-dark); margin-bottom: .3rem; }

.check-list{ display: flex; flex-direction: column; counter-reset: item; border-top: 1px solid var(--line); }
.check-list li{
  position: relative; display: grid; grid-template-columns: 2.6rem 1fr; gap: 1.1rem; align-items: baseline;
  padding-block: 1.35rem; border-bottom: 1px solid var(--line); transition: padding-left .3s var(--ease);
}
.check-list li:hover{ padding-left: .4rem; }
.check-list li::before{
  counter-increment: item; content: counter(item, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--gold-dark); line-height: 1.4;
}
.check-list li p{ color: var(--ink-soft); }
.check-list li strong{ color: var(--ink); display: block; margin-bottom: .2rem; font-size: 1.05rem; }

/* ---------- Photo strip ---------- */
.photo-strip{ display: grid; gap: 1.1rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 720px){ .photo-strip{ grid-template-columns: repeat(4,1fr); } }
.photo-strip figure{ margin: 0; border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 3/4; box-shadow: var(--shadow-soft); }
.photo-strip figure img{ width: 100%; height: 100%; object-fit: cover; }
.photo-strip figcaption{
  position: absolute; inset-inline: 0; bottom: 0; padding: .9rem .9rem .75rem; font-size: .8rem; font-weight: 600;
  color: var(--white); background: linear-gradient(0deg, rgba(20,26,12,.82), transparent);
}

/* ---------- CTA banner ---------- */
.cta-banner{ position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); background: var(--forest-deep); color: var(--white); }
.cta-banner::before{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(45% 80% at 100% 0%, var(--gold) 0%, transparent 60%),
              radial-gradient(40% 70% at 0% 100%, var(--plum) 0%, transparent 55%);
  opacity: .28;
}
.cta-banner .content{ position: relative; z-index: 1; }
.cta-paths{ display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 2.4rem; position: relative; z-index: 1; }
@media (min-width: 860px){ .cta-paths{ grid-template-columns: repeat(3,1fr); } }
.cta-path{
  background: rgba(250,246,236,.08); border: 1px solid rgba(250,246,236,.22); border-radius: var(--radius-md);
  padding: 1.6rem; backdrop-filter: blur(4px); transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.cta-path:hover{ background: rgba(250,246,236,.16); transform: translateY(-3px); }
.cta-path h3{ color: var(--white); font-size: 1.1rem; margin-bottom: .5rem; }
.cta-path p{ color: rgba(250,246,236,.82); font-size: .92rem; margin-bottom: 1rem; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--forest-deep);
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item .icon-plus{ flex: none; width: 24px; height: 24px; position: relative; }
.faq-item .icon-plus::before, .faq-item .icon-plus::after{
  content: ""; position: absolute; background: var(--forest-dark); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.faq-item .icon-plus::before{ inset-inline: 3px; top: 50%; height: 2px; transform: translateY(-1px); }
.faq-item .icon-plus::after{ inset-block: 3px; left: 50%; width: 2px; transform: translateX(-1px); }
.faq-item[open] .icon-plus::after{ opacity: 0; transform: translateX(-1px) rotate(90deg); }
.faq-item p{ padding-bottom: 1.5rem; color: var(--ink-soft); max-width: 44rem; }

/* ---------- Forms ---------- */
.field{ display: flex; flex-direction: column; gap: .5rem; }
.field label{ font-weight: 700; font-size: .88rem; color: var(--forest-deep); }
.field .hint{ font-size: .78rem; color: var(--ink-faint); font-weight: 400; }
.field input, .field textarea, .field select{
  padding: .9rem 1.05rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%; font-size: 1rem;
}
.field textarea{ resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--forest); box-shadow: 0 0 0 4px var(--forest-tint); outline: none; }
.field-row{ display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px){ .field-row{ grid-template-columns: 1fr 1fr; } }
.hp-field{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note{ font-size: .84rem; color: var(--ink-faint); }
.form-status{ padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; display: none; }
.g-recaptcha{ transform-origin: 0 0; }
@media (max-width: 360px){ .g-recaptcha{ transform: scale(.9); } }
.form-status.is-visible{ display: block; }
.form-status.success{ background: var(--forest-tint); color: var(--forest-dark); }
.form-status.error{ background: var(--plum-tint); color: var(--plum); }

/* ---------- Contact cards ---------- */
.contact-card{
  padding: 1.1rem 1.1rem 1.2rem; display: flex; align-items: flex-start; gap: .75rem;
  background: linear-gradient(150deg, #5c3000 0%, var(--earth) 55%, #6b3800 100%);
  border: 1px solid rgba(255,255,255,.08); box-shadow: none;
}
.contact-card:hover{ border-color: rgba(255,255,255,.28); }
.contact-card .service-icon{
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--gold); flex: none;
}
.contact-card .service-icon svg{ width: 17px; height: 17px; }
.contact-card:hover .service-icon{ background: var(--gold); color: var(--forest-deep); }
.contact-card h3{ color: var(--white); font-size: .88rem; margin-bottom: .3rem; }
.contact-card address{ font-style: normal; color: rgba(250,246,236,.72); font-size: .76rem; line-height: 1.5; }
.contact-card p{ color: rgba(250,246,236,.72); font-size: .76rem; }
.contact-card a.detail-link{ font-weight: 700; color: var(--gold); font-size: .76rem; display: inline-block; margin-top: .25rem; }
.contact-card a.detail-link:hover{ color: var(--white); }
.contact-card .hours-row{ border-bottom-color: rgba(255,255,255,.14); padding-block: .35rem; }
.contact-card .hours-day{ color: rgba(250,246,236,.6); font-size: .68rem; }
.contact-card .hours-time{ color: var(--gold); font-size: .76rem; }
.contact-card .form-note{ color: rgba(250,246,236,.55); font-size: .7rem; }
.hours-list{ display: flex; flex-direction: column; }
.hours-row{ display: flex; flex-direction: column; gap: .15rem; padding-block: .7rem; border-bottom: 1px dashed var(--line); }
.hours-list-inline{ flex-direction: row; flex-wrap: wrap; gap: .9rem; }
.hours-list-inline .hours-row{ flex: 1 1 auto; border-bottom: none; padding-block: 0; }
.hours-row:last-child{ border-bottom: none; }
.hours-day{ font-size: .84rem; color: var(--ink-soft); }
.hours-time{ font-weight: 700; color: var(--forest-dark); font-size: .98rem; }

.map-frame{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); width: 100%; }
.map-frame iframe{ width: 100%; height: 420px; display: block; border: 0; filter: grayscale(.15) contrast(1.02); }
@media (min-width: 780px){ .map-frame iframe{ height: 520px; } }
.map-frame-tall{ flex: 1; }
.map-frame-tall iframe{ height: 100%; min-height: 480px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--forest-deep); color: rgba(250,246,236,.85); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer-top{ display: grid; gap: 2.6rem; grid-template-columns: 1fr; }
@media (min-width: 780px){ .footer-top{ grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img{ height: 44px; margin-bottom: 1.2rem; }
.footer-brand p{ max-width: 26rem; font-size: .95rem; line-height: 1.7; color: rgba(250,246,236,.72); }
.footer-social{ display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer-social a{
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(250,246,236,.3);
  display: flex; align-items: center; justify-content: center; transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.footer-col .footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--forest-deep); }
.footer-social svg{ width: 18px; height: 18px; }
.footer-col h4{ color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 800; margin-bottom: 1.3rem; }
.footer-col ul{ display: flex; flex-direction: column; gap: .8rem; }
.footer-col a{ font-size: .95rem; color: rgba(250,246,236,.8); }
.footer-col a:hover{ color: var(--gold); }
.footer-col address{ font-style: normal; font-size: .95rem; color: rgba(250,246,236,.8); line-height: 1.8; }
.footer-bottom{
  margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 1.8rem; border-top: 1px solid rgba(250,246,236,.15);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .84rem; color: rgba(250,246,236,.6);
}
.footer-tagline{ font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.05rem; margin-bottom: .5rem; }

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed; right: 1.3rem; bottom: 1.3rem; width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest-deep); color: var(--cream); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift); opacity: 0; visibility: hidden; transform: translateY(10px); z-index: 400;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg{ width: 20px; height: 20px; }

.whatsapp-float{
  position: fixed; left: 1.3rem; bottom: 1.3rem; width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift); z-index: 400; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 28px -8px rgba(37,211,102,.55); }
.whatsapp-float svg{ width: 28px; height: 28px; }
@media (max-width: 640px){ .whatsapp-float{ width: 48px; height: 48px; left: 1rem; bottom: 1rem; } .whatsapp-float svg{ width: 24px; height: 24px; } }

/* ---------- Reveal-on-scroll ----------
   Content is visible by default so it never depends on JavaScript running
   (search crawlers, slow connections, scripting errors). Only once the
   early inline script confirms JS is active does .reveal start hidden
   and animate in via IntersectionObserver. */
.js .reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .js .reveal{ opacity: 1; transform: none; } }

/* ---------- Misc ---------- */
.divider-leaf{ display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold-dark); margin-block: 2.2rem; }
.divider-leaf::before, .divider-leaf::after{ content: ""; height: 1px; width: 60px; background: var(--line); }
.divider-leaf svg{ width: 22px; height: 22px; }

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

.page-anchor-offset{ scroll-margin-top: 6.5rem; }

/* 404 */
.error-page{ min-height: 80svh; display: flex; align-items: center; padding-top: 6rem; }
.error-page .code{ font-family: var(--font-display); font-size: clamp(4rem,14vw,7rem); color: var(--gold); line-height: 1; }

/* ---------- Reading progress (blog articles) ---------- */
.reading-progress{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 600;
  background: linear-gradient(90deg, var(--gold), var(--earth));
  transition: width .1s linear;
}

/* ---------- Stat counters ---------- */
.stat-strip{ display: grid; gap: .4rem; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-strip.stat-strip-3{ grid-template-columns: repeat(3,1fr); }
.stat-strip .stat{ padding: .5rem 1rem; }
.stat-strip .num{
  font-family: var(--font-display); font-weight: 700; color: var(--forest-dark);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1; display: inline-flex; align-items: baseline; gap: .15rem;
}
.stat-strip .num .suffix{ font-size: .55em; color: var(--gold-dark); }
.stat-strip .label{ margin-top: .5rem; font-size: .78rem; color: var(--ink-soft); font-weight: 600; }
.bg-forest .stat-strip .num{ color: var(--gold); }
.bg-forest .stat-strip .num .suffix{ color: var(--white); }
.bg-forest .stat-strip .label{ color: rgba(250,246,236,.78); }

.bg-plum-gradient{
  background: linear-gradient(135deg, #2e0e2b 0%, #45183f 42%, #591a55 100%);
}
.bg-plum-gradient .stat-strip .num{ color: var(--gold); }
.bg-plum-gradient .stat-strip .num .suffix{ color: var(--white); }
.bg-plum-gradient .stat-strip .label{ color: rgba(250,246,236,.82); }

/* ---------- Card tilt (pointer devices) ---------- */
.tilt-active{ transition: transform .08s linear !important; will-change: transform; }

/* ---------- Lightbox ---------- */
.photo-strip figure{ cursor: pointer; }
.photo-strip figure{ position: relative; }
.photo-strip figure .zoom-cue{
  position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(20,26,12,.55); color: var(--white); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8); transition: opacity .25s var(--ease), transform .25s var(--ease); backdrop-filter: blur(3px);
}
.photo-strip figure:hover .zoom-cue, .photo-strip figure:focus-visible .zoom-cue{ opacity: 1; transform: scale(1); }
.photo-strip figure .zoom-cue svg{ width: 16px; height: 16px; }

.lightbox{
  position: fixed; inset: 0; z-index: 800; background: rgba(20,22,14,.92);
  display: flex; align-items: center; justify-content: center; padding: clamp(1rem,5vw,3rem);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox figure{ margin: 0; max-width: min(90vw, 1100px); max-height: 82vh; }
.lightbox img{ max-width: 100%; max-height: 82vh; width: auto; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; }
.lightbox figcaption{ text-align: center; color: rgba(250,246,236,.85); margin-top: 1rem; font-size: .92rem; }
.lightbox .lb-close, .lightbox .lb-nav{
  position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(250,246,236,.12);
  border: 1px solid rgba(250,246,236,.3); color: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background-color .2s var(--ease);
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover{ background: rgba(250,246,236,.28); }
.lightbox .lb-close{ top: clamp(.8rem,3vw,2rem); right: clamp(.8rem,3vw,2rem); }
.lightbox .lb-prev{ left: clamp(.5rem,2vw,1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox .lb-next{ right: clamp(.5rem,2vw,1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav svg, .lightbox .lb-close svg{ width: 20px; height: 20px; }
@media (max-width: 640px){ .lightbox .lb-prev, .lightbox .lb-next{ width: 40px; height: 40px; } }

/* ---------- Scrollspy pills ---------- */
.pill-row a.pill{ transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.pill-row a.pill.is-active{ background: var(--forest-deep); border-color: var(--forest-deep); color: var(--white); }
.pill-row a.pill.is-active svg{ color: var(--gold); }

/* ---------- Who We Walk With marquee ---------- */
.marquee-section{ overflow: hidden; }
.marquee{
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{ display: flex; width: max-content; animation: marquee-scroll 34s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
.marquee-set{ display: flex; align-items: baseline; flex: none; }
.marquee-item{
  white-space: nowrap; padding-inline: .9rem;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: var(--forest-deep); transition: color .2s var(--ease); cursor: default;
}
.marquee-item:hover{ color: var(--earth-dark); }
.marquee-dot{ color: var(--gold-dark); font-weight: 400; font-size: clamp(1.1rem, 2.4vw, 1.45rem); font-family: var(--font-display); }
.bg-earth .marquee-item{ color: var(--white); }
.bg-earth .marquee-item:hover{ color: var(--gold); }
.bg-earth .marquee-dot{ color: var(--gold); }
@keyframes marquee-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){
  .marquee{ overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track{ animation: none; }
  .marquee-track .marquee-set[aria-hidden="true"]{ display: none; }
}

/* ---------- Plum section + divider ---------- */
.bg-plum{ background: linear-gradient(160deg, #2e0e2b 0%, #4a173f 45%, var(--plum) 100%); color: rgba(250,246,236,.92); }

.statement-card{ padding: clamp(1.8rem, 3.5vw, 2.6rem); border-radius: var(--radius-lg); transition: transform .3s var(--ease); }
.statement-card h3{ color: var(--white); margin: 1.1rem 0 .8rem; font-size: 1.3rem; }
.statement-card p{ color: rgba(250,246,236,.85); line-height: 1.75; }
.service-icon-dark{ background: rgba(255,255,255,.14); color: var(--gold); }
.statement-card:hover .service-icon-dark{ background: var(--gold); color: var(--forest-deep); }

/* ---------- Values wheel (interactive) ---------- */
.values-wheel-wrap{ display: grid; gap: 2rem; max-width: 1020px; margin-inline: auto; align-items: center; }
@media (min-width: 820px){ .values-wheel-wrap{ grid-template-columns: 400px 1fr; gap: 2.5rem; } }

.values-wheel{ position: relative; width: 300px; height: 300px; margin-inline: auto; }
@media (min-width: 480px){ .values-wheel{ width: 360px; height: 360px; } }
@media (min-width: 820px){ .values-wheel{ width: 400px; height: 400px; } }
.values-wheel::before{
  content: ""; position: absolute; inset: 40px; border-radius: 50%; border: 1px dashed rgba(250,246,236,.28);
}
@media (min-width: 480px){ .values-wheel::before{ inset: 48px; } }
@media (min-width: 820px){ .values-wheel::before{ inset: 52px; } }

.values-hub{
  position: absolute; inset: 0; margin: auto; width: 118px; height: 118px; border-radius: 50%;
  background: var(--gold); color: var(--forest-deep); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift); z-index: 2; text-align: center; padding: .3rem;
}
.values-hub span{
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: .82rem; line-height: 1.3;
}
@media (min-width: 480px){ .values-hub{ width: 132px; height: 132px; } .values-hub span{ font-size: .88rem; } }
@media (min-width: 820px){ .values-hub{ width: 145px; height: 145px; } .values-hub span{ font-size: .95rem; } }

.value-node-pos{ position: absolute; top: 50%; left: 50%; width: 0; height: 0; z-index: 3; }
.value-node{
  position: absolute; top: 0; left: 0; margin: -26px; width: 52px; height: 52px; border-radius: 50%;
  transform: rotate(var(--angle)) translate(130px) rotate(calc(-1 * var(--angle)));
  background: var(--paper); border: 2px solid var(--line);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--forest-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
@media (min-width: 480px){ .value-node{ transform: rotate(var(--angle)) translate(155px) rotate(calc(-1 * var(--angle))); } }
@media (min-width: 820px){ .value-node{ transform: rotate(var(--angle)) translate(172px) rotate(calc(-1 * var(--angle))); } }
.value-node:hover{ border-color: var(--gold-dark); }
.value-node[aria-selected="true"]{
  background: var(--gold); border-color: var(--gold); color: var(--forest-deep);
  transform: rotate(var(--angle)) translate(130px) rotate(calc(-1 * var(--angle))) scale(1.18);
}
@media (min-width: 480px){ .value-node[aria-selected="true"]{ transform: rotate(var(--angle)) translate(155px) rotate(calc(-1 * var(--angle))) scale(1.18); } }
@media (min-width: 820px){ .value-node[aria-selected="true"]{ transform: rotate(var(--angle)) translate(172px) rotate(calc(-1 * var(--angle))) scale(1.18); } }

.value-panel{
  padding: clamp(1.6rem, 3vw, 2.2rem); background: transparent; border-radius: var(--radius-lg);
  position: relative; text-align: center; min-height: 190px;
}
.value-panel::before{
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: conic-gradient(from 315deg at 50% 50%, rgba(255,255,255,0) 0deg, rgba(255,255,255,.9) 90deg, rgba(255,255,255,0) 180deg, rgba(255,255,255,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (min-width: 820px){ .value-panel{ text-align: left; } }
.value-panel-num{ font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.value-panel-title{ margin-bottom: .6rem; color: var(--white); }
.value-panel-text{ color: rgba(250,246,236,.82); }
.value-panel-dots{ display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
@media (min-width: 820px){ .value-panel-dots{ justify-content: flex-start; } }
.value-panel-dots span{ width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.28); transition: background-color .25s var(--ease), transform .25s var(--ease); }
.value-panel-dots span.is-active{ background: var(--gold); transform: scale(1.3); }
#values-data{ display: none; }

/* ---------- Vision / Mission (moody editorial) ---------- */
.vm-section{ position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(4.5rem, 11vw, 8rem); color: var(--white); }
.vm-bg{
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center; background-attachment: fixed;
  filter: saturate(.55) brightness(.4);
  background-image: url('/assets/img/hero/hero-landscape-1200.jpg');
  background-image: image-set(url('/assets/img/hero/hero-landscape-1200.webp') type('image/webp'), url('/assets/img/hero/hero-landscape-1200.jpg') type('image/jpeg'));
}
.values-section .vm-bg{
  background-attachment: scroll;
  background-image: url('/assets/img/programs/community-outreach-1200.jpg');
  background-image: image-set(url('/assets/img/programs/community-outreach-1200.webp') type('image/webp'), url('/assets/img/programs/community-outreach-1200.jpg') type('image/jpeg'));
}
.vm-bg::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(12,17,8,.55) 0%, rgba(12,17,8,.88) 60%, rgba(12,17,8,.94) 100%);
}
.vm-block{ max-width: 34rem; }
.vm-block + .vm-block{ margin-top: clamp(3.5rem, 9vw, 6.5rem); }
.vm-block-right{ margin-left: auto; text-align: right; }
.vm-block-right .vm-connector{ flex-direction: row-reverse; }
.vm-heading{
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 4.2rem); letter-spacing: .03em; color: var(--white); line-height: 1;
  margin-bottom: 1.3rem;
}
.vm-text{ color: rgba(250,246,236,.82); font-size: clamp(.98rem, 1.4vw, 1.1rem); line-height: 1.85; }
.vm-connector{ display: flex; align-items: center; gap: .9rem; margin-top: 1.8rem; }
.vm-dot{ width: 13px; height: 13px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 5px rgba(239,181,29,.18); }
.vm-connector::after{ content: ""; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); flex: 1; }
.vm-block-right .vm-connector::after{ background: linear-gradient(270deg, var(--gold), transparent); }
@media (max-width: 640px){
  .vm-block-right{ margin-left: 0; text-align: left; }
  .vm-block-right .vm-connector{ flex-direction: row; }
  .vm-block-right .vm-connector::after{ background: linear-gradient(90deg, var(--gold), transparent); }
  .vm-bg{ background-attachment: scroll; }
}
.bg-plum h1, .bg-plum h2, .bg-plum h3, .bg-plum h4{ color: var(--white); }
.bg-plum .eyebrow{ color: var(--gold); }
.bg-plum .check-list{ border-top-color: rgba(250,246,236,.28); }
.bg-plum .check-list li{ border-bottom-color: rgba(250,246,236,.28); }
.bg-plum .check-list li::before{ color: var(--gold); }
.bg-plum .check-list li p{ color: rgba(250,246,236,.85); }
.bg-plum .check-list li strong{ color: var(--white); }

.divided-columns{ position: relative; }
@media (min-width: 900px){
  .divided-columns::before{
    content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
    background: rgba(250,246,236,.28); transform: translateX(-50%);
  }
}
@media (max-width: 899px){
  .divided-columns > div:first-child{ padding-bottom: 2rem; margin-bottom: .5rem; border-bottom: 1px solid rgba(250,246,236,.28); }
}

/* ---------- Magnetic buttons ---------- */
.btn-magnetic{ will-change: transform; }

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px){
  body{ font-size: 13.5px; }
  h1, .h1{ font-size: clamp(1.55rem, 7.2vw, 2.1rem); }
  h2, .h2{ font-size: clamp(1.3rem, 6.2vw, 1.6rem); }
  h3, .h3{ font-size: 1.04rem; }
  .lede{ font-size: .93rem; }
  .prose{ font-size: .93rem; }
  .eyebrow{ font-size: .72rem; }

  /* Two-button rows stay on one line, sized to fit */
  .hero-ctas{ flex-wrap: nowrap; gap: .55rem; }
  .hero-ctas .btn{
    flex: 1 1 0; min-width: 0; padding-inline: .7rem; font-size: .78rem;
    min-height: 42px; gap: .35rem; white-space: nowrap;
  }
  .hero-ctas .btn svg{ display: none; }
  .btn-lg{ padding-block: .8rem; }

  /* Stats stay in one row on phones */
  .stat-strip{ gap: .3rem; }
  .stat-strip .stat{ padding: .3rem .2rem; }
  .stat-strip .num{ font-size: 1.05rem; }
  .stat-strip .label{ font-size: .58rem; line-height: 1.25; margin-top: .3rem; }
}
