/* ============================================================
   Flatland Health — Design System
   Palette: navy + cream + gold / sage (medical-editorial prairie)
   Type: Fraunces (serif) + Inter (sans)
   ============================================================ */

/* ============ RESET & TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --ink: #1E2A3A;          /* deep navy — primary text + dark surfaces */
  --ink-2: #3A4A5C;
  --ink-3: #5A6A7C;
  --muted: #6E7887;
  --sage: #7BA098;         /* primary accent — sage / wellness */
  --sage-deep: #5A857B;
  --sage-soft: #E8F0EC;
  --wheat: #D4A94A;        /* secondary accent — prairie warmth */
  --wheat-deep: #B8912F;
  --wheat-soft: #FBEED1;
  --cream: #FAF6ED;        /* main bg */
  --off-white: #FDFCF8;
  --bg: #FAF6ED;           /* alias */
  --bg-2: #F2ECDE;
  --bg-3: #E9E1CC;
  --white: #FFFFFF;
  --line: #E4DDD0;
  --line-2: #D7CFBE;
  --danger: #B23A48;
  --success: #3C7A5D;
  --max: 1240px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px -20px rgba(30, 42, 58, 0.18);
  --shadow-lg: 0 30px 80px -30px rgba(30, 42, 58, 0.35);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; }
.container--medium { max-width: 980px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: 1.5rem; letter-spacing: -0.015em; }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: -0.005em; }
h5 { font-size: 0.95rem; font-family: var(--sans); font-weight: 600; }
p { margin: 0; color: var(--ink-2); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  padding: 6px 12px;
  background: var(--wheat);
  border-radius: 999px;
  margin-bottom: 20px;
}
.kicker--sage { background: var(--sage-soft); color: var(--sage-deep); }
.kicker--outline { background: transparent; border: 1px solid var(--line-2); color: var(--ink-2); }

.lede { font-size: 1.125rem; color: var(--ink-2); max-width: 62ch; }

em { font-style: italic; font-family: var(--serif); color: var(--sage-deep); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink); color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(30, 42, 58, 0.45);
}
.btn-primary:hover { background: var(--wheat); color: var(--ink); border-color: var(--wheat); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.42);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-sage {
  background: var(--sage-deep); color: var(--white);
}
.btn-sage:hover { background: var(--ink); }
.btn-wheat {
  background: var(--wheat); color: var(--ink);
}
.btn-wheat:hover { background: var(--wheat-deep); color: var(--white); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* Affiliate CTA — small "sponsored" chevron indicator */
.btn-affiliate {
  position: relative;
}
.btn-affiliate::after {
  content: '↗';
  margin-left: 8px;
  font-weight: 400;
  opacity: 0.8;
}

/* ============ NAV ============ */

/* ============ AFFILIATE TOP BAR ============ */
:root { --topbar-h: 36px; }
.affiliate-topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 110;
  background: var(--ink);
  color: rgba(250, 246, 237, 0.88);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.affiliate-topbar-inner { display: flex; align-items: center; justify-content: center; }
.affiliate-topbar p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(250, 246, 237, 0.88);
  text-align: center;
  max-width: 1100px;
}
.affiliate-topbar strong { color: var(--wheat); font-weight: 600; }
.affiliate-topbar a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.affiliate-topbar a:hover { color: var(--wheat); }
@media (max-width: 640px) {
  :root { --topbar-h: 52px; }
  .affiliate-topbar { padding: 8px 0; }
  .affiliate-topbar p { font-size: 0.68rem; padding: 0 4px; }
}

.nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 237, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(30, 42, 58, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; display: block; }
/* On dark hero -> use dark variant (light content on dark bg) */
.logo-img--light { display: none; }
.logo-img--dark { display: block; }
.nav.scrolled .logo-img--light { display: block; }
.nav.scrolled .logo-img--dark { display: none; }

.nav-links {
  display: flex; gap: 26px; align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: color .2s ease, opacity .2s ease;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--wheat); }
.nav-links a.active { color: var(--wheat); font-weight: 600; }
.nav.scrolled .nav-links a.active { color: var(--sage-deep); }

.nav-cta { background: var(--wheat); color: var(--ink); border-color: var(--wheat); }
.nav-cta:hover { background: var(--ink); color: var(--white); }

