/* =========================================================
   Cindy Nguyen, LMFT — Design System
   Palette: warm & calming sage / earth tones
   ========================================================= */

/* ---------- Page fade transition ---------- */
html { background: var(--cream); }
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.15s;
  animation-timing-function: ease;
}
body { opacity: 0; transition: opacity 0.15s ease; animation: body-fallback-fade 0.6s ease 0.4s forwards; }
body.page-visible { opacity: 1; animation: none; }
@keyframes body-fallback-fade { to { opacity: 1; } }

/* ---------- Scroll reveal (added on load by main.js) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
  body { opacity: 1 !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Floating call/book CTA (engagement) ---------- */
.floating-cta { position: fixed; z-index: 60; right: 20px; bottom: 20px; display: flex; gap: 10px; max-width: calc(100vw - 24px); }
.floating-cta a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 800; font-size: .95rem; padding: 13px 20px; border-radius: 999px; box-shadow: 0 8px 24px rgba(47,58,48,.22); transition: transform .15s ease; white-space: nowrap; }
.floating-cta a:hover { transform: translateY(-2px); }
.floating-cta .fc-call { background: #fff; color: var(--sage-900); border: 1.5px solid var(--line); }
.floating-cta .fc-book { background: var(--clay-600); color: #fff; }
.floating-cta .fc-book:hover { color: #fff; }
.floating-cta .fc-short { display: none; }
@media (max-width: 760px) {
  .floating-cta {
    left: 0; right: 0; bottom: 0; gap: 8px;
    max-width: none; width: 100%;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(250, 247, 241, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(47, 58, 48, 0.08);
  }
  .floating-cta a {
    flex: 1; min-width: 0; justify-content: center;
    padding: 11px 8px; font-size: .88rem;
    box-shadow: none; border-radius: 12px;
  }
  .floating-cta .fc-full { display: none; }
  .floating-cta .fc-short { display: inline; }
}

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/nunito-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("../fonts/nunito-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("../fonts/nunito-sans-700.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url("../fonts/nunito-sans-800.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/newsreader-400.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("../fonts/newsreader-500.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("../fonts/newsreader-600.woff2") format("woff2");
}

/* Metric-matched fallbacks — used only until the woff2 loads (should be near-instant when self-hosted) */
@font-face {
  font-family: "Newsreader-fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 95%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Nunito-Sans-fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
  size-adjust: 101%;
  ascent-override: 105%;
  descent-override: 37%;
  line-gap-override: 0%;
}

:root {
  /* Brand colors */
  --sage-900: #2f3a30;
  --sage-700: #4a5a48;
  --sage-600: #5f7259;
  --sage-500: #7d9476;
  --sage-300: #aebfa6;
  --sage-100: #dde6d7;
  --sage-50:  #eef2ea;

  --clay-600: #b07a57;
  --clay-500: #c08862;
  --clay-300: #e0b89c;

  --cream:    #faf7f1;
  --cream-2:  #f3ede2;
  --ink:      #2c2a26;
  --ink-soft: #5b574f;
  --line:     #e7e0d4;
  --white:    #ffffff;

  /* Typography */
  --font-head: "Newsreader", "Newsreader-fallback", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Nunito-Sans-fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing / radii */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(47, 58, 48, 0.06);
  --shadow-md: 0 14px 40px rgba(47, 58, 48, 0.10);
  --maxw: 1140px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #faf7f1; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--clay-600); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--sage-900); line-height: 1.15; font-weight: 500; letter-spacing: -0.2px; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.3px; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--clay-600);
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-sage   { background: var(--sage-50); }
.bg-sage-deep { background: var(--sage-900); color: var(--cream); }
.bg-sage-deep h1, .bg-sage-deep h2, .bg-sage-deep h3 { color: var(--cream); }
.bg-sage-deep p { color: var(--sage-100); }
.center { text-align: center; }
.measure { max-width: 720px; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clay-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #9c6747; color: #fff; box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--sage-700); color: #fff; }
.btn-secondary:hover { background: var(--sage-900); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--sage-300); color: var(--sage-700); }
.btn-ghost:hover { border-color: var(--sage-700); background: var(--sage-50); color: var(--sage-900); }
.btn-light { background: #fff; color: var(--sage-900); }
.btn-light:hover { background: var(--cream); color: var(--sage-900); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 500; font-size: 1.18rem; color: var(--sage-900); font-synthesis: none; }
.brand:hover { color: var(--sage-900); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; flex: none;
}
.brand { white-space: nowrap; margin-right: 8px; }
.brand small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .6px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; white-space: nowrap; }
.brand-mark--logo { background: none; border-radius: 0; width: auto; height: 46px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 16px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 700; color: var(--ink-soft); font-size: .96rem; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--sage-900); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 800; color: var(--sage-900); white-space: nowrap; }
.nav-phone:hover { color: var(--clay-600); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--sage-900); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: 80px 0 90px;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(174,191,166,.45), transparent 60%),
    radial-gradient(760px 480px at 6% 108%, rgba(224,184,156,.30), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: 1.6em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; font-size: .9rem; color: var(--ink-soft); font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--sage-600); }

/* Portrait */
.portrait-wrap { position: relative; }
.portrait {
  position: relative; z-index: 2; width: 100%; aspect-ratio: 4/5;
  border-radius: 200px 200px 24px 24px; overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--sage-100);
  border: 6px solid #fff;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.portrait:hover img { transform: scale(1.04); }
.portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -90px 70px -40px rgba(47,58,48,.28); pointer-events: none; }
.blob-1 { animation: floaty 9s ease-in-out infinite; }
.blob-2 { animation: floaty 11s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }
@media (prefers-reduced-motion: reduce) { .blob-1, .blob-2 { animation: none; } }
.portrait-fallback {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--sage-300), var(--sage-600));
  color: #fff; font-family: var(--font-head); font-size: 4rem;
}
.blob { position: absolute; border-radius: 50%; filter: blur(2px); z-index: 1; }
.blob-1 { width: 220px; height: 220px; background: var(--sage-100); top: -40px; right: -30px; }
.blob-2 { width: 160px; height: 160px; background: var(--clay-300); opacity: .5; bottom: -30px; left: -30px; }
.portrait-badge {
  position: absolute; z-index: 3; bottom: 18px; left: -18px;
  background: #fff; border-radius: 16px; padding: 12px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--sage-900); font-size: .92rem;
}
.portrait-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #5fa46a; box-shadow: 0 0 0 4px rgba(95,164,106,.2); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sage-50); color: var(--sage-700); margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; }
.card-link { font-weight: 800; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }
.card-link::after { content: "→"; transition: transform .2s ease; }
.card-link:hover::after { transform: translateX(4px); }

