/* =========================================================================
   Affordable Behavioral Health, LLC — site styles
   Aesthetic: warm organic editorial calm
   Palette drawn from the logo — deep forest green, terracotta/clay,
   warm cream, muted sage.
   ========================================================================= */

/* ----------  Design tokens  ---------- */
:root {
  /* Brand */
  --green-900: #10402d;
  --green-800: #16523a;
  --green-700: #1c6547;   /* primary */
  --green-600: #2a7b58;
  --green-500: #3f9169;
  --sage-500:  #7fa588;
  --sage-300:  #b8ccbb;
  --sage-100:  #e3ecdf;

  --clay-700:  #a8452d;
  --clay-600:  #c1563a;   /* accent */
  --clay-500:  #d0674a;
  --clay-100:  #f3ddd2;

  --gold-500:  #e0913f;   /* from the logo's hand gradient */

  /* Neutrals — warm */
  --cream:     #fbf6ec;
  --cream-2:   #f5eede;
  --paper:     #ffffff;
  --ink:       #22302a;
  --ink-soft:  #4a5751;
  --ink-faint: #6d7873;
  --line:      #e6ddca;

  /* Type */
  --display: "Lora", Georgia, "Times New Roman", serif;
  --body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Space & shape */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(28, 60, 45, 0.06);
  --shadow: 0 18px 40px -18px rgba(20, 64, 45, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(16, 64, 45, 0.40);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 1.0625rem;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--clay-600); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.14;
  color: var(--green-900);
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--ink-soft); line-height: 1.6; }

/* ----------  Layout helpers  ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.15rem, 4vw, 2.5rem); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--body);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--clay-600); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--clay-500); border-radius: 2px;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 700; font-size: 0.98rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  line-height: 1; text-align: center;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 12px 24px -12px rgba(28, 101, 71, 0.7); }
.btn-primary:hover { background: var(--green-800); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 30px -14px rgba(28, 101, 71, 0.8); }
.btn-clay { background: var(--clay-600); color: #fff; box-shadow: 0 12px 24px -12px rgba(193, 86, 58, 0.7); }
.btn-clay:hover { background: var(--clay-700); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--sage-300); }
.btn-ghost:hover { background: var(--sage-100); color: var(--green-900); border-color: var(--sage-500); }
.btn-block { width: 100%; }

/* ----------  Utility top bar  ---------- */
.topbar {
  background: var(--green-900); color: #eaf1ea;
  font-size: 0.83rem; letter-spacing: 0.01em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; flex-wrap: wrap; padding-top: 0.4rem; padding-bottom: 0.4rem; }
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { color: var(--gold-500); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar svg { width: 15px; height: 15px; opacity: 0.85; }

/* ----------  Header / nav  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 236, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(251, 246, 236, 0.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--green-900); }
.brand img { height: 52px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand img { height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--green-900); letter-spacing: -0.01em; line-height: 1.08; white-space: nowrap; }
.brand-text span { font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--clay-600); font-weight: 700; white-space: nowrap; margin-top: 3px; }
.nav-links { flex-wrap: nowrap; }
.nav-links a { padding: 0.5rem 0.68rem; font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 1200px) { .nav-phone { display: none; } }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  font-weight: 600; font-size: 0.96rem; color: var(--ink-soft);
  padding: 0.5rem 0.85rem; border-radius: 999px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--green-800); background: var(--sage-100); }
.nav-links a.active { color: var(--green-800); }
.nav-links a.active { background: var(--sage-100); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--green-800); font-size: 0.95rem; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem;
  color: var(--green-900);
}
.nav-toggle svg { width: 30px; height: 30px; }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 0.2rem;
  padding: 0.5rem clamp(1.15rem, 4vw, 2.5rem) 1.4rem;
  background: var(--cream); border-bottom: 1px solid var(--line);
}
.mobile-menu a { padding: 0.8rem 0.6rem; font-weight: 600; color: var(--ink); border-radius: 10px; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--sage-100); color: var(--green-800); }
.mobile-menu .btn { margin-top: 0.6rem; }

/* ----------  Hero  ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(101deg,
      rgba(251, 246, 236, 0.985) 0%,
      rgba(251, 246, 236, 0.94) 30%,
      rgba(251, 246, 236, 0.66) 50%,
      rgba(250, 240, 226, 0.40) 72%,
      rgba(250, 238, 222, 0.28) 100%),
    url("assets/hero.jpg");
  background-size: cover, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat;
}
.hero::before {
  /* soft warmth + green anchor over the photo */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1000px 560px at 88% -6%, rgba(224, 145, 63, 0.16), transparent 60%),
    radial-gradient(820px 640px at 4% 112%, rgba(28, 101, 71, 0.12), transparent 62%);
  pointer-events: none;
}
.hero-leaf {
  position: absolute; z-index: 0; pointer-events: none; opacity: 0.42;
}
.hero-leaf.one { top: -40px; right: -30px; width: 230px; color: var(--sage-500); mix-blend-mode: multiply; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.hero-copy { max-width: 40rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  border-radius: 999px; padding: 0.45rem 0.95rem 0.45rem 0.55rem;
  font-size: 0.82rem; font-weight: 700; color: var(--green-800); margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(63,145,105,0.18); }
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--clay-600); font-weight: 400; }
.hero-sub { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; margin-bottom: 1.75rem; }
.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.hero-points li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.98rem; color: var(--ink-soft); }
.hero-points svg { flex: none; width: 20px; height: 20px; color: var(--green-600); margin-top: 2px; }

