/* ==========================================================================
   [my] Wellness project — Design System
   Source of truth: Web Style Guide (Sleep Well Edition)
   Built static. Deploy: GitHub → Cloudflare Pages.
   --------------------------------------------------------------------------
   Everything a page needs lives here:
   - Design tokens (colour, type, spacing, radius, shadow)
   - Base element styles
   - Typographic scale (H1–H5, body, overline, quote, caption)
   - Components (buttons, cards, pricing card, swatches, layout containers)
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. FONTS
   Newsreader (serif, headings) + Geist (sans, body) load from Google Fonts.
   Another Passion (script) is NOT on Google Fonts — drop the font file into
   /assets/fonts/ and the @font-face below picks it up. Until then it falls
   back gracefully to a cursive. Flagged for Phil.
--------------------------------------------------------------------------- */
@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,300;1,6..72,400;1,6..72,600&family=Geist:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Another Passion';
  src: url('../assets/fonts/AnotherPassion.woff2') format('woff2'),
       url('../assets/fonts/AnotherPassion.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------------
   2. DESIGN TOKENS
--------------------------------------------------------------------------- */
:root {
  /* --- Primary palette (60%) --- */
  --raven:        #423D3B;   /* primary text / dark surfaces */
  --bright-white: #F5F5F7;   /* primary background (style guide RGB typo 257 corrected to 247) */
  --dewkist:      #C5D2C1;   /* primary accent — sage green, used on buttons */

  /* --- Secondary palette (30%) --- */
  --dark-black:   #1D1D1F;   /* deepest surface */
  --baked:        #867F6D;   /* muted warm grey — secondary / metadata text */

  /* --- Wellness pillars (10% — categorisation only) --- */
  --lilac:        #B0A0C1;   /* Sleep Well */
  --twist-of-lime:#3D5B22;   /* Eat Well */
  --clementine:   #F98B30;   /* Move Well */
  --strawberry:   #E56161;   /* Feel Well */
  --breeze:       #B2D9EA;   /* Be Well */

  /* --- Semantic aliases --- */
  --color-bg:        var(--bright-white);
  --color-text:      var(--raven);
  --color-text-soft: var(--baked);
  --color-accent:    var(--dewkist);
  --color-ink:       var(--dark-black);

  /* --- Type families --- */
  --font-serif:  'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:   'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-script: 'Another Passion', 'Snell Roundhand', 'Brush Script MT', cursive;

  /* --- Type scale (desktop) --- */
  --fs-h1:    4rem;      /* 64px */
  --fs-h2:    3rem;      /* 48px */
  --fs-h3:    2.25rem;   /* 36px */
  --fs-h4:    1.375rem;  /* 22px */
  --fs-h5:    1.125rem;  /* 18px */
  --fs-body-lg: 1.3125rem; /* 21px */
  --fs-body:    1.125rem;  /* 18px */
  --fs-body-sm: 1rem;      /* 16px */
  --fs-overline:0.875rem;  /* 14px */
  --fs-quote:   1.5rem;    /* 24px */
  --fs-caption: 0.8125rem; /* 13px */

  /* --- Spacing scale --- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* --- Layout --- */
  --container-max: 1200px;
  --container-narrow: 760px;   /* readable prose width */
  --quote-max: 680px;

  /* --- Radius / shadow / motion --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-soft: 0 12px 40px rgba(66, 61, 59, 0.08);
  --shadow-card: 0 2px 24px rgba(66, 61, 59, 0.06);
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------------------------
   3. RESET / BASE
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color var(--ease), opacity var(--ease); }
a:hover { opacity: 0.7; }

::selection { background: var(--dewkist); color: var(--raven); }

/* ---------------------------------------------------------------------------
   4. TYPOGRAPHY
   Class names map 1:1 to the style guide's type specimen.
--------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; font-weight: 600; }

h1, .h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.2;
}
.h3-italic {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
}
h4, .h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.3;
}
h5, .h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-h5);
  font-weight: 500;
  line-height: 1.4;
}

p { margin: 0 0 1.2em; }

.body-large {
  font-size: var(--fs-body-lg);
  font-weight: 300;
  line-height: 1.7;
}
.body {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
}
.body-secondary {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--color-text-soft);
}

.overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-overline);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--baked);
}

.quote {
  font-family: var(--font-serif);
  font-size: var(--fs-quote);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  max-width: var(--quote-max);
}

.caption {
  font-size: var(--fs-caption);
  font-weight: 400;
  color: var(--color-text-soft);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
}

/* ---------------------------------------------------------------------------
   5. LAYOUT
--------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3rem, 8vw, var(--space-7)); }
.section--tight { padding-block: clamp(2rem, 5vw, var(--space-5)); }

/* Surfaces */
.surface-dark  { background: var(--raven);      color: var(--bright-white); }
.surface-black { background: var(--dark-black);  color: var(--bright-white); }
.surface-sage  { background: var(--dewkist);     color: var(--raven); }
.surface-soft  { background: #EFEEEB; color: var(--raven); }
.surface-dark .overline,
.surface-black .overline { color: rgba(245,245,247,0.7); }
.surface-dark .body-secondary,
.surface-black .body-secondary { color: rgba(245,245,247,0.7); }

/* Simple responsive column grids */
.grid { display: grid; gap: clamp(1.5rem, 4vw, var(--space-4)); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: var(--space-3); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.mx-auto { margin-inline: auto; }

/* ---------------------------------------------------------------------------
   6. BUTTONS
   Primary = sage fill. Secondary = outline. Tertiary = text link.
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 1.1em 1.9em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--dewkist);
  color: var(--raven);
  border-color: var(--dewkist);
}
.btn--primary:hover { opacity: 1; background: #B5C4B0; border-color: #B5C4B0; }

.btn--secondary {
  background: transparent;
  color: var(--raven);
  border-color: var(--raven);
}
.btn--secondary:hover { opacity: 1; background: var(--raven); color: var(--bright-white); }

.btn--tertiary {
  background: transparent;
  color: var(--raven);
  border-color: transparent;
  padding-inline: 0.25em;
  border-bottom: 1.5px solid currentColor;
  border-radius: 0;
}
.btn--tertiary:hover { opacity: 0.6; }

/* On dark backgrounds */
.surface-dark .btn--secondary,
.surface-black .btn--secondary {
  color: var(--bright-white);
  border-color: rgba(245,245,247,0.6);
}
.surface-dark .btn--secondary:hover,
.surface-black .btn--secondary:hover {
  background: var(--bright-white); color: var(--raven); border-color: var(--bright-white);
}
.surface-dark .btn--tertiary,
.surface-black .btn--tertiary { color: var(--bright-white); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }

/* ---------------------------------------------------------------------------
   7. COMPONENTS
--------------------------------------------------------------------------- */

/* Card */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, var(--space-4));
  box-shadow: var(--shadow-card);
}

/* Colour swatch (style guide) */
.swatch {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.swatch__chip { height: 120px; }
.swatch__meta { padding: var(--space-2); }
.swatch__name { font-family: var(--font-serif); font-size: 1.25rem; margin: 0 0 0.1em; }
.swatch__role { font-size: var(--fs-caption); text-transform: uppercase; letter-spacing: 0.08em; color: var(--baked); margin: 0 0 0.75em; }
.swatch__values { font-size: var(--fs-caption); line-height: 1.6; color: var(--baked); }
.swatch__values span { display: block; }

/* Pricing card */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.75rem, 4vw, var(--space-4));
}
.pricing-card__line {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid #ECEAE6;
}
.pricing-card__line:last-of-type { border-bottom: 0; }
.pricing-card__total {
  font-family: var(--font-serif); font-size: 2rem; margin-top: var(--space-2);
}

/* Eyebrow + heading cluster */
.eyebrow-head > .overline { margin-bottom: var(--space-1); }

/* Type specimen rows */
.specimen { border-top: 1px solid #E4E2DD; padding: var(--space-3) 0; }
.specimen__label { font-size: var(--fs-caption); color: var(--baked); margin-top: var(--space-1); }

/* Divider */
.rule { border: 0; border-top: 1px solid #E4E2DD; margin: var(--space-5) 0; }

/* Pillar chip */
.pillar-chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--fs-caption); text-transform: uppercase; letter-spacing: 0.08em;
}
.pillar-chip::before { content: ""; width: 0.85em; height: 0.85em; border-radius: 50%; background: var(--dot, var(--lilac)); }

/* ---------------------------------------------------------------------------
   8. SITE HEADER / FOOTER (shared shell)
--------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,245,247,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(66,61,59,0.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem; gap: 1.5rem;
}
.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 500; line-height: 1; letter-spacing: -0.01em;
}
.brand-logo small { font-size: 0.55em; vertical-align: super; opacity: 0.7; }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a { font-size: 0.95rem; }
@media (max-width: 640px) { .site-nav a:not(.btn) { display: none; } }

.site-footer {
  background: var(--raven); color: rgba(245,245,247,0.85);
  padding-block: var(--space-5);
  font-size: var(--fs-body-sm);
}
.site-footer a:hover { color: #fff; opacity: 1; }
.site-footer__fine { font-size: var(--fs-caption); color: rgba(245,245,247,0.55); line-height: 1.7; }

/* ---------------------------------------------------------------------------
   8b. PAGE COMPONENTS (added for Wave 1 builds)
--------------------------------------------------------------------------- */

/* Numbered steps (3-step ritual / how it works) */
.steps { display: grid; gap: var(--space-3); counter-reset: step; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .steps--3 { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: var(--space-3); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--dewkist); color: var(--raven);
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  margin-bottom: var(--space-2);
}
.surface-dark .step__num { background: var(--lilac); }
.step h4, .step h3 { margin-bottom: 0.4em; }

/* What's inside — product list */
.pack-list { margin: 0; padding: 0; list-style: none; }
.pack-item {
  display: flex; justify-content: flex-start; align-items: center; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid #ECEAE6;
}
.pack-item:last-child { border-bottom: 0; }
.pack-item__thumb {
  width: 58px; height: 58px; flex: 0 0 58px;
  object-fit: contain; background: transparent;
}
.pack-item__name { font-weight: 500; flex: 1 1 auto; }
.pack-item__price { margin-left: auto; }
.pack-item__meta { display: block; font-size: var(--fs-caption); color: var(--baked); font-weight: 400; margin-top: 0.15rem; }
.pack-item__price { font-family: var(--font-serif); font-size: 1.15rem; white-space: nowrap; }

/* Trust badges */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item { text-align: left; }
.trust-item__badge {
  display: inline-block; font-family: var(--font-sans); font-size: var(--fs-caption);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--twist-of-lime); margin-bottom: 0.5rem;
}