/* Specialty pills */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 700; color: var(--sage-700); font-size: .95rem; box-shadow: var(--shadow-sm);
}

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; background: var(--sage-100); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; }
.credlist { list-style: none; padding: 0; margin: 1.4em 0 0; display: grid; gap: 14px; }
.credlist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.credlist svg { color: var(--sage-600); flex: none; margin-top: 4px; }

/* ---------- Fees ---------- */
.fee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fee-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding: 34px 30px; text-align:center; box-shadow: var(--shadow-sm); }
.fee-card .price { font-family: var(--font-head); font-size: 2.6rem; color: var(--sage-900); line-height: 1; margin: 8px 0 4px; }
.fee-card .per { color: var(--ink-soft); font-size: .9rem; font-weight: 700; }
.fee-note { background: var(--sage-50); border-radius: var(--radius-md); padding: 26px 30px; margin-top: 24px; border: 1px solid var(--line); }

/* Calm, transparent fee list */
.fee-list { max-width: 640px; margin: 36px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 6px 26px; box-shadow: var(--shadow-sm); }
.fee-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.fee-line:first-child { border-top: none; }
.fee-line-info { display: flex; flex-direction: column; }
.fee-line-name { font-weight: 800; color: var(--sage-900); font-size: 1.02rem; }
.fee-line-desc { font-size: .88rem; color: var(--ink-soft); margin-top: 2px; }
.fee-line-price { font-family: var(--font-head); font-size: 1.5rem; color: var(--sage-900); flex: none; }
.fee-line-price.is-free { color: var(--sage-600); }
.fee-accessible { max-width: 640px; margin: 18px auto 0; background: var(--sage-50); border: 1px solid var(--sage-300); border-radius: var(--radius-md); padding: 16px 22px; }
.fee-accessible p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.fee-accessible strong { color: var(--sage-900); }
.fee-pay { max-width: 640px; margin: 14px auto 0; text-align: center; font-size: .85rem; color: var(--ink-soft); font-weight: 700; }