/* Consultation panel */
.consult-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
}
.consult-panel::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px; background: linear-gradient(160deg, rgba(63,145,105,0.5), transparent 40%, rgba(224,145,63,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.consult-panel h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.consult-panel .panel-sub { font-size: 0.92rem; color: var(--ink-faint); margin-bottom: 1.25rem; }

/* ----------  Forms  ---------- */
.field { margin-bottom: 0.95rem; }
.field label { display: block; font-weight: 700; font-size: 0.86rem; color: var(--green-800); margin-bottom: 0.35rem; }
.field label .opt { color: var(--ink-faint); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 0.72rem 0.9rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(63, 145, 105, 0.15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c6547' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 18px; padding-right: 2.5rem; }
.privacy-note {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.8rem; color: var(--ink-faint); line-height: 1.5;
  background: var(--sage-100); border-radius: 12px; padding: 0.7rem 0.85rem; margin: 0.5rem 0 1rem;
}
.privacy-note svg { flex: none; width: 16px; height: 16px; color: var(--green-600); margin-top: 2px; }
.form-note-ok { font-size: 0.82rem; color: var(--green-700); font-weight: 700; margin-top: 0.75rem; display: none; }
.form-note-ok.show { display: block; }

/* ----------  Trust strip  ---------- */
.trust {
  background: var(--green-900); color: #eaf1ea;
}
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.5rem); padding-top: 2.4rem; padding-bottom: 2.4rem; }
.trust-item { display: flex; flex-direction: column; gap: 0.15rem; }
.trust-item .n { font-family: var(--display); font-size: 2rem; color: #fff; font-weight: 500; line-height: 1; }
.trust-item .l { font-size: 0.85rem; color: #b9cdbf; letter-spacing: 0.02em; }
.trust-item .l strong { color: #fff; font-weight: 700; display: block; font-size: 0.95rem; }

/* ----------  Cards / grids  ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem); box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-300); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sage-100); color: var(--green-700); margin-bottom: 1.1rem;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { color: var(--green-800); margin-bottom: 0.4rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0; }
.card.clay .ic { background: var(--clay-100); color: var(--clay-700); }
.feature-card { background: var(--sage-100); border-color: var(--sage-300); }

/* pill tags */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.tag {
  font-size: 0.85rem; font-weight: 600; color: var(--green-800);
  background: var(--paper); border: 1px solid var(--sage-300); border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

/* ----------  Split / feature sections  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.portrait { aspect-ratio: 4/5; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(251, 246, 236, 0.94); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 0.7rem 1rem; box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}
.media-badge strong { display: block; color: var(--green-900); font-family: var(--display); font-size: 1.05rem; }
.media-badge span { color: var(--ink-soft); }

.alt { background: var(--cream-2); }
.on-green { background: var(--green-800); color: #eef4ee; }
.on-green h1, .on-green h2, .on-green h3 { color: #fff; }
.on-green .eyebrow { color: var(--gold-500); }
.on-green .eyebrow::before { background: var(--gold-500); }
.on-green .lead, .on-green p { color: #cfe0d4; }

/* Value list */
.vlist { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 1rem; }
.vlist li { display: flex; gap: 0.85rem; align-items: flex-start; }
.vlist .vic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--sage-100); color: var(--green-700); display: grid; place-items: center; }
.vlist .vic svg { width: 20px; height: 20px; }
.vlist h4 { margin: 0 0 0.15rem; font-family: var(--body); font-weight: 800; font-size: 1rem; color: var(--green-900); }
.vlist p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ----------  Approach / brand line  ---------- */
.brandline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.5vw,1.6rem);
  counter-reset: step;
}
.brandline .step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.35rem; box-shadow: var(--shadow-sm); position: relative;
}
.brandline .step .word { font-family: var(--display); font-size: 1.5rem; color: var(--clay-600); margin-bottom: 0.35rem; }
.brandline .step p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.brandline .step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 1.2rem; right: 1.3rem; font-family: var(--display);
  font-size: 0.9rem; color: var(--sage-500); font-weight: 600;
}