/* FAQ accordion (native details/summary) */
.faq { max-width: var(--container-narrow); }
.faq__item { border-bottom: 1px solid #E4E2DD; }
.faq__item > summary {
  list-style: none; cursor: pointer; padding: 1.25rem 0;
  font-family: var(--font-sans); font-size: var(--fs-h5); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after { content: "+"; font-size: 1.5rem; color: var(--baked); transition: transform var(--ease); }
.faq__item[open] > summary::after { content: "–"; }
.faq__item > summary:hover { opacity: 0.7; }
.faq__answer { padding: 0 0 1.25rem; color: var(--raven); max-width: 60ch; }

/* Eyebrow + price line in hero */
.price-tag {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--font-serif); font-size: 2rem; line-height: 1;
}
.price-tag small { font-family: var(--font-sans); font-size: var(--fs-caption); color: var(--baked); font-weight: 400; }
.surface-dark .price-tag small { color: rgba(245,245,247,0.7); }

/* Feature / hero imagery */
.feature-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); object-fit: cover; }
.feature-img--tall { aspect-ratio: 4 / 5; }
.feature-img--wide { aspect-ratio: 3 / 2; }

/* Plain transparent product shot — no frame, page shines through */
.product-shot { width: 100%; height: auto; display: block; object-fit: contain; background: transparent; box-shadow: none; border-radius: 0; }

