/* =============================================================================
   Coach J Will — JW Coaching & Consulting
   Dark-and-Luxe design system  ·  single stylesheet  ·  GHL-portable
   -----------------------------------------------------------------------------
   HOW TO RECREATE IN GoHighLevel:
   - Copy the :root variables below into GHL global custom CSS (Settings → Custom CSS),
     OR map them to GHL "Global Colors / Fonts".
   - Brand fonts: Poppins (300 body / 500 headings / 400 meta / 700 bold).
   - Brand colors (real, extracted from coachjwill.com):
       accent  #a74d4a   black #121212   white #f5f5f5   beige #eae6e1   sage #818b7e
   - Everything is class-based (no inline styles) so blocks paste cleanly.
   ============================================================================= */

/* ---------- 1. DESIGN TOKENS (recreate as GHL global styles) ---------------- */
:root {
  /* Brand core (extracted) */
  --black:      #121212;
  --white:      #f5f5f5;
  --accent:     #a74d4a;   /* terracotta / brick red — primary brand accent */
  --beige:      #eae6e1;   /* warm bone */
  --sage:       #818b7e;   /* muted sage */

  /* Dark-and-luxe surfaces */
  --bg:         #121212;
  --bg-elev:    #1b1a19;
  --bg-elev-2:  #232120;
  --bg-beige:   #efece6;   /* light section background */

  /* Text */
  --text:       #f5f5f5;
  --text-muted: #b9b3ac;
  --text-dim:   #8c867f;
  --text-on-light: #1d1b1a;
  --text-on-light-muted: #5c5752;

  /* Accents */
  --accent-hover: #bd5b57;
  --gold:        #c9a24b;  /* restrained metallic for luxe detail (only added color) */
  --gold-soft:   rgba(201,162,75,0.16);

  /* Lines & shadows */
  --line:        rgba(245,245,245,0.10);
  --line-strong: rgba(245,245,245,0.18);
  --line-dark:   rgba(18,18,18,0.12);
  --shadow:      0 18px 50px -20px rgba(0,0,0,0.65);
  --shadow-soft: 0 10px 30px -16px rgba(0,0,0,0.5);

  /* Type */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --section-y: clamp(4rem, 9vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. RESET / BASE ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

h1, h2, h3, h4 { font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p  { color: var(--text-muted); text-wrap: pretty; }
/* Prevent lone single-word last lines (orphans/widows) site-wide */
.hero__sub, .lead, .section-head p, .hero__note, blockquote, figcaption, .card p, .post-card__excerpt { text-wrap: pretty; }
strong { font-weight: 600; color: var(--text); }

/* ---------- 3. LAYOUT HELPERS ----------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.4rem); }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* Eyebrow label (luxe convention) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .8; }
.eyebrow.no-rule::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }

/* ---------- 4. BUTTONS ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 500; font-size: .95rem; letter-spacing: .01em; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 28px -12px rgba(167,77,74,0.8); }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 16px 34px -12px rgba(167,77,74,0.9); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: #fff; }
.btn--light { background: var(--white); color: var(--text-on-light); }
.btn--light:hover { background: #fff; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* ---------- 5. HEADER / NAV ------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18,18,18,0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 102px; }
.nav__logo img { height: 74px; width: auto; }
.nav__logo .sub { display: block; font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav__links a { font-size: .92rem; color: var(--text-muted); position: relative; padding-block: .4rem; transition: color .2s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; background: none; border: 0; color: var(--text); padding: .4rem; }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg-elev); border-bottom: 1px solid var(--line);
    padding: .5rem clamp(1.2rem,4vw,2.4rem) 1.4rem; transform: translateY(-120%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav__links[data-open="true"] { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
}

/* ---------- 6. HERO --------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(5rem, 12vw, 9rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(167,77,74,0.22), transparent 60%),
    radial-gradient(700px 500px at 4% 108%, rgba(129,139,126,0.14), transparent 60%),
    var(--bg);
}
.hero::after { /* fine grain/vignette for luxe depth */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 0%, transparent 55%, rgba(0,0,0,0.5) 100%);
}
.hero__inner { max-width: 820px; }
.hero h1 { margin-top: 1.1rem; }
.hero h1 .accentword { color: var(--accent); }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--text-muted); max-width: 620px; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__note { margin-top: 1.2rem; font-size: .85rem; color: var(--text-dim); }

/* Two-column hero (home) */
.hero--split .hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero--split .hero__inner { max-width: none; }
.hero__media { position: relative; }
.hero__media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong); aspect-ratio: 4 / 5; box-shadow: var(--shadow);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero__media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,12,12,0.55)); }
.hero__media::before { /* gold accent corner */
  content: ""; position: absolute; inset: -10px auto auto -10px; width: 64px; height: 64px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); border-radius: 6px 0 0 0; opacity: .8;
}
.hero__badge {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2;
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
}
.hero__badge span {
  background: rgba(18,18,18,0.7); backdrop-filter: blur(6px); border: 1px solid var(--line-strong);
  color: var(--text); font-size: .74rem; letter-spacing: .04em; padding: .35rem .7rem; border-radius: 999px;
}
@media (max-width: 880px) {
  .hero--split .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; margin-inline: auto; order: 2; }
}