.nav-toggle {
  display: none; background: none; border: 0;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px; background: var(--white); border-radius: 2px;
  margin: 0 auto; transition: background .25s ease, transform .3s ease, opacity .25s ease;
  transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.is-open span { background: var(--ink); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.mobile-menu-links a {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.mobile-menu-links a:hover { color: var(--sage-deep); }
.mobile-menu-links a.mobile-menu-cta {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  align-self: center;
  padding: 14px 28px;
  background: var(--wheat);
  color: var(--ink);
  border-radius: 999px;
  letter-spacing: 0;
}
.mobile-menu-links a.mobile-menu-cta:hover { background: var(--ink); color: var(--white); }
body.menu-open { overflow: hidden; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; z-index: 100; position: relative; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none; }
}

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(212, 169, 74, 0.55) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(90, 133, 123, 0.6) 0%, transparent 50%),
    linear-gradient(180deg, #253347 0%, #1E2A3A 55%, #16202D 100%);
}
.hero-bg--photo {
  /* Real photo swap point — replace with hero-prairie-sunrise.jpg when available */
  background-size: cover;
  background-position: center 45%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.45) 100%),
    linear-gradient(90deg, rgba(30,42,58,0.55) 0%, rgba(30,42,58,0.15) 60%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 150px 28px 100px;
  width: 100%;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95);
  padding: 9px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--wheat);
  box-shadow: 0 0 0 4px rgba(212, 169, 74, 0.28);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 26px;
  max-width: 20ch;
}
.hero-title em { color: var(--wheat); font-style: italic; padding-right: 0.05em; }
.hero-title .ul {
  position: relative; display: inline-block;
  white-space: nowrap;
}
.hero-title .ul::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 0;
  height: 12px;
  background: var(--wheat);
  border-radius: 8px;
  z-index: -1;
  transform: skew(-4deg);
  opacity: 0.85;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: rgba(255,255,255,0.92);
  max-width: 58ch;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-ctas .btn-primary { background: var(--wheat); color: var(--ink); border-color: var(--wheat); }
.hero-ctas .btn-primary:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 720px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--wheat);
  line-height: 1;
}
.hero-stats span {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
  max-width: 20ch;
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-stats div:last-child { grid-column: 1 / -1; }
}

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px;
  z-index: 2;
}
.scroll-cue span {
  width: 3px; height: 8px; background: var(--white); border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--ink);
  color: var(--cream);
  padding: 44px 0;
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.trust-headline {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 26px;
}
.trust-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 22px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wheat);
}
.trust-row span:nth-child(even) { color: rgba(250, 246, 237, 0.28); }

/* ============ SECTION DEFAULTS ============ */
.section { padding: 110px 0; }
.section--tight { padding: 72px 0; }
@media (max-width: 720px) { .section { padding: 70px 0; } .section--tight { padding: 56px 0; } }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 20px; }

.section-alt { background: var(--bg-2); }
.section-sage { background: var(--sage-soft); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(250, 246, 237, 0.78); }
.section-dark .kicker { background: var(--wheat); color: var(--ink); }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex; align-items: center;
  padding: calc(200px + var(--topbar-h)) 0 84px;
  overflow: hidden;
}
.page-hero--short { min-height: 44vh; padding: calc(170px + var(--topbar-h)) 0 60px; }
@media (max-width: 720px) {
  .page-hero { padding: calc(130px + var(--topbar-h)) 0 60px; min-height: 42vh; }
  .page-hero--short { min-height: 36vh; padding: calc(120px + var(--topbar-h)) 0 50px; }
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg--placeholder {
  background:
    radial-gradient(circle at 80% 20%, rgba(212,169,74,0.45) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(90,133,123,0.55) 0%, transparent 55%),
    linear-gradient(180deg, #253347 0%, #1E2A3A 60%, #16202D 100%);
}
.page-hero-bg--sage {
  background:
    radial-gradient(circle at 20% 20%, rgba(232,240,236,0.6) 0%, transparent 55%),
    linear-gradient(180deg, #5A857B 0%, #3E635B 100%);
}
.page-hero-bg--wheat {
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.35) 0%, transparent 55%),
    linear-gradient(180deg, #B8912F 0%, #8A6F24 100%);
}
.page-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,42,58,0.45) 0%, rgba(30,42,58,0.25) 40%, rgba(30,42,58,0.75) 100%);
}
.page-hero-inner { position: relative; z-index: 2; color: var(--white); max-width: 820px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero-title {
  color: var(--white);
  font-size: clamp(2.3rem, 5.2vw, 3.75rem);
  margin-bottom: 18px;
  line-height: 1.05;
}
.page-hero-title em { color: var(--wheat); }
.page-hero-sub { color: rgba(255,255,255,0.9); font-size: 1.12rem; max-width: 62ch; margin-bottom: 30px; }
.page-hero .hero-ctas { margin-bottom: 0; }
.page-hero .hero-ctas .btn-primary { background: var(--wheat); color: var(--ink); border-color: var(--wheat); }
.page-hero .hero-ctas .btn-primary:hover { background: var(--white); }

/* ============ CARDS (generic) ============ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--sage); box-shadow: var(--shadow); }
.card h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 10px; }
.card h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 0.96rem; }
.card .card-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
  background: var(--sage-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ============ FEATURE ROW (3 or 4 columns) ============ */
.feature-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.feature-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid-3, .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feature-grid-3, .feature-grid-4 { grid-template-columns: 1fr; }
}