/* Inline check list */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.75rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--twist-of-lime); font-weight: 700;
}
.surface-dark .check-list li::before { color: var(--dewkist); }

/* ---------------------------------------------------------------------------
   9. RESPONSIVE TYPE (fluid down for mobile)
--------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --fs-h1: 2.75rem;
    --fs-h2: 2.1rem;
    --fs-h3: 1.7rem;
    --fs-quote: 1.3rem;
    --fs-body-lg: 1.2rem;
  }
}

/* Brand logo (SVG wordmark) */
.brand-logo img { height: 42px; width: auto; display: block; }
.site-footer .brand-logo img { height: 38px; }
@media (max-width: 640px) { .brand-logo img { height: 34px; } }

/* ---------------------------------------------------------------------------
   10. FULL-BLEED HERO  (overlay copy on desktop · image-above-copy on mobile)
--------------------------------------------------------------------------- */
.hero { position: relative; display: flex; align-items: flex-end; min-height: 90vh; overflow: hidden; background: var(--raven); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(29,29,31,0.72) 0%, rgba(29,29,31,0.30) 34%, rgba(29,29,31,0) 64%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.5rem, 7vw, 6rem); }
.hero__copy { max-width: 36rem; color: var(--bright-white); }
.hero__copy h1, .hero__copy .h1 { color: var(--bright-white); }
.hero__copy .overline { color: rgba(245,245,247,0.85); }
.hero__copy .body-large { color: rgba(245,245,247,0.92); }
.hero__copy .price-tag { color: var(--bright-white); }
.hero__copy .btn--secondary { color: var(--bright-white); border-color: rgba(245,245,247,0.6); }
.hero__copy .btn--secondary:hover { background: var(--bright-white); color: var(--raven); border-color: var(--bright-white); }