/* ---------- 7. SECTION HEADINGS --------------------------------------------- */
.section-head { max-width: 680px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1rem; }

/* ---------- 8. CARDS / GRIDS ------------------------------------------------ */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2.1rem); transition: transform .3s var(--ease), border-color .3s, background .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--bg-elev-2); }
.card__num { font-size: .8rem; font-weight: 600; letter-spacing: .2em; color: var(--gold); }
.card h3 { margin: .7rem 0 .6rem; }
.card p { font-size: .96rem; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); margin-bottom: 1.1rem;
}
.card__icon svg { width: 24px; height: 24px; }

/* Service card with terracotta top accent */
.card--service::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold)); opacity: .9;
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card--service:hover::before { transform: scaleX(1); }
.card--feature { background: var(--bg-elev); }

/* Tag / pill */
.pill {
  display: inline-block; padding: .35rem .85rem; border-radius: 999px; font-size: .76rem; font-weight: 500;
  letter-spacing: .04em; background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(201,162,75,0.25);
}
.pill--accent { background: rgba(167,77,74,0.16); color: #e29b97; border-color: rgba(167,77,74,0.3); }

/* ---------- 9. CHECK LISTS -------------------------------------------------- */
.checklist { list-style: none; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .85rem; align-items: flex-start; color: var(--text-muted); }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: .15rem; border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a24b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.painlist { list-style: none; display: grid; gap: .8rem; }
.painlist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--text-muted); }
.painlist li::before { content: "—"; color: var(--accent); font-weight: 600; }

/* ---------- 10. LIGHT SECTION (contrast band) ------------------------------- */
.section--light { background: var(--bg-beige); color: var(--text-on-light); }
.section--light h2, .section--light h3 { color: var(--text-on-light); }
.section--light p { color: var(--text-on-light-muted); }
.section--light .eyebrow { color: var(--accent); }
.section--light .eyebrow::before { background: var(--accent); }
.section--light .card { background: #fff; border-color: var(--line-dark); box-shadow: var(--shadow-soft); }
.section--light .card p { color: var(--text-on-light-muted); }
/* Contrast pass — anything that defaults to light text must darken on light bands */
.section--light .quote blockquote { color: var(--text-on-light); }
.section--light .quote figcaption { color: var(--text-on-light-muted); }
.section--light .quote figcaption strong { color: var(--accent); }
.section--light .quote::before { color: var(--accent); opacity: .4; }
.section--light .checklist li,
.section--light .painlist li,
.section--light .note-therapy,
.section--light .lead,
.section--light strong { color: var(--text-on-light-muted); }
.section--light .checklist li strong,
.section--light .lead strong { color: var(--text-on-light); }

/* ---------- 11. SPLIT (image + text) --------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4 / 5; background: linear-gradient(160deg, var(--bg-elev-2), var(--bg-elev));
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.media-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; gap: .5rem;
  color: var(--text-dim); padding: 2rem;
}
.media-placeholder svg { width: 44px; height: 44px; opacity: .5; }
.media-placeholder span { font-size: .85rem; letter-spacing: .04em; }

/* Full-width cinematic image band */
.image-band { position: relative; height: clamp(300px, 44vw, 520px); overflow: hidden; }
.image-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,12,0.82), rgba(12,12,12,0.25) 55%, rgba(12,12,12,0.55)); }
.image-band__inner { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; }
.image-band__inner .wrap { width: 100%; padding-block: clamp(1.6rem, 4vw, 3rem); }
.image-band__caption { max-width: 620px; }
.image-band__caption h2 { color: var(--white); }
.image-band__caption p { color: rgba(245,245,245,0.85); margin-top: .8rem; }

/* ---------- 12. STAT / VALUE STRIP ------------------------------------------ */
.valuestrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.valuestrip > div { background: var(--bg); padding: 1.6rem 1.3rem; }
.valuestrip h3 { font-size: 1.05rem; color: var(--text); }
.valuestrip p { font-size: .9rem; margin-top: .35rem; }
@media (max-width: 760px) { .valuestrip { grid-template-columns: 1fr 1fr; } }

/* ---------- 13. TESTIMONIAL ------------------------------------------------- */
.quote {
  max-width: 820px; margin-inline: auto; text-align: center; position: relative; padding-top: 2.5rem;
}
.quote::before {
  content: "\201C"; position: absolute; top: -.6rem; left: 50%; transform: translateX(-50%);
  font-size: 5rem; line-height: 1; color: var(--gold); opacity: .55;
}
.quote blockquote { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 300; line-height: 1.45; color: var(--text); }
.quote figcaption { margin-top: 1.4rem; font-size: .9rem; letter-spacing: .04em; color: var(--text-dim); }
.quote figcaption strong { color: var(--gold); font-weight: 500; }