/* ----------  Page hero (interior)  ---------- */
.page-hero { position: relative; background: var(--green-900); color: #fff; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 90% -20%, rgba(224,145,63,0.22), transparent 60%),
              radial-gradient(600px 400px at -10% 120%, rgba(63,145,105,0.35), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero .eyebrow { color: var(--gold-500); }
.page-hero .eyebrow::before { background: var(--gold-500); }
.page-hero .lead { color: #d3e2d7; max-width: 60ch; }
.page-leaf { position: absolute; right: -20px; top: -10px; width: 320px; color: rgba(127,165,136,0.28); z-index: 0; }
.breadcrumb { font-size: 0.82rem; color: #a9c1b0; margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.breadcrumb a { color: #cfe0d4; }
.breadcrumb a:hover { color: #fff; }

/* ----------  FAQ accordion  ---------- */
.faq { display: grid; gap: 0.85rem; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item[open] { border-color: var(--sage-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--display); font-weight: 500; font-size: 1.12rem; color: var(--green-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sage-100); color: var(--green-700); display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.3s; }
.faq-item summary .chev svg { width: 16px; height: 16px; }
.faq-item[open] summary .chev { transform: rotate(180deg); background: var(--green-700); color: #fff; }
.faq-item .faq-body { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }
.faq-item .faq-body p { margin-bottom: 0.6rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ----------  Fees table  ---------- */
.fee-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; height: 100%; }
.fee-card .fee-head { background: var(--sage-100); padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); }
.fee-card.feature .fee-head { background: var(--green-800); }
.fee-card.feature .fee-head h3, .fee-card.feature .fee-head p { color: #fff; }
.fee-card .fee-head h3 { margin: 0 0 0.15rem; color: var(--green-900); }
.fee-card .fee-head p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }
.fee-rows { padding: 0.4rem 1.4rem 1.2rem; }
.fee-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px dashed var(--line); }
.fee-row:last-child { border-bottom: 0; }
.fee-row .fee-name { color: var(--ink); font-weight: 600; font-size: 0.96rem; }
.fee-row .fee-name span { display: block; font-weight: 500; font-size: 0.82rem; color: var(--ink-faint); }
.fee-row .fee-price { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--green-700); white-space: nowrap; }
.fee-card.feature .fee-row .fee-price { color: var(--clay-600); }

.callout {
  background: var(--clay-100); border: 1px solid #e9c9bb; border-left: 4px solid var(--clay-500);
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem;
}
.callout h3 { color: var(--clay-700); font-size: 1.15rem; }
.callout p { margin-bottom: 0; color: #7a4131; }

/* Info cards (contact) */
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.info-card + .info-card { margin-top: 1rem; }
.info-card .ic-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.info-card .ic-row svg { width: 20px; height: 20px; color: var(--green-600); }
.info-card h3 { font-family: var(--body); font-weight: 800; font-size: 1rem; color: var(--green-900); margin: 0; }
.info-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.info-card a { font-weight: 700; }

/* Crisis / emergency band */
.crisis { background: linear-gradient(135deg, #98371f 0%, #b44e33 55%, #c15b3c 100%); color: #fff; }
.crisis-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem 2.2rem; flex-wrap: wrap; padding-top: 1.6rem; padding-bottom: 1.6rem; }
.crisis-msg { display: flex; align-items: center; gap: 1rem; flex: 1 1 440px; min-width: 260px; }
.crisis-badge { flex: none; width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255,255,255,0.3); display: grid; place-items: center; }
.crisis-badge svg { width: 24px; height: 24px; }
.crisis-title { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: #fff; letter-spacing: -0.01em; }
.crisis-sub { margin: 0.2rem 0 0; font-size: 0.9rem; line-height: 1.5; color: rgba(255, 255, 255, 0.9); max-width: 62ch; }
.crisis-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.crisis-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--body); font-weight: 700; font-size: 0.94rem; white-space: nowrap;
  padding: 0.72rem 1.3rem; border-radius: 999px; border: 1.5px solid #fff; background: #fff; color: var(--clay-700);
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
}
.crisis-btn svg { width: 1.05em; height: 1.05em; }
.crisis-btn:hover { transform: translateY(-2px); background: var(--cream); color: var(--clay-700); }
.crisis-btn.ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.crisis-btn.ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
@media (max-width: 760px) {
  .crisis-wrap { flex-direction: column; align-items: stretch; }
  .crisis-actions { width: 100%; }
  .crisis-btn { flex: 1; }
}

/* ----------  CTA band  ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--green-800); color: #fff; text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -30%, rgba(224,145,63,0.28), transparent 60%); }
.cta-band .wrap { position: relative; z-index: 1; padding-top: clamp(3rem,6vw,4.5rem); padding-bottom: clamp(3rem,6vw,4.5rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d3e2d7; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--green-900); color: #c7d8cc; font-size: 0.94rem; }
.site-footer .wrap { padding-top: clamp(2.8rem, 5vw, 4rem); padding-bottom: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand img { height: 72px; width: auto; object-fit: contain; margin-bottom: 0.9rem; }
.footer-word strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: #fff; line-height: 1.05; }
.footer-word span { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); font-weight: 700; margin-top: 0.35rem; }
.footer-brand p { max-width: 34ch; color: #a9c1b0; margin-top: 1rem; }
.footer-col h4 { color: #fff; font-family: var(--body); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: #c7d8cc; }
.footer-col a:hover { color: var(--gold-500); }
.footer-col .fx { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-col .fx svg { flex: none; width: 17px; height: 17px; margin-top: 3px; color: var(--sage-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: #8ba690; }
.footer-bottom a { color: #a9c1b0; }
.footer-disclaimer { font-size: 0.82rem; color: #8ba690; line-height: 1.6; max-width: 70ch; margin-top: 0.5rem; }

/* ----------  Insights / blog  ---------- */
.post-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; height: 100%; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sage-300); }
.post-thumb { position: relative; aspect-ratio: 16 / 8; display: flex; align-items: flex-end; padding: 1.15rem; overflow: hidden; }
.post-thumb .wm { position: absolute; right: -24px; top: -24px; width: 160px; opacity: 0.26; color: #fff; pointer-events: none; }
.post-thumb .cat { position: relative; z-index: 1; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: #fff; background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.4); padding: 0.32rem 0.75rem; border-radius: 999px; }
.post-thumb.g-green { background: linear-gradient(135deg, var(--green-800), var(--green-600)); }
.post-thumb.g-clay  { background: linear-gradient(135deg, var(--clay-700), var(--clay-500)); }
.post-thumb.g-sage  { background: linear-gradient(135deg, #2a7b58, #7fa588); }
.post-thumb.g-gold  { background: linear-gradient(135deg, #a9631d, var(--gold-500)); }
.post-body { padding: 1.35rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 1.24rem; line-height: 1.25; margin-bottom: 0.55rem; }
.post-body h3 a { color: var(--green-900); }
.post-body h3 a:hover { color: var(--clay-600); }
.post-meta { font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 0.75rem; letter-spacing: 0.01em; }
.post-excerpt { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.1rem; flex: 1; }
.read-more { font-weight: 700; color: var(--green-700); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; align-self: flex-start; }
.read-more svg { width: 1em; height: 1em; transition: transform 0.2s var(--ease); }
.read-more:hover { color: var(--clay-600); }
.read-more:hover svg { transform: translateX(3px); }

/* Article (single post) */
.article { max-width: 720px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--green-700); font-size: 0.9rem; margin-bottom: 1.4rem; }
.article-back svg { width: 1em; height: 1em; }
.article-back:hover { color: var(--clay-600); }
.article > p { margin: 0 0 1.15rem; font-size: 1.08rem; line-height: 1.78; color: var(--ink); }
.article > p:first-of-type { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.7; }
.article h2 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin: 2.2rem 0 0.8rem; }
.article h3 { font-size: 1.2rem; margin: 1.7rem 0 0.5rem; color: var(--green-800); }
.article ul { margin: 0 0 1.3rem; padding-left: 1.25rem; }
.article li { margin-bottom: 0.55rem; color: var(--ink); line-height: 1.7; }
.article strong { color: var(--green-900); font-weight: 700; }
.article-cta { margin-top: 2.4rem; padding: clamp(1.4rem, 3vw, 2rem); background: var(--sage-100); border: 1px solid var(--sage-300); border-radius: var(--radius); text-align: center; }
.article-cta h3 { color: var(--green-900); margin-bottom: 0.4rem; }
.article-cta p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.article-hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; font-size: 0.85rem; color: #cfe0d4; margin-top: 1rem; }
.article-hero-meta .chip { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; padding: 0.25rem 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.72rem; color: #fff; }

/* ----------  Reveal on load / scroll  ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ----------  Responsive  ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brandline { grid-template-columns: repeat(2, 1fr); }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .mobile-menu { display: flex; }
}
@media (max-width: 400px) { .brand-text span { display: none; } }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; padding-top: 2.5rem; }
  .hero-leaf.one { width: 170px; opacity: 0.35; }
  .split { grid-template-columns: 1fr; }
  .split.rev .media-frame { order: -1; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: center; font-size: 0.78rem; }
  .topbar .tb-hide { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .brandline { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fee-row { flex-direction: column; gap: 0.2rem; }
  .hero-actions .btn { width: 100%; }
  .crisis .wrap { justify-content: flex-start; }
}
