/* ====================================================================
   Mounjaro vs Wegovy — design system "Two Corners"
   Orange corner = Mounjaro (#ea580c) · Blue corner = Wegovy (#2563eb)
   Neutral ivory canvas, slate dark mode.
   Archivo (display/UI) + Zilla Slab (body).
   Light = default. Dark via prefers-color-scheme + [data-theme] override.
   ==================================================================== */

:root {
  --bg: #f8f5ee;
  --bg-grad: linear-gradient(115deg, rgba(234,88,12,0.055) 0%, rgba(234,88,12,0) 42%, rgba(37,99,235,0) 58%, rgba(37,99,235,0.055) 100%);
  --panel: #ffffff;
  --panel-2: #fdfaf4;
  --panel-3: #f1ede3;
  --hover: #f5f1e8;
  --line: #e6e0d2;
  --line-strong: #d3cbb8;
  --text: #232733;
  --text-muted: #5d6371;
  --text-faint: #8d92a0;
  --ring-ink: #1f2430;          /* dark "ringside" panel */
  --ring-text: #f4f1ea;

  --mj: #ea580c;                /* Mounjaro — orange corner */
  --mj-strong: #c2410c;
  --mj-soft: rgba(234, 88, 12, 0.09);
  --mj-line: rgba(234, 88, 12, 0.35);

  --wg: #2563eb;                /* Wegovy — blue corner */
  --wg-strong: #1d4ed8;
  --wg-soft: rgba(37, 99, 235, 0.09);
  --wg-line: rgba(37, 99, 235, 0.35);

  --rec-soft: linear-gradient(100deg, rgba(234,88,12,0.07), rgba(37,99,235,0.07));
  --warn: #a16207;
  --warn-soft: rgba(161, 98, 7, 0.10);

  --shadow-sm: 0 1px 2px rgba(31, 36, 48, 0.06), 0 2px 8px rgba(31, 36, 48, 0.05);
  --shadow-md: 0 3px 8px rgba(31, 36, 48, 0.06), 0 14px 36px rgba(31, 36, 48, 0.10);
  --shadow-lg: 0 26px 70px rgba(31, 36, 48, 0.18);

  --radius: 14px;
  --radius-sm: 8px;
  --display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Zilla Slab", "Iowan Old Style", Georgia, serif;
  --t: 160ms ease;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f172a;
    --bg-grad: linear-gradient(115deg, rgba(251,146,60,0.07) 0%, rgba(251,146,60,0) 42%, rgba(96,165,250,0) 58%, rgba(96,165,250,0.07) 100%);
    --panel: #1a2337;
    --panel-2: #16202f;
    --panel-3: #22304a;
    --hover: #223049;
    --line: #2b3a55;
    --line-strong: #3d4f70;
    --text: #e7ecf5;
    --text-muted: #a4b0c4;
    --text-faint: #71809b;
    --ring-ink: #131b2c;
    --ring-text: #eef2f9;

    --mj: #fb923c;
    --mj-strong: #fdba74;
    --mj-soft: rgba(251, 146, 60, 0.13);
    --mj-line: rgba(251, 146, 60, 0.42);

    --wg: #60a5fa;
    --wg-strong: #93c5fd;
    --wg-soft: rgba(96, 165, 250, 0.13);
    --wg-line: rgba(96, 165, 250, 0.42);

    --rec-soft: linear-gradient(100deg, rgba(251,146,60,0.11), rgba(96,165,250,0.11));
    --warn: #fbbf24;
    --warn-soft: rgba(251, 191, 36, 0.12);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.55);
  }
}

[data-theme="dark"] {
  --bg: #0f172a;
  --bg-grad: linear-gradient(115deg, rgba(251,146,60,0.07) 0%, rgba(251,146,60,0) 42%, rgba(96,165,250,0) 58%, rgba(96,165,250,0.07) 100%);
  --panel: #1a2337;
  --panel-2: #16202f;
  --panel-3: #22304a;
  --hover: #223049;
  --line: #2b3a55;
  --line-strong: #3d4f70;
  --text: #e7ecf5;
  --text-muted: #a4b0c4;
  --text-faint: #71809b;
  --ring-ink: #131b2c;
  --ring-text: #eef2f9;
  --mj: #fb923c;
  --mj-strong: #fdba74;
  --mj-soft: rgba(251, 146, 60, 0.13);
  --mj-line: rgba(251, 146, 60, 0.42);
  --wg: #60a5fa;
  --wg-strong: #93c5fd;
  --wg-soft: rgba(96, 165, 250, 0.13);
  --wg-line: rgba(96, 165, 250, 0.42);
  --rec-soft: linear-gradient(100deg, rgba(251,146,60,0.11), rgba(96,165,250,0.11));
  --warn: #fbbf24;
  --warn-soft: rgba(251, 191, 36, 0.12);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.55);
}