/* ============ THREE OPTIONS (Health Canada authorized drugs) ============ */
.options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .options-grid { grid-template-columns: 1fr; } }

.option-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.option-card:hover { transform: translateY(-4px); border-color: var(--sage); box-shadow: var(--shadow); }
.option-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: var(--sage);
  border-radius: 0 0 3px 3px;
}
.option-card--wheat::before { background: var(--wheat); }
.option-card--ink::before { background: var(--ink); }

.option-generic {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
}
.option-brands {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.option-brands span { color: var(--sage-deep); font-style: italic; font-weight: 600; font-size: 1.15rem; }
.option-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 6px; }
.option-meta span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-2);
  border-radius: 999px;
  padding: 4px 10px;
}
.option-desc { color: var(--ink-2); font-size: 0.95rem; line-height: 1.55; }
.option-list { list-style: none; padding: 0; margin: 6px 0 12px; display: flex; flex-direction: column; gap: 6px; }
.option-list li {
  font-size: 0.9rem; color: var(--ink-2); padding-left: 20px; position: relative; line-height: 1.5;
}
.option-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; background: var(--sage); border-radius: 50%;
}
.option-card--wheat .option-list li::before { background: var(--wheat); }
.option-cta { margin-top: auto; padding-top: 14px; }

/* ============ PROVIDER TABLE ============ */
.provider-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.provider-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.provider-table thead th {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.provider-table tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-2);
}
.provider-table tbody tr:last-child td { border-bottom: none; }
.provider-table tbody tr:hover td { background: var(--bg-2); }
.provider-table .prov-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  display: block;
}
.provider-table .prov-sub {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
}
.provider-table .prov-cta { min-width: 170px; text-align: right; }
.provider-table .prov-cta .btn { white-space: nowrap; }
.provider-table .prov-cell-strong { color: var(--ink); font-weight: 600; }
.provider-table .prov-cell-price { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 1.02rem; }

/* Mobile: provider table as cards */
@media (max-width: 800px) {
  .provider-table-wrap { overflow: visible; border: none; box-shadow: none; background: transparent; }
  .provider-table { min-width: 0; }
  .provider-table thead { display: none; }
  .provider-table, .provider-table tbody, .provider-table tr, .provider-table td { display: block; width: 100%; }
  .provider-table tbody tr {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .provider-table tbody td {
    padding: 8px 0;
    border: none;
  }
  .provider-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .provider-table tbody td:first-child::before { display: none; }
  .provider-table .prov-cta { text-align: left; }
  .provider-table .prov-cta .btn { width: 100%; }
}

.affiliate-note {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px dashed var(--line-2);
}
.affiliate-note strong { color: var(--ink-2); }
.affiliate-note a { color: var(--sage-deep); text-decoration: underline; }

/* ============ STEP FLOW (4 step "how it works") ============ */
.step-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .step-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .step-flow { grid-template-columns: 1fr; } }

