/* ============================================================
   Michelle Brucella LCSW PLLC — shared styles
   Warm editorial-clinical. Forest sage + ivory + ochre.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color */
  --forest:      #28402f;   /* deep primary green */
  --forest-700:  #34503c;
  --sage:        #6f8a76;   /* muted sage */
  --sage-200:    #c2d0c4;
  --sage-50:     #e7ede6;
  --ivory:       #f6f1e7;   /* warm page bg */
  --ivory-deep:  #efe7d6;
  --paper:       #fffdf8;   /* card surface */
  --ochre:       #c19a4e;   /* gold accent */
  --ochre-soft:  #d8b873;
  --clay:        #b07a55;   /* secondary warm accent */
  --ink:         #23271f;   /* primary text */
  --ink-soft:    #4d5349;   /* body text */
  --ink-mute:    #79806f;   /* captions */
  --line:        #ddd5c4;   /* hairlines on ivory */
  --line-soft:   #e8e1d2;

  /* Type */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(35,39,31,.06), 0 4px 14px rgba(35,39,31,.05);
  --shadow-md: 0 6px 22px rgba(35,39,31,.09), 0 20px 50px rgba(35,39,31,.07);
  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ---------- Type scale ---------- */
h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); font-weight: 400; margin: 0; line-height: 1.08; letter-spacing: -.01em; text-wrap: balance; }
.display { font-size: clamp(2.7rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.18rem; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.35rem); line-height: 1.5; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--ochre);
  display: inline-block;
  flex: none;
}
.eyebrow.center::before { display: none; }

em.accent { font-style: italic; color: var(--forest); font-family: var(--serif); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1340px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-sm { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .92em 1.6em; border-radius: 100px; white-space: nowrap;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  letter-spacing: .01em;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--forest); color: var(--ivory); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage-50); border-color: var(--forest); transform: translateY(-2px); }
.btn-gold { background: var(--ochre); color: #2c2410; box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--ochre-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light { background: var(--paper); color: var(--forest); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--forest);
  border-bottom: 1px solid var(--sage-200);
  padding-bottom: 2px; transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.textlink:hover { gap: .85em; border-color: var(--forest); }
.textlink svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; height: 78px;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.16rem; color: var(--ink); letter-spacing: .01em; white-space: nowrap; }
.brand-sub { font-family: var(--sans); font-size: .58rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--sage); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--sans); font-weight: 500; font-size: .96rem; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color .2s var(--ease); white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--ochre); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--forest); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--forest); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: #cdd8ce; padding-block: clamp(56px, 7vw, 88px) 36px; }
.site-footer a { color: #cdd8ce; transition: color .2s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand .brand-name { color: var(--ivory); }
.footer-brand .brand-sub { color: var(--sage); }
.footer-mark { width: 40px; height: 40px; margin-bottom: 1.2rem; }
.footer-col h5 { font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ochre-soft); margin: 0 0 1.2rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; font-size: .96rem; }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: .82rem; color: #9fb0a3;
}
.footer-legal { max-width: 60ch; }
.footer-join {
  font-size: .82rem; color: #9fb0a3;
  border-bottom: 1px dotted #6c8472; padding-bottom: 2px;
}
.footer-join:hover { color: var(--ochre-soft); border-color: var(--ochre-soft); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.1rem 1.4rem; align-items: center; }
.footer-links a { font-size: .82rem; color: #9fb0a3; }
.footer-links a:hover { color: #fff; }
.hipaa-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: #9fb0a3; }
.hipaa-badge svg { width: 15px; height: 15px; }

/* ---------- Legal / policy pages ---------- */
.legal-hero { padding-block: clamp(40px,6vw,76px) clamp(20px,3vw,36px); background: radial-gradient(56% 70% at 90% 0%, var(--sage-50), transparent 70%); }
.legal-hero h1 { font-size: clamp(2rem,4vw,3rem); }
.legal-body { padding-bottom: clamp(56px,8vw,110px); padding-top: clamp(24px,3vw,40px); }
.legal-doc { max-width: 760px; }
.legal-doc h2 { font-size: clamp(1.35rem,2.3vw,1.7rem); margin: 2.6rem 0 .7rem; }
.legal-doc h3 { font-size: 1.18rem; margin: 1.7rem 0 .4rem; }
.legal-doc p { margin: 0 0 1em; color: var(--ink-soft); }
.legal-doc ul { padding-left: 0; list-style: none; display: grid; gap: .6rem; margin: 1rem 0 1.4rem; }
.legal-doc ul li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; color: var(--ink-soft); }
.legal-doc ul li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ochre); margin-top: .55em; }
.legal-doc a { color: var(--forest); border-bottom: 1px solid var(--sage-200); }
.legal-doc a:hover { border-color: var(--forest); }
.legal-meta { font-size: .92rem; color: var(--ink-mute); margin-top: .8rem; }
.legal-note { background: var(--sage-50); border: 1px solid var(--sage-200); border-radius: 8px; padding: 1.1rem 1.4rem; font-size: .92rem; color: var(--ink-soft); margin: 1.8rem 0; }
.legal-note strong { color: var(--forest); }
.legal-doc hr { border: 0; border-top: 1px solid var(--line); margin: 2.4rem 0; }

