/* ============================================================
   Weight Loss Clinic Compare — design system
   Rose + cream, soft editorial · plum dark mode
   Display: Nunito Sans · Body: PT Serif
   ============================================================ */

:root {
  --bg: #fdf6f0;
  --bg-deep: #f9ede4;
  --surface: #fffdfb;
  --surface-2: #fbf1ea;
  --ink: #46212f;
  --ink-soft: #6e4756;
  --muted: #9a7383;
  --line: #f0dcd2;
  --line-strong: #e5c8bc;
  --accent: #e11d48;
  --accent-2: #be123c;
  --accent-soft: #fce9ed;
  --accent-ink: #ffffff;
  --star: #d97706;
  --ok: #1a7f4b;
  --pill-bg: #f7e4dc;
  --shadow: 0 10px 30px rgba(120, 45, 70, 0.08);
  --shadow-lift: 0 16px 44px rgba(120, 45, 70, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "PT Serif", Georgia, "Times New Roman", serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #241323;
    --bg-deep: #1d0f1c;
    --surface: #2e1a2d;
    --surface-2: #382138;
    --ink: #f8ecf1;
    --ink-soft: #dcbccb;
    --muted: #ab8298;
    --line: #472b45;
    --line-strong: #5b3a58;
    --accent: #fb7185;
    --accent-2: #f43f5e;
    --accent-soft: rgba(251, 113, 133, 0.13);
    --accent-ink: #33121c;
    --star: #fbbf24;
    --ok: #4ade80;
    --pill-bg: #432941;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lift: 0 16px 44px rgba(0, 0, 0, 0.45);
  }
}

[data-theme="dark"] {
  --bg: #241323;
  --bg-deep: #1d0f1c;
  --surface: #2e1a2d;
  --surface-2: #382138;
  --ink: #f8ecf1;
  --ink-soft: #dcbccb;
  --muted: #ab8298;
  --line: #472b45;
  --line-strong: #5b3a58;
  --accent: #fb7185;
  --accent-2: #f43f5e;
  --accent-soft: rgba(251, 113, 133, 0.13);
  --accent-ink: #33121c;
  --star: #fbbf24;
  --ok: #4ade80;
  --pill-bg: #432941;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lift: 0 16px 44px rgba(0, 0, 0, 0.45);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .btn, .badge, .pill, nav, .eyebrow, th, .brand, .card-kicker {
  font-family: var(--font-display);
}
h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); margin: 0 0 0.6em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; }
a { color: var(--accent-2); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent); }
img, svg { max-width: 100%; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-deep); }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-intro { max-width: 44em; color: var(--ink-soft); }
:target { scroll-margin-top: 90px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 900;
  font-size: 1.08rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand span em { font-style: normal; color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 0.35rem; }
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}
.main-nav a:hover { background: var(--accent-soft); color: var(--accent-2); }
.main-nav a.nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
  margin-left: 0.3rem;
}
.main-nav a.nav-cta:hover { background: var(--accent-2); color: var(--accent-ink); }
.header-tools { display: flex; align-items: center; gap: 0.4rem; }
.theme-toggle, .nav-burger {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover, .nav-burger:hover { border-color: var(--accent); }
.nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-burger { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.75rem 1.25rem 1.1rem;
    gap: 0.15rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 0.8rem; border-radius: var(--radius-sm); }
  .main-nav a.nav-cta { margin: 0.4rem 0 0; text-align: center; }
}

/* ---------- hero ---------- */
.hero { padding: 4rem 0 2.5rem; text-align: center; }
.hero .eyebrow { font-size: 0.82rem; }
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  max-width: 46em;
  margin: 0 auto 1.6rem;
  font-size: 1.14rem;
  color: var(--ink-soft);
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.stat-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.stat-chip strong { color: var(--accent-2); font-weight: 900; }