/* ==================== base ==================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-grad);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--wg); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--wg-strong); }
img, svg { max-width: 100%; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.small { font-size: 0.85rem; color: var(--text-muted); }

/* accent helpers — orange = Mounjaro, blue = Wegovy. Use deliberately. */
.mj-text { color: var(--mj); }
.wg-text { color: var(--wg); }
.pill-mj, .pill-wg {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
}
.pill-mj { background: var(--mj-soft); color: var(--mj); border: 1px solid var(--mj-line); }
.pill-wg { background: var(--wg-soft); color: var(--wg); border: 1px solid var(--wg-line); }

/* ==================== top bar ==================== */

.topbar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-name .vs-mj { color: var(--mj); }
.brand-name .vs-wg { color: var(--wg); }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
  color: var(--text-muted); text-decoration: none;
  padding: 7px 11px; border-radius: var(--radius-sm); transition: background var(--t), color var(--t);
}
.nav-link:hover { color: var(--text); background: var(--hover); }
.theme-btn, .nav-toggle {
  border: 1px solid var(--line); background: var(--panel);
  color: var(--text); border-radius: var(--radius-sm);
  width: 36px; height: 36px; font-size: 1rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.theme-btn:hover, .nav-toggle:hover { background: var(--hover); }
.nav-toggle { display: none; }

/* ==================== hero — split two-tone ==================== */

.hero { padding: 56px 0 34px; position: relative; }
.hero-eyebrow {
  font-family: var(--display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint);
  text-align: center; margin-bottom: 14px;
}
.hero h1 { text-align: center; max-width: 21ch; margin: 0 auto 14px; }
.hero-sub { text-align: center; max-width: 62ch; margin: 0 auto 26px; color: var(--text-muted); font-size: 1.05rem; }

.corners {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 0;
  max-width: 860px; margin: 0 auto 26px;
}
.corner {
  border: 1px solid var(--line); background: var(--panel);
  padding: 22px 22px 18px; box-shadow: var(--shadow-sm);
}
.corner-mj {
  border-radius: var(--radius) 0 0 var(--radius);
  border-top: 4px solid var(--mj);
  background: linear-gradient(180deg, var(--mj-soft), transparent 55%) var(--panel);
}
.corner-wg {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-top: 4px solid var(--wg);
  background: linear-gradient(180deg, var(--wg-soft), transparent 55%) var(--panel);
  text-align: right;
}
.corner h2 { font-size: 1.3rem; margin-bottom: 2px; }
.corner-mj h2 { color: var(--mj); }
.corner-wg h2 { color: var(--wg); }
.corner .generic { font-size: 0.85rem; color: var(--text-faint); font-style: italic; margin-bottom: 10px; }
.corner-stat { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.corner-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.vs-medallion {
  align-self: center; z-index: 2;
  width: 62px; height: 62px; margin: 0 -14px; border-radius: 50%;
  background: var(--ring-ink); color: var(--ring-text);
  font-family: var(--display); font-weight: 900; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--bg); box-shadow: var(--shadow-md);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center;
  font-family: var(--display); font-size: 0.86rem; color: var(--text-muted);
}
.hero-stats strong { color: var(--text); font-weight: 800; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center;
  margin-top: 22px; padding: 12px 16px;
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  font-family: var(--display); font-size: 0.82rem; color: var(--text-muted);
}
.trust-strip .tick { color: var(--mj); font-weight: 800; margin-right: 5px; }
.trust-strip span:nth-child(even) .tick { color: var(--wg); }

/* ==================== buttons ==================== */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--ring-ink); color: var(--ring-text) !important; }
.btn-mj { background: var(--mj); color: #fff !important; }
.btn-mj:hover { background: var(--mj-strong); }
.btn-wg { background: var(--wg); color: #fff !important; }
.btn-wg:hover { background: var(--wg-strong); }
.btn-ghost { background: transparent; color: var(--text) !important; border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--hover); box-shadow: none; }
.btn-sm { padding: 7px 14px; font-size: 0.85rem; }

/* ==================== sections ==================== */

section { margin: 56px 0; }
.sec-head { max-width: 720px; margin-bottom: 26px; }
.sec-kicker {
  font-family: var(--display); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint);
  display: block; margin-bottom: 8px;
}
.sec-head p { color: var(--text-muted); }