/* Prominent free-consult + sliding-scale block, with smaller rates below */
.fee-welcome { max-width: 640px; margin: 34px auto 0; text-align: center; background: var(--sage-50); border: 1px solid var(--sage-300); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-sm); }
.fee-tag { display: inline-block; background: var(--clay-600); color: #fff; font-weight: 800; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.fee-welcome h3 { font-size: 1.85rem; margin: 14px 0 8px; }
.fee-welcome > p { color: var(--ink-soft); margin: 0 auto; max-width: 46ch; }
.fee-welcome-rule { border: none; border-top: 1px solid var(--sage-300); max-width: 90px; margin: 22px auto; }
.fee-welcome-sliding { font-size: .96rem; }
.fee-welcome-sliding strong { color: var(--sage-900); }
.fee-welcome .btn { margin-top: 24px; }
.fee-rates { max-width: 560px; margin: 26px auto 0; }
.fee-rates-label { text-align: center; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-size: .72rem; color: var(--ink-soft); margin: 0 0 12px; }
.fee-list--small { padding: 4px 22px; box-shadow: none; }
.fee-list--small .fee-line { padding: 14px 0; }
.fee-list--small .fee-line-name { font-size: .96rem; }
.fee-list--small .fee-line-price { font-size: 1.2rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--clay-600); color:#fff;
  font-family: var(--font-head); font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 16px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; font-family: var(--font-head); font-size: 1.15rem; color: var(--sage-900);
  font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { flex: none; transition: transform .25s ease; color: var(--sage-600); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- Forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display:block; font-weight: 800; color: var(--sage-900); margin-bottom: 8px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-500); box-shadow: 0 0 0 4px rgba(125,148,118,.15); background:#fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 6px; }
.form-success { display:none; background: var(--sage-50); border:1px solid var(--sage-300); border-radius: var(--radius-md); padding: 22px; color: var(--sage-900); font-weight: 700; }

/* Contact methods */
.contact-methods { display: grid; gap: 18px; }
.contact-method { display:flex; gap: 16px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-method .ci { width: 48px; height: 48px; border-radius: 14px; background: var(--sage-50); color: var(--sage-700); display:grid; place-items:center; flex:none; }
.contact-method strong { display:block; color: var(--sage-900); font-size: 1.05rem; }
.contact-method a { font-weight: 800; overflow-wrap: anywhere; word-break: break-word; }

/* Scheduler embed slot */
.embed-slot {
  border: 2px dashed var(--sage-300); border-radius: var(--radius-md);
  background: var(--sage-50); padding: 40px 30px; text-align: center; color: var(--sage-700);
}
.embed-slot strong { color: var(--sage-900); }

/* ---------- Article ---------- */
.article-hero { padding: 70px 0 40px; }
.breadcrumbs { font-size: .85rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumbs a { color: var(--sage-700); }
.article-meta { color: var(--ink-soft); font-weight: 700; font-size: .9rem; margin-top: 8px; }
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--sage-700); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose blockquote {
  border-left: 4px solid var(--clay-300); background: var(--cream-2); margin: 1.6em 0;
  padding: 18px 26px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--sage-700);
}
.prose strong { color: var(--sage-900); }
.article-cta {
  margin: 50px auto 64px; max-width: 740px; background: var(--sage-900); color: var(--cream);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.6rem; }
.article-cta p { color: var(--sage-100); }

/* Resource cards */
.resource-card { display:flex; flex-direction: column; }
.resource-card .tag { align-self:flex-start; background: var(--sage-50); color: var(--sage-700); font-weight:800; font-size:.75rem; text-transform:uppercase; letter-spacing:1px; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.resource-card h3 { font-size: 1.3rem; }
.resource-card .card-link { margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-900); color: var(--sage-100); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem; margin-bottom: 18px; }
.site-footer a { color: var(--sage-100); display: block; margin-bottom: 10px; font-size: .96rem; }
.site-footer a:hover { color: #fff; }
.footer-brand p { color: var(--sage-300); font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding-top: 24px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: var(--sage-300); }
.footer-disclaimer { font-size: .8rem; color: var(--sage-300); max-width: 760px; margin-top: 10px; line-height: 1.6; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.lead { font-size: 1.15rem; }
.text-clay { color: var(--clay-600); }
.divider { height:1px; background: var(--line); border:none; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .portrait-wrap { max-width: 380px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fee-grid, .steps, .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
/* Collapse the nav to the mobile menu before it gets cramped */
@media (max-width: 1160px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav { gap: 12px; padding: 10px 0; }
  .brand {
    flex: 1; min-width: 0; margin-right: 0;
    white-space: normal; font-size: 1.05rem;
  }
  .brand small {
    white-space: normal; line-height: 1.25;
    font-size: .58rem; letter-spacing: .35px;
  }
  .brand-mark--logo { height: 36px; }
  .nav-toggle { display: block; flex-shrink: 0; margin-left: auto; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--cream); padding: 18px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-links a { padding: 10px 0; width: 100%; }
}

@media (max-width: 760px) {
  body { font-size: 17px; padding-bottom: 68px; }
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card, .article-cta { padding: 22px; }
  .brand { font-size: .98rem; gap: 10px; }
  .brand small { font-size: .54rem; }
  .brand-mark--logo { height: 32px; }
}

/* ---------- Editorial home layout ---------- */
.v-editorial { --font-head: "Newsreader", Georgia, "Times New Roman", serif; }
.v-editorial h1, .v-editorial h2, .v-editorial h3, .v-editorial h4 { font-weight: 500; letter-spacing: -0.2px; }
.ed-hero {
  text-align: center; padding: 86px 0 70px;
  background: radial-gradient(900px 460px at 50% -12%, rgba(174,191,166,.40), transparent 62%);
}
.ed-hero .eyebrow { color: var(--clay-600); }
.ed-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); max-width: 16ch; margin: 0 auto .32em; line-height: 1.08; }

/* Animated hero headline: letters gently rise into place one at a time (calm, unhurried), then "alone." settles
   into its warm accent color with a single soft glow — a quiet emphasis, not an attention-grabbing effect. */
.ed-hero-headline .word { display: inline-block; }
.ed-hero-headline .ed-hero-accent { display: inline-block; }
.ed-hero-headline .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: letter-in .6s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i) * 0.045s);
}
.ed-hero-headline .ed-hero-accent .letter {
  color: var(--ink);
  animation: letter-in .6s cubic-bezier(.2,.7,.2,1) forwards, accent-settle 1.8s ease-out forwards;
  animation-delay: calc(var(--i) * 0.045s), 1.45s;
}
@keyframes letter-in { to { opacity: 1; transform: translateY(0); } }
@keyframes accent-settle {
  0% { color: var(--ink); text-shadow: none; }
  45% { color: var(--clay-600); text-shadow: 0 0 16px rgba(176,122,87,.30); }
  100% { color: var(--clay-600); text-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ed-hero-headline .letter,
  .ed-hero-headline .ed-hero-accent .letter {
    opacity: 1; transform: none; animation: none; color: var(--clay-600);
  }
}
.ed-hero .lead { font-size: 1.25rem; max-width: 60ch; margin: 0 auto 1.8em; }
.ed-portrait {
  width: 200px; height: 200px; border-radius: 50%; overflow: hidden; margin: 0 auto 30px;
  border: 6px solid #fff; box-shadow: var(--shadow-md); background: var(--sage-100);
}
.ed-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
}
.ed-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ed-trust {
  margin-top: 30px; display: flex; gap: 8px 26px; justify-content: center; flex-wrap: wrap;
  font-weight: 700; font-size: .9rem; color: var(--ink-soft);
}
.ed-trust span { display: inline-flex; gap: 7px; align-items: center; }
.ed-trust svg { color: var(--sage-600); }
.ed-rule { width: 60px; height: 3px; background: var(--clay-300); border: none; border-radius: 3px; margin: 0 auto 22px; }

/* ---------- Pull quote (home) ---------- */
.pull-quote {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}
.pull-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--sage-900);
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
}
.pull-quote-mark {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 0;
  color: var(--clay-300);
  font-weight: 400;
  vertical-align: -0.12em;
}
.pull-quote cite {
  display: block;
  margin-top: 1.2em;
  font-style: normal;
  font-weight: 800;
  color: var(--clay-600);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .85rem;
}