.flow-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.flow-step:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: 0 12px 30px -14px rgba(30, 42, 58, 0.15);
}
.flow-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: var(--wheat);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.flow-step h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2px;
}
.flow-step > p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============ PROVINCIAL GRID (SK/AB/MB tiles on home) ============ */
.province-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .province-grid { grid-template-columns: 1fr; } }
.province-card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 32px 28px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s ease, box-shadow .25s ease;
}
.province-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.province-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(30,42,58,0.35) 0%, rgba(30,42,58,0.85) 100%),
    radial-gradient(circle at 70% 20%, var(--wheat), var(--sage-deep));
}
.province-card--ab::before {
  background:
    linear-gradient(180deg, rgba(30,42,58,0.35) 0%, rgba(30,42,58,0.85) 100%),
    radial-gradient(circle at 30% 20%, var(--wheat-deep), var(--ink));
}
.province-card--mb::before {
  background:
    linear-gradient(180deg, rgba(30,42,58,0.35) 0%, rgba(30,42,58,0.85) 100%),
    radial-gradient(circle at 50% 30%, var(--sage), var(--ink));
}
.province-card > * { position: relative; z-index: 1; }
.province-tag {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--wheat);
  margin-bottom: 8px;
}
.province-card h3 {
  font-family: var(--serif); font-weight: 700; color: var(--white);
  font-size: 1.65rem; margin-bottom: 8px; line-height: 1.15;
}
.province-card p { color: rgba(255,255,255,0.88); font-size: 0.94rem; margin-bottom: 14px; }
.province-card .province-link {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--wheat);
}
.province-card:hover .province-link { color: var(--white); }

/* ============ COMPARISON TABLE (semaglutide vs tirzepatide) ============ */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  margin: 24px 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.compare-table tbody th {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-2);
  width: 26%;
  font-size: 0.96rem;
}
.compare-table tbody td { color: var(--ink-2); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }

/* ============ NOTE / CALLOUT BLOCKS ============ */
.callout {
  background: var(--sage-soft);
  border-left: 4px solid var(--sage);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--sage-deep);
  margin-bottom: 8px;
}
.callout p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.6; }
.callout--warn {
  background: var(--wheat-soft);
  border-left-color: var(--wheat-deep);
}
.callout--warn h4 { color: var(--wheat-deep); }
.callout--danger {
  background: #FCEDEE;
  border-left-color: var(--danger);
}
.callout--danger h4 { color: var(--danger); }
.callout--ink {
  background: var(--ink);
  border-left-color: var(--wheat);
  color: var(--cream);
}
.callout--ink h4 { color: var(--cream); }
.callout--ink p { color: rgba(250,246,237,0.85); }

/* ============ ARTICLE / LONG-FORM BODY ============ */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0 40px;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-2);
}
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--ink);
  margin: 44px 0 16px;
  letter-spacing: -0.015em;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  margin: 30px 0 12px;
}
.article-body h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 22px 0 8px;
  letter-spacing: -0.005em;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 24px; }
.article-body ul li, .article-body ol li { margin-bottom: 8px; color: var(--ink-2); }
.article-body a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--ink); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--wheat);
  background: var(--bg-2);
  border-radius: 0 12px 12px 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}

.article-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-family: var(--sans); font-size: 0.85rem; color: var(--muted);
  margin-bottom: 14px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 4px; }
.article-meta span::before { content: '·'; margin-right: 6px; color: var(--line-2); }
.article-meta span:first-child::before { content: none; margin-right: 0; }

/* Table of contents on long articles */
.article-toc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 0 auto 28px;
  max-width: 720px;
}
.article-toc h4 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px;
}
.article-toc ol {
  padding-left: 22px; margin: 0;
  font-family: var(--sans); font-size: 0.95rem;
}
.article-toc li { margin-bottom: 4px; }
.article-toc a { color: var(--ink-2); text-decoration: none; }
.article-toc a:hover { color: var(--sage-deep); }

/* ============ INSIGHTS INDEX ============ */
.insights-list { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  display: block;
}
.insight-card:hover { border-color: var(--sage); box-shadow: var(--shadow); transform: translateY(-2px); }
.insight-card .card-tag {
  display: inline-block;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sage-deep); background: var(--sage-soft);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px;
}
.insight-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.insight-card p { font-size: 0.98rem; color: var(--ink-2); line-height: 1.6; margin-bottom: 12px; }
.insight-card .insight-more {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--sage-deep);
}
.insight-card:hover .insight-more { color: var(--ink); }

/* ============ ELIGIBILITY QUIZ ============ */
.quiz-shell {
  max-width: 780px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 42px 44px;
}
@media (max-width: 640px) { .quiz-shell { padding: 28px 22px; border-radius: var(--radius); } }

.quiz-progress {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.quiz-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage) 0%, var(--wheat) 100%);
  border-radius: 999px;
  transition: width .3s ease;
}
.quiz-progress-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.quiz-step { display: none; }
.quiz-step.is-active { display: block; }