/* ---------- Cards & surfaces ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(1.6rem, 2.5vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sage-50); color: var(--forest);
  border: 1px solid var(--sage-200);
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  padding: .4em .9em; border-radius: 100px;
}
.pill svg { width: 14px; height: 14px; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Image slots ---------- */
image-slot {
  --is-bg: var(--sage-50);
  --is-fg: var(--sage);
  border: 1px solid var(--line);
}

/* ---------- Reveal on load / scroll ---------- */
/* Transform-only entrances: content stays visible in print, no-JS, reduced-motion,
   and frozen/offscreen renders — motion is pure enhancement. */
.reveal { animation: rise .85s var(--ease) both; }
[data-delay="1"] { animation-delay: .06s; }
[data-delay="2"] { animation-delay: .14s; }
[data-delay="3"] { animation-delay: .22s; }
[data-delay="4"] { animation-delay: .30s; }
[data-delay="5"] { animation-delay: .38s; }
@keyframes rise { from { transform: translateY(20px); } to { transform: none; } }

/* Scroll reveal — armed only when JS runs; slides up, never hides content. */
[data-io] { transition: transform .8s var(--ease); }
body.io-armed [data-io] { transform: translateY(24px); }
body.io-armed [data-io].in-view { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-io] { transform: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   SUBPAGE SHARED COMPONENTS
   =========================================================== */

/* Page hero (interior pages) */
.page-hero { position: relative; padding-block: clamp(56px, 8vw, 104px) clamp(40px, 5vw, 64px); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(55% 80% at 85% -10%, var(--sage-50), transparent 70%);
}
.page-hero .eyebrow { animation: rise .7s var(--ease) both; }
.page-hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); max-width: 18ch; animation: rise .7s var(--ease) .06s both; }
.page-hero .lead { max-width: 56ch; margin-top: 1.4rem; animation: rise .7s var(--ease) .14s both; }
.phero-grid { display: grid; grid-template-columns: 1.05fr .92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.phero-grid .lead { max-width: 50ch; }
.phero-media { position: relative; animation: rise .7s var(--ease) .2s both; }
.phero-media image-slot { width: 100%; height: clamp(330px, 40vw, 460px); }
@media (max-width: 920px){ .phero-grid { grid-template-columns: 1fr; } .phero-media image-slot { height: clamp(220px, 52vw, 320px); } }
.crumb { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: var(--ink-mute); margin-bottom: 1.6rem; letter-spacing: .03em; }
.crumb a:hover { color: var(--forest); }
.crumb span { color: var(--sage); }

/* Prose */
.prose { max-width: 68ch; }
.prose h2 { margin: 2.4rem 0 1rem; }
.prose h3 { margin: 2rem 0 .7rem; font-size: 1.4rem; }
.prose p { margin-bottom: 1.1em; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: .8rem; margin: 1.2rem 0; }
.prose ul li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.prose ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ochre); margin-top: .55em; }

/* Two-column content */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-media image-slot { width: 100%; height: clamp(340px, 40vw, 500px); }

/* Value / feature cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.vcard { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 6px; padding: clamp(1.6rem, 2.4vw, 2.1rem); }
.vcard .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--sage-50); display: grid; place-items: center; margin-bottom: 1.2rem; }
.vcard .ic svg { width: 24px; height: 24px; stroke: var(--forest); }
.vcard h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.vcard p { font-size: .96rem; margin: 0; }

/* Team grid */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.member image-slot { width: 100%; height: 320px; margin-bottom: 1.2rem; }
.member h3 { font-size: 1.35rem; margin-bottom: .15rem; }
.member .role { font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ochre); margin-bottom: .7rem; }
.member p { font-size: .95rem; }
.member .creds { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.member .creds span { font-size: .76rem; font-weight: 600; color: var(--forest); background: var(--sage-50); border: 1px solid var(--sage-200); padding: .25em .7em; border-radius: 100px; }

/* Step rail (insurance) */
.bigsteps { display: grid; gap: 1.4rem; }
.bigstep { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 8px; padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.bigstep .badge { width: 64px; height: 64px; border-radius: 50%; background: var(--forest); color: var(--ivory); display: grid; place-items: center; font-family: var(--serif); font-size: 1.7rem; flex: none; }
.bigstep h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.bigstep p { margin-bottom: .6rem; }
.bigstep .meta { font-size: .9rem; color: var(--ink-mute); display: flex; align-items: center; gap: .5rem; }
.bigstep .meta svg { width: 15px; height: 15px; stroke: var(--ochre); }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.35rem); color: var(--ink); line-height: 1.3;
}
.faq-q .chev { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: background .25s var(--ease), transform .3s var(--ease); }
.faq-q .chev svg { width: 14px; height: 14px; stroke: var(--forest); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .chev { background: var(--sage-50); }
.faq-item.open .faq-q .chev svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 460px; }
.faq-a-inner { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 64ch; }
.faq-a-inner p { margin: 0 0 .8em; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-info .info-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-50); display: grid; place-items: center; flex: none; }
.contact-info .ic svg { width: 21px; height: 21px; stroke: var(--forest); }
.contact-info h4 { font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .35rem; }
.contact-info .big { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 10px; padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.field label .req { color: var(--clay); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 8px;
  padding: .85em 1em; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-50);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; font-size: .85rem; color: var(--ink-mute); align-items: start; margin-bottom: 1.4rem; }