/* ---------- 14. CTA BAND ---------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner {
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(167,77,74,0.30), transparent 65%),
    linear-gradient(180deg, var(--bg-elev), var(--bg-elev-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem); text-align: center;
}
.cta-band h2 { max-width: 720px; margin-inline: auto; }
.cta-band p { max-width: 560px; margin: 1.2rem auto 0; }
.cta-band .hero__actions { justify-content: center; margin-top: 2rem; }

/* ---------- 15. GHL PLACEHOLDER BLOCKS (preview mocks) ---------------------- */
.ghl-embed {
  border: 1px dashed var(--line-strong); border-radius: var(--radius); background: var(--bg-elev);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.ghl-embed__tag {
  display: inline-block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,162,75,0.35); border-radius: 999px; padding: .25rem .7rem; margin-bottom: 1.2rem;
}
/* dummy form */
.mock-form { display: grid; gap: 1rem; max-width: 560px; }
.mock-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .mock-form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .82rem; color: var(--text-muted); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--bg-elev-2); border: 1px solid var(--line-strong); color: var(--text); font: inherit; font-size: .95rem;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }

/* dummy calendar */
.mock-cal { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.4rem; }
@media (max-width: 720px){ .mock-cal { grid-template-columns: 1fr; } }
.mock-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .4rem; }
.mock-cal__grid span { aspect-ratio: 1; display: grid; place-items: center; font-size: .82rem; border-radius: 8px; color: var(--text-muted); background: var(--bg-elev-2); }
.mock-cal__grid span.is-open { background: rgba(167,77,74,0.18); color: #e6a8a4; cursor: pointer; }
.mock-cal__grid span.is-head { background: none; color: var(--text-dim); font-size: .7rem; letter-spacing: .08em; }
.mock-cal__slots { display: grid; gap: .6rem; align-content: start; }
.mock-cal__slots .slot { padding: .7rem 1rem; border: 1px solid var(--line-strong); border-radius: 999px; text-align: center; font-size: .9rem; color: var(--text-muted); transition: border-color .2s, color .2s; }
.mock-cal__slots .slot:hover { border-color: var(--gold); color: var(--text); }

/* ---------- 16. BLOG -------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 920px){ .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.post-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.post-card__thumb { aspect-ratio: 16 / 10; background: linear-gradient(150deg, var(--accent), #6f3633); display: grid; place-items: center; color: rgba(255,255,255,0.7); overflow: hidden; }
.post-card__thumb svg { width: 40px; height: 40px; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.post-card__meta { font-size: .78rem; letter-spacing: .06em; color: var(--text-dim); text-transform: uppercase; }
.post-card h3 { font-size: 1.18rem; }
.post-card__excerpt { font-size: .92rem; }
.post-card__more { margin-top: auto; font-size: .9rem; color: var(--gold); font-weight: 500; }

/* Article (blog post template) */
.article { max-width: 740px; margin-inline: auto; }
.article header { text-align: center; margin-bottom: 2.5rem; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.article__meta { margin-top: 1rem; font-size: .85rem; color: var(--text-dim); letter-spacing: .04em; }
.article__hero { aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, var(--accent), #5e2f2c); margin-bottom: 2.5rem; display: grid; place-items: center; color: rgba(255,255,255,.6); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__body { font-size: 1.06rem; }
.article__body > * + * { margin-top: 1.3rem; }
.article__body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.6rem; color: var(--text); }
.article__body h3 { margin-top: 2rem; color: var(--text); }
.article__body p { color: var(--text-muted); }
.article__body ul { padding-left: 1.3rem; color: var(--text-muted); display: grid; gap: .5rem; }
.article__body blockquote {
  border-left: 3px solid var(--gold); padding: .4rem 0 .4rem 1.4rem; margin-left: 0;
  font-size: 1.15rem; font-style: italic; color: var(--text);
}
.article__body strong { color: var(--text); }

/* ---------- 17. FOOTER ------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--line); background: #0e0d0d; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.2rem; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 280px; }
.footer-col { text-align: center; }
.footer-col h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1rem; font-weight: 500; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a { font-size: .92rem; color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-bottom p { font-size: .82rem; color: var(--text-dim); }
.footer-bottom .heart { color: var(--accent); }
.footer-bottom .sub { letter-spacing: .2em; text-transform: uppercase; font-size: .7rem; }

/* ---------- 18. MOTION (respectful) ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 19. SMALL UTILITIES --------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--section-y); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color:#fff; padding:.6rem 1rem; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }
.note-therapy { font-size: .85rem; color: var(--text-dim); border-left: 2px solid var(--sage); padding-left: 1rem; }