/* ==================== tale of the tape ==================== */

.tape-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow-sm); }
.tape { width: 100%; border-collapse: collapse; min-width: 640px; }
.tape th, .tape td { padding: 13px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.tape tr:last-child th, .tape tr:last-child td { border-bottom: none; }
.tape thead th { font-family: var(--display); font-size: 1.05rem; font-weight: 800; border-bottom: 2px solid var(--line-strong); }
.tape thead th.th-mj { color: var(--mj); background: var(--mj-soft); }
.tape thead th.th-wg { color: var(--wg); background: var(--wg-soft); }
.tape tbody th {
  font-family: var(--display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-faint);
  width: 20%; background: var(--panel-2);
}
.tape td.td-mj { border-left: 3px solid var(--mj-line); }
.tape td.td-wg { border-left: 3px solid var(--wg-line); }

/* ==================== rounds ==================== */

.round {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); box-shadow: var(--shadow-sm);
  padding: 26px 26px 20px; margin-bottom: 22px; position: relative;
}
.round-num {
  position: absolute; top: -14px; left: 22px;
  font-family: var(--display); font-weight: 800; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ring-ink); color: var(--ring-text);
  padding: 5px 14px; border-radius: 999px;
}
.round h3 { font-size: 1.35rem; margin: 6px 0 12px; }
.round-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 14px 0; }
.round-col { border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.95rem; }
.round-col-mj { background: var(--mj-soft); border-left: 3px solid var(--mj); }
.round-col-wg { background: var(--wg-soft); border-left: 3px solid var(--wg); }
.round-col h4 { margin: 0 0 6px; font-size: 0.95rem; }
.round-col-mj h4 { color: var(--mj); }
.round-col-wg h4 { color: var(--wg); }
.round-col ul { margin: 0; padding-left: 18px; }
.round-col li { margin-bottom: 4px; }

.verdict {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--panel-3); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 16px;
  font-size: 0.98rem;
}
.verdict-label {
  flex-shrink: 0; font-family: var(--display); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ring-ink); color: var(--ring-text);
  padding: 4px 10px; border-radius: 6px; margin-top: 2px;
}
.verdict.verdict-mj { border-left: 4px solid var(--mj); }
.verdict.verdict-wg { border-left: 4px solid var(--wg); }
.verdict.verdict-draw { border-left: 4px solid var(--text-faint); }
.verdict p { margin: 0; }

/* ==================== price tables ==================== */