/* our-pick ribbon (above the fold) */
.pick-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-align: left;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lift);
  max-width: 880px;
  margin: 0 auto;
}
.pick-ribbon .pr-copy { flex: 1 1 24rem; }
.pick-ribbon .pr-kicker {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.pick-ribbon .pr-title { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; margin: 0.15rem 0; }
.pick-ribbon p { margin: 0; font-size: 0.98rem; opacity: 0.95; }
.pick-ribbon .btn-light {
  background: #fff;
  color: var(--accent-2);
  white-space: nowrap;
}
.pick-ribbon .btn-light:hover { background: #ffe9ee; color: var(--accent-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.68rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-2); color: var(--accent-ink); }
.btn-outline { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-2); }
.btn-small { padding: 0.45rem 1rem; font-size: 0.86rem; }

/* ---------- service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.clinic-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}
.clinic-card:hover { box-shadow: var(--shadow-lift); }
.clinic-card.is-pick { border: 2px solid var(--accent); }
.card-flag {
  position: absolute;
  top: -0.85rem;
  left: 1.2rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
}
.card-kicker { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.clinic-card h3 { margin: 0; }
.clinic-card h3 a { color: inherit; text-decoration: none; }
.clinic-card h3 a:hover { color: var(--accent-2); }
.card-reg { font-size: 0.85rem; color: var(--muted); font-family: var(--font-display); }
.service-list { list-style: none; margin: 0.2rem 0 0.4rem; padding: 0; }
.service-list li {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  padding: 0.32rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.service-list li:last-child { border-bottom: 0; }
.service-list .sl-label {
  flex: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  min-width: 5.4em;
}
.card-price { font-family: var(--font-display); font-size: 0.92rem; color: var(--ink-soft); margin-top: auto; }
.card-price strong { font-size: 1.15rem; color: var(--ink); }

/* ---------- pills / badges ---------- */
.pill {
  display: inline-block;
  background: var(--pill-bg);
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.6rem;
  margin-right: 0.3rem;
  white-space: nowrap;
}
.pill-accent { background: var(--accent-soft); color: var(--accent-2); }
.badge-rec {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.7rem;
  text-transform: uppercase;
}

/* ---------- comparison table ---------- */
.table-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin: 1.4rem 0 0.9rem;
  font-family: var(--font-display);
}
.table-tools input[type="search"] {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.92rem;
}
.table-tools input[type="search"]:focus { outline: 2px solid var(--accent); border-color: transparent; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.filter-chip[aria-pressed="true"] {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-2);
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
table.compare {
  border-collapse: collapse;
  width: 100%;
  min-width: 960px;
  font-size: 0.93rem;
}
table.compare th {
  text-align: left;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  padding: 0.85rem 0.9rem;
  border-bottom: 2px solid var(--line-strong);
  position: sticky;
  top: 0;
}
table.compare td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr:hover { background: var(--surface-2); }
tr.row-pick { background: var(--accent-soft); }
tr.row-pick:hover { background: var(--accent-soft); }
tr.row-pick td { border-bottom: 2px solid var(--accent); }
.clinic-cell .cc-name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; }
.clinic-cell .cc-name a { color: inherit; text-decoration: none; }
.clinic-cell .cc-name a:hover { color: var(--accent-2); }
.clinic-cell .cc-reg { font-size: 0.8rem; color: var(--muted); font-family: var(--font-display); }
.svc-cell { font-size: 0.88rem; color: var(--ink-soft); font-family: var(--font-display); max-width: 15rem; }
.price-now { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; color: var(--ink); white-space: nowrap; }
.price-promo { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; color: var(--accent-2); white-space: nowrap; }
.price-note, .code-note { display: block; font-size: 0.76rem; color: var(--muted); font-family: var(--font-display); white-space: nowrap; }
.code-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  background: var(--pill-bg);
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
  padding: 0.12rem 0.5rem;
}
.table-note { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; max-width: 60em; }
.table-caveat { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
.last-checked { font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- TWC pick story ---------- */
.pick-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-lift);
}
.pick-facts {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.pick-facts h3 { font-size: 1rem; }
.pick-facts ul { list-style: none; margin: 0; padding: 0; }
.pick-facts li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line-strong);
  font-size: 0.94rem;
  display: flex;
  gap: 0.5rem;
}
.pick-facts li:last-child { border-bottom: 0; }
.pick-facts .tick { color: var(--ok); font-weight: 900; flex: none; }
@media (max-width: 780px) {
  .pick-story { grid-template-columns: 1fr; padding: 1.4rem; }
}

/* ---------- aftercare checklist ---------- */
.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.aftercare-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}
.aftercare-item h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.aftercare-item p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 1.6rem auto 0; }
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  padding: 0;
  overflow: hidden;
}
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-weight: 900;
  color: var(--accent);
  font-size: 1.2rem;
  flex: none;
}
details.faq-item[open] summary::after { content: "–"; }
details.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-a { padding: 1rem 1.3rem; color: var(--ink-soft); }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- blog cards ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.post-card:hover { box-shadow: var(--shadow-lift); }
.post-card h3 { margin: 0; font-size: 1.12rem; }
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h3 a:hover { color: var(--accent-2); }
.post-meta { font-family: var(--font-display); font-size: 0.8rem; color: var(--muted); }
.post-card p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.post-card .read-more {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
}

/* ---------- article pages ---------- */
.article-hero { padding: 3rem 0 1rem; }
.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-2); }
.article-meta { font-family: var(--font-display); font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
.article-body { max-width: 760px; margin: 0 auto; padding: 1rem 0 3rem; }
.article-body h2 { margin-top: 2.2em; }
.article-body h3 { margin-top: 1.8em; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 0.4em; }
.article-body table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
.article-body table th {
  font-family: var(--font-display);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  background: var(--surface-2);
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 2px solid var(--line-strong);
}
.article-body table td { padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-body .table-scroll { margin: 1.4rem 0; }
.article-body table { min-width: 620px; }

/* callout (key takeaway) */
.callout {
  background: var(--accent-soft);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
  font-size: 0.98rem;
}
.callout strong:first-child, .callout .callout-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--accent-2);
}
.callout p:last-child { margin-bottom: 0; }

/* CTA box (The Weight Clinic) */
.cta-box {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lift);
}
.cta-box h3, .cta-box .cta-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}
.cta-box p { margin: 0 0 1rem; font-size: 0.98rem; opacity: 0.95; }
.cta-box .btn-light {
  background: #fff;
  color: var(--accent-2);
}
.cta-box .btn-light:hover { background: #ffe9ee; color: var(--accent-2); }
.cta-inline {
  font-family: var(--font-display);
  font-weight: 800;
}

/* byline */
.byline {
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1rem;
}

/* ---------- static pages ---------- */
.page-body { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.25rem 3.5rem; }
.page-body h1 { margin-bottom: 0.4em; }
.page-lede { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 2.8rem 0 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-compliance {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
}
.footer-compliance p { font-size: 0.86rem; margin-bottom: 0.8em; }
.footer-compliance p:last-child { margin-bottom: 0; }
.footer-compliance strong { font-family: var(--font-display); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand-blurb { font-size: 0.9rem; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 0.18rem 0;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-email { font-family: var(--font-display); font-weight: 700; }
.footer-legal {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- misc responsive ---------- */
@media (max-width: 720px) {
  .section { padding: 2.4rem 0; }
  .hero { padding: 2.6rem 0 2rem; }
  body { font-size: 1rem; }
  .pick-ribbon { padding: 1.1rem 1.2rem; }
}