.quiz-question {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.quiz-help {
  font-family: var(--sans); font-size: 0.92rem; color: var(--muted);
  margin-bottom: 22px;
}

.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.quiz-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .1s ease;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
}
.quiz-option:hover { border-color: var(--sage); background: var(--white); }
.quiz-option input { accent-color: var(--sage-deep); width: 18px; height: 18px; margin: 0; flex-shrink: 0; }
.quiz-option.is-selected { border-color: var(--sage-deep); background: var(--sage-soft); }

.quiz-option-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 26px;
}
@media (max-width: 560px) { .quiz-option-grid { grid-template-columns: 1fr 1fr; } }
.quiz-tile {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 12px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  color: var(--ink);
  text-align: center;
}
.quiz-tile:hover { border-color: var(--sage); background: var(--white); }
.quiz-tile input { display: none; }
.quiz-tile.is-selected { border-color: var(--sage-deep); background: var(--sage-soft); font-weight: 600; }

.quiz-actions {
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 8px;
}
.quiz-actions .btn { min-width: 120px; }
.quiz-back {
  background: transparent; border: 1.5px solid var(--line);
  color: var(--ink-2);
}
.quiz-back:hover { border-color: var(--ink); color: var(--ink); }
.quiz-back:disabled { opacity: 0.4; cursor: not-allowed; }

/* Quiz result screen */
.quiz-result-head {
  text-align: center;
  padding: 20px 0 12px;
}
.quiz-result-head .kicker { background: var(--sage-soft); color: var(--sage-deep); }
.quiz-result-head h3 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700; color: var(--ink); margin: 0 0 10px;
}
.quiz-result-head p { color: var(--ink-2); font-size: 1rem; max-width: 48ch; margin: 0 auto; }

.quiz-recs { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.quiz-rec {
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--off-white);
}
.quiz-rec-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.quiz-rec-name {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--ink);
}
.quiz-rec-badge {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sage-deep); background: var(--sage-soft);
  padding: 4px 10px; border-radius: 999px;
}
.quiz-rec-badge--top { background: var(--wheat); color: var(--ink); }
.quiz-rec p { font-size: 0.94rem; color: var(--ink-2); }
.quiz-rec .btn { align-self: flex-start; }

.quiz-disclaimer {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--bg-2);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}
.quiz-disclaimer strong { color: var(--ink-2); }

/* ============ CTA (bottom of page) ============ */
.cta {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.cta::after {
  content: ''; position: absolute;
  bottom: -160px; left: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(30,42,58,0.10);
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.cta h2 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 18px; }
.cta p { color: rgba(255,255,255,0.92); font-size: 1.08rem; margin-bottom: 34px; }
.cta .btn-primary { background: var(--wheat); color: var(--ink); border-color: var(--wheat); }
.cta .btn-primary:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cta .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }
.cta .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.cta--wheat { background: linear-gradient(135deg, var(--wheat) 0%, var(--wheat-deep) 100%); color: var(--ink); }
.cta--wheat h2 { color: var(--ink); }
.cta--wheat p { color: rgba(30,42,58,0.82); }
.cta--wheat .btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cta--wheat .btn-primary:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ============ CONTACT PAGE ============ */
.contact-page { padding-top: calc(140px + var(--topbar-h)); padding-bottom: 90px; }
@media (max-width: 720px) { .contact-page { padding-top: 110px; } }
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 40px;
  max-width: 1040px; margin: 0 auto; align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }

.contact-info {
  background: var(--ink); color: var(--white);
  border-radius: var(--radius); padding: 36px 34px;
}
.contact-info h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 22px; }
.contact-info p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 22px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--wheat);
}
.contact-list a, .contact-list span:not(.contact-label) {
  color: rgba(255,255,255,0.94); font-size: 1rem;
}
.contact-list a:hover { color: var(--wheat); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label span {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0.02em;
}
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--sans); font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--sage-deep); background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { align-self: flex-start; }