.table-meta {
  display: flex; flex-wrap: wrap; gap: 6px 22px; margin: 0 0 12px;
  font-family: var(--display); font-size: 0.83rem; color: var(--text-muted);
}
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow-sm); }
.price-table { width: 100%; border-collapse: collapse; min-width: 860px; }
.price-table th, .price-table td { padding: 13px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table thead th {
  font-family: var(--display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-faint);
  background: var(--panel-2); border-bottom: 2px solid var(--line-strong);
  white-space: nowrap;
}
.price-table tbody tr { transition: background var(--t); }
.price-table tbody tr:hover { background: var(--hover); }
.prov-name { font-family: var(--display); font-weight: 700; font-size: 0.98rem; }
.prov-name a { color: var(--text); text-decoration: none; }
.prov-name a:hover { text-decoration: underline; }
.prov-reg { font-size: 0.8rem; color: var(--text-faint); margin-top: 2px; }
.price-first { font-family: var(--display); font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.price-note { display: block; font-size: 0.76rem; color: var(--text-faint); font-weight: 400; font-family: var(--body); white-space: normal; }
.price-ongoing { font-family: var(--display); font-weight: 700; white-space: nowrap; }
.code-chip {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.78rem;
  border: 1px dashed var(--line-strong); border-radius: 6px; padding: 2px 8px;
  background: var(--panel-2);
}
.table-mj .code-chip { color: var(--mj); border-color: var(--mj-line); background: var(--mj-soft); }
.table-wg .code-chip { color: var(--wg); border-color: var(--wg-line); background: var(--wg-soft); }
.visit-btn {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.82rem;
  padding: 7px 13px; border-radius: 999px; text-decoration: none; white-space: nowrap;
  border: 1.5px solid var(--line-strong); color: var(--text);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.table-mj .visit-btn:hover { background: var(--mj); border-color: var(--mj); color: #fff; }
.table-wg .visit-btn:hover { background: var(--wg); border-color: var(--wg); color: #fff; }

tr.row-rec { background: var(--rec-soft) !important; }
tr.row-rec td { border-bottom: 2px solid var(--line-strong); }
tr.row-rec .visit-btn { background: var(--ring-ink); border-color: var(--ring-ink); color: var(--ring-text); }
tr.row-rec .visit-btn:hover { opacity: 0.9; }
.badge-rec {
  display: inline-block; margin-left: 8px; vertical-align: 1px;
  font-family: var(--display); font-weight: 800; font-size: 0.68rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: linear-gradient(100deg, var(--mj), var(--wg)); color: #fff;
  padding: 3px 9px; border-radius: 999px;
}
.rec-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }

.honesty {
  margin: 14px 0 0; padding: 12px 16px;
  border-left: 3px solid var(--line-strong); background: var(--panel-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.86rem; color: var(--text-muted);
}

.drug-table-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 34px 0 10px; }
.drug-table-head h3 { font-size: 1.3rem; margin: 0; }

/* ==================== TWC pick / CTA panels ==================== */

.cta-panel {
  background: var(--ring-ink); color: var(--ring-text);
  border-radius: var(--radius); padding: 34px 32px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 6px;
  background: linear-gradient(180deg, var(--mj), var(--wg));
}
.cta-panel::after {
  content: ""; position: absolute; inset: 0 0 0 auto; width: 6px;
  background: linear-gradient(180deg, var(--wg), var(--mj));
}
.cta-panel h2, .cta-panel h3 { color: inherit; }
.cta-panel p { color: color-mix(in srgb, var(--ring-text) 78%, transparent); }
.cta-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.cta-points { list-style: none; margin: 0 0 4px; padding: 0; }
.cta-points li { padding-left: 26px; position: relative; margin-bottom: 9px; }
.cta-points li::before { content: "✓"; position: absolute; left: 2px; font-weight: 800; color: var(--mj); font-family: var(--display); }
.cta-points li:nth-child(even)::before { color: var(--wg); }
.cta-price-cards { display: grid; gap: 12px; }
.cta-price-card {
  border: 1px solid color-mix(in srgb, var(--ring-text) 18%, transparent);
  border-radius: var(--radius-sm); padding: 14px 16px;
  background: color-mix(in srgb, var(--ring-text) 5%, transparent);
}
.cta-price-card .cpc-drug { font-family: var(--display); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.cta-price-card.cpc-mj .cpc-drug { color: var(--mj); }
.cta-price-card.cpc-wg .cpc-drug { color: var(--wg); }
.cta-price-card .cpc-price { font-family: var(--display); font-weight: 800; font-size: 1.5rem; }
.cta-price-card .cpc-sub { font-size: 0.82rem; color: color-mix(in srgb, var(--ring-text) 65%, transparent); }
.code-flash {
  display: inline-block; font-family: var(--display); font-weight: 800;
  border: 1.5px dashed color-mix(in srgb, var(--ring-text) 45%, transparent);
  padding: 4px 12px; border-radius: 8px; letter-spacing: 0.06em;
}

/* in-article CTA box */
.cta-box {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--rec-soft), var(--panel);
  padding: 22px 24px; margin: 28px 0; box-shadow: var(--shadow-sm);
}
.cta-box h3 { margin-bottom: 8px; }
.cta-box p { margin-bottom: 14px; color: var(--text-muted); }
.cta-box .btn { margin-right: 10px; }

/* ==================== callouts (articles) ==================== */

.callout {
  border-left: 4px solid var(--wg); background: var(--wg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 18px; margin: 22px 0; font-size: 0.98rem;
}
.callout-title { font-family: var(--display); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase; display: block; margin-bottom: 6px; color: var(--wg); }
.callout--key { border-left-color: var(--mj); background: var(--mj-soft); }
.callout--key .callout-title { color: var(--mj); }
.callout--warn { border-left-color: var(--warn); background: var(--warn-soft); }
.callout--warn .callout-title { color: var(--warn); }
.callout p:last-child { margin-bottom: 0; }

/* ==================== FAQ ==================== */

.faq { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--panel); margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 15px 18px;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background var(--t);
}
.faq-item summary:hover { background: var(--hover); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 400; font-size: 1.3rem; color: var(--text-faint); flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-body { padding: 14px 18px; font-size: 0.96rem; color: var(--text-muted); }
.faq-body p:last-child { margin-bottom: 0; }

/* ==================== blog cards ==================== */

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.post-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 22px 22px 18px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  border-top: 4px solid var(--mj);
}
.post-card:nth-child(even) { border-top-color: var(--wg); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.post-card h3 a { color: var(--text); text-decoration: none; }
.post-card h3 a:hover { text-decoration: underline; }
.post-card p { font-size: 0.92rem; color: var(--text-muted); flex-grow: 1; }
.post-meta { font-family: var(--display); font-size: 0.78rem; color: var(--text-faint); display: flex; gap: 10px; flex-wrap: wrap; }

/* ==================== article pages ==================== */

.breadcrumbs { font-family: var(--display); font-size: 0.82rem; color: var(--text-faint); margin: 26px 0 10px; }
.breadcrumbs a { color: var(--text-faint); }
.article-head { max-width: 780px; margin-bottom: 8px; }
.article-head h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.byline {
  font-family: var(--display); font-size: 0.84rem; color: var(--text-muted);
  display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 12px 0 30px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.article-body { max-width: 780px; }
.article-body h2 { margin-top: 44px; padding-top: 8px; }
.article-body h3 { margin-top: 28px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 1.1em; }
.article-body li { margin-bottom: 6px; }
.article-body .table-scroll { margin: 22px 0; }
.article-body .price-table { min-width: 640px; }
.article-body table:not(.price-table) { width: 100%; border-collapse: collapse; min-width: 560px; }
.article-body table:not(.price-table) th, .article-body table:not(.price-table) td { padding: 11px 13px; border-bottom: 1px solid var(--line); text-align: left; font-size: 0.93rem; }
.article-body table:not(.price-table) thead th { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); background: var(--panel-2); }

/* ==================== plain pages / forms ==================== */

.page { max-width: 780px; margin: 34px auto 60px; }
.page h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.page h2 { margin-top: 38px; }
.page-lede { font-size: 1.08rem; color: var(--text-muted); }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  padding: 22px 24px; margin: 22px 0; box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 6px; }
.contact-email { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }

/* ==================== footer ==================== */

.site-footer {
  margin-top: 70px; border-top: 1px solid var(--line);
  background: var(--panel-2); padding: 40px 0 30px;
  font-size: 0.88rem; color: var(--text-muted);
}
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.footer-brand { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: 8px; }
.footer-head { font-family: var(--display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); text-decoration: underline; }
.compliance { border-top: 1px dashed var(--line-strong); padding-top: 22px; display: grid; gap: 12px; }
.compliance-block { font-size: 0.82rem; line-height: 1.6; }
.compliance-block strong { font-family: var(--display); color: var(--text); }
.footer-legal { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-family: var(--display); font-size: 0.78rem; color: var(--text-faint); }

/* ==================== responsive ==================== */

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--panel); border-bottom: 1px solid var(--line);
    padding: 10px 14px 16px; box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 10px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-toggle { display: inline-flex; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .corners { grid-template-columns: 1fr; max-width: 460px; }
  .corner-mj { border-radius: var(--radius) var(--radius) 0 0; }
  .corner-wg { border-radius: 0 0 var(--radius) var(--radius); text-align: left; }
  .vs-medallion { margin: -14px auto; width: 52px; height: 52px; font-size: 1.05rem; }
  .round-cols { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }

  /* price tables collapse to stacked cards */
  .table-scroll { border: none; background: transparent; box-shadow: none; overflow: visible; }
  .price-table { min-width: 0; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr {
    border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--panel); margin-bottom: 14px; padding: 6px 0; box-shadow: var(--shadow-sm);
  }
  .price-table tr.row-rec { border: 1.5px solid var(--line-strong); }
  .price-table td { border-bottom: 1px dashed var(--line); padding: 10px 16px; }
  .price-table td:last-child { border-bottom: none; }
  .price-table td[data-label]::before {
    content: attr(data-label);
    display: block; font-family: var(--display); font-weight: 700; font-size: 0.7rem;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 2px;
  }
  .article-body table:not(.price-table) { min-width: 480px; }
  .article-body .table-scroll { overflow-x: auto; border: 1px solid var(--line); background: var(--panel); }
}

@media (max-width: 460px) {
  .hero { padding-top: 36px; }
  .cta-panel { padding: 26px 20px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
