/* ==========================================================================
   Health & Wellness Talk — site.css
   --------------------------------------------------------------------------
   EDITING THIS FILE
   Everything about the look of the site is controlled by the variables in the
   :root block directly below. Change a colour or a font there and it updates
   across all pages at once. You do not need to touch anything further down.
   ========================================================================== */

:root {
  /* --- Brand colours ------------------------------------------------------ */
  --cream:        #FBF8F3;   /* page background                               */
  --cream-deep:   #F3EEE5;   /* alternating section background                */
  --white:        #FFFFFF;   /* cards                                         */
  --sage:         #6E8F6B;   /* primary brand green                           */
  --sage-dark:    #4F6C4D;   /* hover / darker green                          */
  --sage-soft:    #E4EBE1;   /* soft green wash                               */
  --teal:         #3F6F6B;   /* secondary accent                              */
  --teal-soft:    #E0EBE9;
  --accent:       #C2673F;   /* CTA / button colour (terracotta)              */
  --accent-dark:  #A5522E;   /* CTA hover                                     */
  --accent-soft:  #F8ECE4;
  --ink:          #2C332C;   /* body text                                     */
  --ink-soft:     #5C6660;   /* secondary text                                */
  --line:         #E3DED3;   /* borders and rules                             */

  /* --- Type --------------------------------------------------------------- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* --- Layout ------------------------------------------------------------- */
  --wrap:         1140px;    /* max content width                             */
  --wrap-narrow:  760px;     /* article reading width                         */
  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 1px 2px rgba(44,51,44,.04), 0 6px 20px rgba(44,51,44,.06);
  --shadow-lift:  0 2px 6px rgba(44,51,44,.06), 0 16px 40px rgba(44,51,44,.10);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.22; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.08rem; }