/* Header overlaying a hero (transparent, white marks) */
.site-header--overlay { position: absolute; top: 0; left: 0; right: 0; background: transparent; backdrop-filter: none; border-bottom: 0; }
.site-header--overlay::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(29,29,31,0.38), rgba(29,29,31,0)); }
.site-header--overlay .site-nav a:not(.btn) { color: var(--bright-white); }

@media (max-width: 768px) {
  .hero { display: block; min-height: 0; background: var(--bright-white); }
  .hero__media { position: static; }
  .hero__media img { height: auto; aspect-ratio: 4 / 3; }
  .hero__scrim { display: none; }
  .hero__inner { background: var(--bright-white); padding-block: var(--space-4); }
  .hero__copy { color: var(--raven); max-width: none; }
  .hero__copy h1, .hero__copy .h1 { color: var(--raven); }
  .hero__copy .overline { color: var(--lilac); }
  .hero__copy .body-large, .hero__copy .price-tag { color: var(--raven); }
  .hero__copy .btn--secondary { color: var(--raven); border-color: var(--raven); }
  .hero__copy .btn-row { flex-direction: column; align-items: stretch; }
  .hero__copy .btn { width: 100%; }
}

/* ---------------------------------------------------------------------------
   11. SLEEP ASSESSMENT QUIZ
--------------------------------------------------------------------------- */
.quiz { max-width: 660px; margin-inline: auto; }
.quiz__card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: clamp(1.5rem, 4vw, var(--space-4)); }
.quiz__progress { height: 6px; background: #ECEAE6; border-radius: 99px; overflow: hidden; margin-bottom: var(--space-3); }
.quiz__bar { height: 100%; background: var(--dewkist); width: 12.5%; transition: width 0.35s var(--ease); }
.quiz__step { font-size: var(--fs-caption); letter-spacing: 0.1em; text-transform: uppercase; color: var(--baked); }
.quiz__q { font-family: var(--font-serif); font-size: var(--fs-h3); line-height: 1.2; margin: 0.4rem 0 var(--space-3); }
.quiz__options { display: grid; gap: 0.75rem; }
.quiz__option {
  text-align: left; font-family: var(--font-sans); font-size: var(--fs-body); color: var(--raven);
  padding: 1rem 1.25rem; border: 1.5px solid #E4E2DD; border-radius: var(--radius-md);
  background: #fff; cursor: pointer; transition: all var(--ease); width: 100%;
}
.quiz__option:hover { border-color: var(--dewkist); background: #FAFBFA; }
.quiz__option.is-selected { border-color: var(--raven); background: var(--dewkist); }
.quiz__nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-3); gap: 1rem; }
.quiz__back { background: none; border: 0; color: var(--baked); font-family: var(--font-sans); font-size: var(--fs-body-sm); cursor: pointer; padding: 0.5rem 0; }
.quiz__back:hover { color: var(--raven); }
.quiz__back[disabled] { opacity: 0; pointer-events: none; }
.quiz__result { text-align: center; }
.quiz__band { font-family: var(--font-serif); font-size: var(--fs-h2); line-height: 1.15; margin: 0.25rem 0 var(--space-2); }
.quiz__break { display: inline-block; background: var(--bright-white); border: 1px solid #E4E2DD; border-radius: 99px; padding: 0.4rem 1rem; margin: 0.35rem; font-size: var(--fs-body-sm); }
.is-hidden { display: none; }

/* ---------------------------------------------------------------------------
   12. ARTICLE / INSIGHT PAGES (pillar + clusters)
--------------------------------------------------------------------------- */
.article { max-width: 760px; margin-inline: auto; }
.article > h2 { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 600; margin-top: var(--space-5); }
.article > h3 { font-family: var(--font-sans); font-size: var(--fs-h4); margin-top: var(--space-4); }
.article p, .article li { font-size: var(--fs-body); line-height: 1.75; }
.article ul, .article ol { padding-left: 1.3rem; margin: 0 0 1.2em; }
.article li { margin-bottom: 0.5rem; }
.article__meta { font-size: var(--fs-caption); letter-spacing: 0.06em; text-transform: uppercase; color: var(--baked); }
.article blockquote { margin: var(--space-4) 0; padding: 0.2rem 0 0.2rem var(--space-3); border-left: 3px solid var(--dewkist);
  font-family: var(--font-serif); font-style: italic; font-size: var(--fs-quote); line-height: 1.5; }
.article img.inline-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); margin: var(--space-4) 0; }

.toc { background: var(--bright-white); border: 1px solid #E4E2DD; border-radius: var(--radius-md); padding: var(--space-3); margin: var(--space-4) 0; }
.toc__title { font-size: var(--fs-caption); letter-spacing: 0.1em; text-transform: uppercase; color: var(--baked); margin-bottom: 0.5rem; }
.toc a { display: block; padding: 0.4rem 0; border-bottom: 1px solid #EFEDE9; font-size: var(--fs-body-sm); }
.toc a:last-child { border-bottom: 0; }
.toc a:hover { color: var(--baked); opacity: 1; padding-left: 0.25rem; }

.cta-band { background: var(--dewkist); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, var(--space-5)); text-align: center; margin: var(--space-5) 0; }
.cta-band h3 { color: var(--raven); margin-bottom: 0.4em; }
.oil-card { border-top: 1px solid #E4E2DD; padding-top: var(--space-3); margin-top: var(--space-3); }
.oil-card h3 { margin-top: 0; }