/* ============ ABOUT / EDITORIAL POLICY ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,169,74,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(90,133,123,0.35) 0%, transparent 50%),
    linear-gradient(135deg, var(--sage-soft) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep);
  font-family: var(--serif); font-style: italic;
}

.policy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
@media (max-width: 900px) { .policy-grid { grid-template-columns: 1fr; } }
.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
}
.policy-card h4 {
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: 8px;
}
.policy-card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; }

/* ============ DISCLOSURE STRIP + LEGAL ============ */
.disclosure-strip {
  background: var(--bg-3);
  padding: 22px 0;
  border-top: 1px solid var(--line-2);
}
.disclosure-strip p {
  font-family: var(--sans); font-size: 0.87rem; color: var(--ink-2);
  line-height: 1.55;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.disclosure-strip strong { color: var(--ink); }
.disclosure-strip a { color: var(--sage-deep); text-decoration: underline; font-weight: 600; }
.disclosure-strip a:hover { color: var(--ink); }

/* Legal / disclosure page body */
.legal { padding-top: calc(150px + var(--topbar-h)); padding-bottom: 80px; }
.legal-head { margin-bottom: 36px; max-width: 820px; }
.legal-head .kicker { margin-bottom: 12px; }
.legal-head h1 { font-size: clamp(2.1rem, 4vw, 3rem); margin: 0 0 12px; }
.legal-effective { color: var(--muted); font-size: 0.95rem; }
.legal-body { max-width: 820px; font-size: 1rem; line-height: 1.75; color: var(--ink-2); }
.legal-body h2 { font-size: 1.35rem; margin: 34px 0 12px; color: var(--ink); }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); }
.legal-body ul li { margin-bottom: 6px; }
.legal-body a { color: var(--sage-deep); text-decoration: underline; font-weight: 500; }
.legal-body a:hover { color: var(--ink); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin: 0 0 16px;
}
.footer-logo { display: block; height: 52px; width: auto; margin-bottom: 18px; }
.footer-tag { font-size: 0.92rem; color: rgba(250,246,237,0.65); max-width: 34ch; line-height: 1.55; }
.footer-grid a {
  display: block;
  font-size: 0.95rem;
  color: rgba(250,246,237,0.72);
  padding: 6px 0;
  transition: color .2s ease;
}
.footer-grid a:hover { color: var(--wheat); }

.footer-legal {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-legal p {
  font-family: var(--sans); font-size: 0.82rem;
  color: rgba(250,246,237,0.55); line-height: 1.6;
  max-width: 1100px; margin: 0 auto;
}
.footer-legal strong { color: var(--wheat); }

.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 22px;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom small { font-size: 0.82rem; color: rgba(250,246,237,0.55); }
.footer-bottom a { color: rgba(250,246,237,0.55); transition: color .2s ease; }
.footer-bottom a:hover { color: var(--wheat); }

/* ============ FAQ (used on FAQ page + inline FAQ blocks) ============ */
.faq { background: var(--bg); padding: 96px 0 88px; }
.faq--sage { background: var(--sage-soft); }
.faq-groups { display: flex; flex-direction: column; gap: 40px; max-width: 880px; margin: 0 auto; }
.faq-group-title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}
.faq-item[open] { background: rgba(212, 169, 74, 0.06); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px 22px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sage-deep); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex: 0 0 20px;
  margin-top: 6px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 220ms ease;
  border-radius: 2px;
}
.faq-icon::before { left: 0; right: 0; top: 9px; height: 2px; }
.faq-icon::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-item[open] .faq-icon::before { background: var(--sage-deep); }
.faq-answer { padding: 0 8px 26px 0; max-width: 68ch; }
.faq-answer p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer a {
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage);
  font-weight: 500;
}
.faq-answer a:hover { color: var(--ink); border-color: var(--ink); }
.faq-answer ul { padding-left: 22px; margin-top: 8px; }
.faq-answer li { color: var(--ink-2); margin-bottom: 4px; }

@media (max-width: 900px) {
  .faq { padding: 72px 0 64px; }
  .faq-item summary { font-size: 1.02rem; padding: 20px 4px 20px 0; gap: 16px; }
  .faq-groups { gap: 30px; }
}

/* ============ SIMPLE 2-COLUMN "SPLIT" ============ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
@media (max-width: 900px) { .split, .split--reverse { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split-media { order: 0; } }
.split-media {
  min-height: 380px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(212,169,74,0.35), transparent 60%),
    linear-gradient(135deg, var(--sage-soft), var(--bg-2));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep); font-family: var(--serif); font-style: italic;
  text-align: center; padding: 24px;
}

/* ============ CTA-LINK (inline "see more" bold link) ============ */
.arrow-link {
  font-family: var(--sans); font-weight: 600; color: var(--sage-deep);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.arrow-link:hover { color: var(--ink); border-color: var(--ink); }
.arrow-link::after { content: ' →'; }

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.hero-ctas--center { justify-content: center; margin-bottom: 0; }
.section-cta { display: flex; justify-content: center; margin-top: 44px; }

/* Small "sponsored" tag next to affiliate CTAs */
.sponsored-tag {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-2);
  border-radius: 999px;
  padding: 3px 8px;
  vertical-align: middle;
}