.consent input { margin-top: .2rem; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 1rem; display: flex; gap: .5rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; stroke: var(--sage); flex: none; margin-top: 1px; }
.ck-mini { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-50); display: grid; place-items: center; flex: none; margin-top: 1px; }
.ck-mini svg { width: 14px; height: 14px; stroke: var(--forest); }

/* Callout band */
.callout { background: var(--sage-50); border: 1px solid var(--sage-200); border-radius: 10px; padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.callout .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--forest); display: grid; place-items: center; flex: none; }
.callout .ic svg { width: 26px; height: 26px; stroke: var(--ivory); }

/* Perks (careers) */
.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.perk { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 8px; padding: 1.6rem; }
.perk .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-50); display: grid; place-items: center; flex: none; }
.perk .ic svg { width: 23px; height: 23px; stroke: var(--forest); }
.perk h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.perk p { font-size: .94rem; margin: 0; }

@media (max-width: 920px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .cards-3, .team { grid-template-columns: 1fr 1fr; }
  .perks { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cards-3, .cards-2, .team, .field-row { grid-template-columns: 1fr; }
  .bigstep { grid-template-columns: 1fr; }
}

/* ---------- Articles / Resources ---------- */
.answer-card { background: var(--sage-50); border: 1px solid var(--sage-200); border-radius: 12px; padding: clamp(1.5rem,3vw,2.1rem) clamp(1.6rem,3vw,2.4rem); }
.answer-card .alabel { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ochre); margin: 0 0 .7rem; }
.answer-card .aq { font-family: var(--serif); font-size: clamp(1.25rem,2.2vw,1.6rem); color: var(--forest); line-height: 1.22; margin: 0 0 .6rem; }
.answer-card .aa { font-size: 1.05rem; color: var(--ink-soft); margin: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; margin-top: 1.4rem; font-size: .88rem; color: var(--ink-mute); }
.cat-tag { display: inline-flex; align-items: center; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--forest); background: var(--sage-50); border: 1px solid var(--sage-200); padding: .35em .85em; border-radius: 100px; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin: 2.5rem 0 .9rem; }
.article-body h3 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.article-body p { margin: 0 0 1.1em; }
.article-body strong { color: var(--ink); }
.article-body ul { padding-left: 0; list-style: none; display: grid; gap: .7rem; margin: 1.1rem 0 1.5rem; }
.article-body ul li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.article-body ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ochre); margin-top: .55em; }
.article-body .answer-card { margin: 1.8rem 0 2rem; }
.article-cta { background: var(--forest); color: var(--ivory); border-radius: 12px; padding: clamp(1.8rem,3vw,2.4rem); text-align: center; margin: 2.6rem 0 1rem; }
.article-cta h3 { color: var(--ivory); font-size: 1.5rem; margin-bottom: .6rem; }
.article-cta p { color: #cdd8ce; margin: 0 auto 1.4rem; max-width: 48ch; }
.article-disclaimer { font-size: .85rem; color: var(--ink-mute); border-top: 1px solid var(--line); margin-top: 2.6rem; padding-top: 1.2rem; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 10px; padding: clamp(1.6rem,2.4vw,2rem); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card h3 { font-size: 1.32rem; margin: .8rem 0 .5rem; }
.post-card p { font-size: .95rem; margin: 0 0 1.3rem; }
.post-card .more { margin-top: auto; }
@media (max-width: 880px){ .post-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile nav ---------- */
.nav-cta-mobile { display: none; }
@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.6rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav .nav-cta .btn { display: none; }
  .nav-cta-mobile { display: block; padding-top: 1.1rem; }
  .nav-cta-mobile a { border-bottom: 0 !important; }
  .nav-cta-mobile .btn { display: inline-flex; width: 100%; justify-content: center; padding-block: .95em; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