p  { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.3em; padding-left: 1.35em; }
li { margin-bottom: .5em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --- Layout helpers ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(3rem, 7vw, 5.25rem) 0; }
.section-tint { background: var(--cream-deep); }
.section-sage { background: var(--sage-soft); }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: .7rem;
}
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.text-center { text-align: center; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .82rem 1.5rem; border-radius: 999px; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  text-align: center; line-height: 1.3;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover  { background: var(--accent-dark); color: #fff; }
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--sage-dark); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage); color: #fff; }
.btn-light   { background: #fff; color: var(--sage-dark); }
.btn-light:hover { background: var(--cream-deep); color: var(--sage-dark); }
.btn-sm { padding: .58rem 1.1rem; font-size: .9rem; }
.btn-block { display: block; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row.center { justify-content: center; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  background: rgba(251,248,243,.94); backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60;
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--ink); letter-spacing: -.015em; }
.brand-tag { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav a {
  text-decoration: none; color: var(--ink); font-size: .9rem; font-weight: 500;
  padding: .5rem .55rem; border-radius: 8px; white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--sage-soft); color: var(--sage-dark); }
.nav .btn { margin-left: .5rem; }
.nav .btn:hover { background: var(--accent-dark); color: #fff; }
.nav-toggle {
  margin-left: auto; display: none; background: transparent; border: 1px solid var(--line);
  border-radius: 10px; padding: .5rem .7rem; cursor: pointer; color: var(--ink); font-size: 1.2rem; line-height: 1;
}
@media (max-width: 1150px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; inset: 74px 0 auto; background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: .6rem 22px 1.2rem; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .78rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin: .9rem 0 0; border-bottom: 0; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero { background: var(--cream); padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero h1 { margin-bottom: .55em; }
.hero p.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 34em; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.hero-img img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.hero-note { margin-top: 1.4rem; font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-img { order: -1; } }

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .18s ease, transform .18s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--cream-deep); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.card-body h3 a { text-decoration: none; color: var(--ink); }
.card-body h3 a:hover { color: var(--sage-dark); }
.card-body p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1rem; }
.card-body .card-foot { margin-top: auto; }
.card-link { text-decoration: none; font-weight: 600; font-size: .92rem; color: var(--sage-dark); }
.card-link::after { content: " →"; }
.tag {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-soft); padding: .28rem .6rem; border-radius: 999px; margin-bottom: .7rem;
  align-self: flex-start;
}
.tag-free  { color: var(--sage-dark); background: var(--sage-soft); }
.tag-paid  { color: var(--accent-dark); background: var(--accent-soft); }

/* Goal cards (homepage categories) */
.goal-card { position: relative; }
.goal-card .card-img { aspect-ratio: 16/10; }
.goal-card .card-body h3 { font-size: 1.3rem; }

/* --- Lead magnet / email capture ------------------------------------------ */
.optin {
  background: var(--sage); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.25rem); text-align: center;
}
.optin h2, .optin h3 { color: #fff; }
.optin p { color: rgba(255,255,255,.9); max-width: 46em; margin-inline: auto; }
.optin-form { display: flex; gap: .7rem; max-width: 520px; margin: 1.6rem auto .9rem; flex-wrap: wrap; }
.optin-form input[type="email"], .optin-form input[type="text"] {
  flex: 1 1 240px; padding: .85rem 1.1rem; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-size: 1rem; min-width: 0;
}
.optin-form input:focus { outline: none; border-color: var(--accent); }
.optin-fine { font-size: .82rem; color: rgba(255,255,255,.78); margin: 0; }
.optin-fine a { color: #fff; }
.optin-list { list-style: none; padding: 0; margin: 1.5rem auto 0; max-width: 640px; display: grid; gap: .4rem 1.4rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: left; }
.optin-list li { position: relative; padding-left: 1.5rem; color: rgba(255,255,255,.94); font-size: .95rem; }
.optin-list li::before { content: "✓"; position: absolute; left: 0; color: #fff; font-weight: 700; }

/* Compact inline signup used inside articles and sidebars */
.optin-compact { background: var(--sage-soft); border: 1px solid #cfdbcb; border-radius: var(--radius); padding: 1.6rem 1.5rem; text-align: center; }
.optin-compact h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.optin-compact p { color: var(--ink-soft); font-size: .95rem; }
.optin-compact .optin-form { margin-bottom: .6rem; }
.optin-compact .optin-form input { border: 1px solid var(--line); }
.optin-compact .optin-fine { color: var(--ink-soft); }
.optin-compact .optin-fine a { color: var(--sage-dark); }

/* --- Article -------------------------------------------------------------- */
.article-head { padding: 2.2rem 0 1.4rem; }
.article-head h1 { max-width: 20ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; font-size: .88rem; color: var(--ink-soft); margin-top: .9rem; }
.article-hero { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 2.4rem; }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 980px) { .article-layout { grid-template-columns: 1fr; } .sidebar { order: 2; } }
.prose { font-size: 1.09rem; }
.prose > h2 { margin-top: 2.4em; scroll-margin-top: 92px; }
.prose > h3 { margin-top: 1.9em; }
.prose > h2:first-child { margin-top: 1em; }
.prose .lead { font-size: 1.22rem; line-height: 1.62; color: var(--ink-soft); margin-bottom: 1.6em; }
.prose figure { margin: 2rem 0; }
.prose figure img { border-radius: var(--radius); }
.prose figcaption { font-size: .86rem; color: var(--ink-soft); margin-top: .6rem; text-align: center; }

/* Table of contents */
.toc { background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-bottom: 2.4rem; }
.toc h2 { font-size: 1rem !important; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .1em; margin: 0 0 .7rem !important; color: var(--ink-soft); }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .35em; }
.toc a { color: var(--ink); text-decoration: none; font-size: .96rem; }
.toc a:hover { color: var(--accent-dark); text-decoration: underline; }

/* Callouts */
.callout { border-radius: var(--radius); padding: 1.25rem 1.4rem; margin: 2rem 0; border-left: 5px solid; }
.callout h4 { margin-bottom: .35rem; font-family: var(--font-body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.callout p:last-child { margin-bottom: 0; }
.callout-tip { background: var(--sage-soft); border-color: var(--sage); }
.callout-tip h4 { color: var(--sage-dark); }
.callout-note { background: var(--cream-deep); border-color: var(--line); }
.callout-note h4 { color: var(--ink-soft); }
.callout-medical { background: var(--teal-soft); border-color: var(--teal); font-size: .95rem; color: var(--ink-soft); }

/* Inline CTA */
.inline-cta {
  background: var(--accent-soft); border: 1px dashed #e0b79f; border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem; margin: 2.4rem 0; text-align: center;
}
.inline-cta h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .11em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: .5rem; }
.inline-cta p { color: var(--ink); margin-bottom: 1.1rem; }

/* Affiliate pick block */
.pick {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem; margin: 2.2rem 0; box-shadow: var(--shadow);
}
.pick-label {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  background: var(--sage); color: #fff; padding: .3rem .72rem; border-radius: 999px; margin-bottom: .85rem;
}
.pick h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.pick p { font-size: 1rem; margin-bottom: 1rem; }
.pick ul { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .3rem; }
.pick ul li { position: relative; padding-left: 1.6rem; font-size: .96rem; margin: 0; }
.pick ul.pros li::before { content: "+"; position: absolute; left: .35rem; color: var(--sage); font-weight: 700; }
.pick ul.cons li::before { content: "–"; position: absolute; left: .35rem; color: var(--accent); font-weight: 700; }
.pick .btn { margin-top: .3rem; }

/* Comparison table */
.table-wrap { overflow-x: auto; margin: 2rem 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 560px; }
table.cmp th, table.cmp td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.cmp thead th { background: var(--cream-deep); font-family: var(--font-body); font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
table.cmp tbody tr:last-child td { border-bottom: 0; }

/* Affiliate + medical notices */
.disclosure-inline {
  font-size: .85rem; color: var(--ink-soft); background: var(--cream-deep);
  border-radius: 10px; padding: .7rem 1rem; margin-bottom: 2rem;
}
.disclosure-inline a { color: var(--sage-dark); }

/* Author box */
.author-box { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--cream-deep); border-radius: var(--radius); padding: 1.4rem 1.5rem; margin: 3rem 0 0; }
.author-box .avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; flex-shrink: 0; }
.author-box p { font-size: .93rem; color: var(--ink-soft); margin: 0; }
.author-box strong { color: var(--ink); display: block; font-size: 1rem; margin-bottom: .2rem; }

/* --- Sidebar -------------------------------------------------------------- */
.sidebar { position: sticky; top: 96px; display: grid; gap: 1.5rem; }
.widget { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.widget h3 { font-size: 1.02rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .09em; color: var(--ink-soft); margin-bottom: .9rem; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { margin-bottom: .65rem; padding-bottom: .65rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
.widget li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.widget a { text-decoration: none; color: var(--ink); }
.widget a:hover { color: var(--accent-dark); }
.widget .optin-compact { padding: 0; background: none; border: 0; text-align: left; }
.widget .optin-form { flex-direction: column; margin: .9rem 0 .5rem; max-width: none; }
.widget .optin-form input[type="email"] { flex: 0 0 auto; width: 100%; border-radius: 999px; }
.widget .optin-form .btn { width: 100%; }

/* --- Ad slots (leave empty until an ad network is connected) --------------- */
.ad-slot { margin: 2.5rem auto; text-align: center; min-height: 0; }
.ad-slot:empty { display: none; }

/* --- Breadcrumbs ---------------------------------------------------------- */
.breadcrumbs { font-size: .85rem; color: var(--ink-soft); padding: 1rem 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.breadcrumbs li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--sage-dark); text-decoration: underline; }

/* --- Printable shop ------------------------------------------------------- */
.product-card .card-img { aspect-ratio: 4/5; background: var(--cream-deep); display: grid; place-items: center; }
.product-card .card-body { padding: 1.1rem 1.15rem 1.25rem; }
.product-card h3 { font-size: 1.05rem; }
.product-card p { font-size: .9rem; margin-bottom: .9rem; }
.price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.price small { font-family: var(--font-body); font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-top: auto; }
.mock {
  width: 78%; aspect-ratio: 3/4; background: #fff; border: 1px solid var(--line); border-radius: 6px;
  box-shadow: 0 8px 22px rgba(44,51,44,.10); padding: 12% 14%; display: flex; flex-direction: column; gap: 7%;
}
.mock span { display: block; height: 6px; border-radius: 3px; background: var(--sage-soft); }
.mock span:nth-child(1) { width: 62%; height: 10px; background: var(--sage); }
.mock span:nth-child(2) { width: 100%; }
.mock span:nth-child(3) { width: 88%; }
.mock span:nth-child(4) { width: 94%; }
.mock span:nth-child(5) { width: 70%; }
.mock span:nth-child(6) { width: 100%; }
.mock span:nth-child(7) { width: 80%; }

/* --- Forms ---------------------------------------------------------------- */
.form-field { margin-bottom: 1.15rem; }
.form-field label { display: block; font-weight: 600; font-size: .93rem; margin-bottom: .35rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .78rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-soft); }
.form-note { font-size: .86rem; color: var(--ink-soft); }

/* --- Legal / long-form text pages ----------------------------------------- */
.legal h2 { margin-top: 2.4em; }
.legal .placeholder {
  background: #FFF6DC; border: 1px dashed #D9BE6A; border-radius: 6px;
  padding: .1em .45em; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; color: #6B5312;
}
.legal-note {
  background: #FFF6DC; border-left: 5px solid #D9BE6A; border-radius: var(--radius);
  padding: 1.2rem 1.4rem; margin: 2rem 0; font-size: .95rem;
}
.legal-note strong { color: #6B5312; }

/* --- Pagination / listing ------------------------------------------------- */
.filter-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.2rem; }
.filter-row a {
  text-decoration: none; font-size: .9rem; font-weight: 500; padding: .48rem 1rem;
  border-radius: 999px; border: 1px solid var(--line); color: var(--ink); background: #fff;
}
.filter-row a:hover, .filter-row a.is-active { background: var(--sage); border-color: var(--sage); color: #fff; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: #2C332C; color: #CFD6CD; padding: clamp(2.75rem, 6vw, 4rem) 0 2rem; margin-top: 4rem; }
.site-footer a { color: #E6EBE3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; font-size: .93rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.2rem; }
.footer-brand p { font-size: .92rem; color: #A9B3A7; margin-top: .6rem; }
.footer-bottom { border-top: 1px solid #3D473D; margin-top: 2.5rem; padding-top: 1.5rem; font-size: .85rem; color: #9AA598; display: grid; gap: .8rem; }
.footer-bottom p { margin: 0; }

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .sidebar, .inline-cta, .optin, .optin-compact, .ad-slot, .nav-toggle { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .article-layout { grid-template-columns: 1fr; }
}

/* --- Motion preferences --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
