/* ==========================================================================
   Eon-health — UK Health Insurance Editorial
   Wellness / vitality theme: deep forest + warm coral + cream + ivory
   Distinct from Finsurio (which used navy + electric blue + gold fintech look)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,500;1,9..144,600&family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* Wellness palette */
  --ivory:        #faf6ee;     /* warm cream page */
  --ivory-2:      #f3ecdd;     /* slightly deeper cream */
  --paper:        #ffffff;
  --ink:          #18221c;     /* deep forest ink */
  --ink-2:        #2c3a31;     /* secondary ink */
  --ink-3:        #5a6a5e;     /* muted ink for body */
  --ink-4:        #8a958c;     /* light muted */
  --line:         #e7dfd0;     /* warm beige line */
  --line-soft:    #f0e8d8;

  --forest:       #1f3d2c;     /* primary brand deep */
  --forest-2:     #2a5040;     /* lighter forest */
  --sage:         #7c8e6e;     /* soft sage */
  --sage-2:       #b5c2a3;     /* pale sage */

  --coral:        #e56b4f;     /* warm coral accent */
  --coral-2:      #f08a72;     /* light coral */
  --coral-soft:   #fbe2d8;     /* coral tint background */

  --gold:         #c89c5b;     /* warm honey gold */
  --gold-2:       #e3c08c;

  --rust:         #b15a3a;     /* deeper rust accent */

  --dark:         #131a15;     /* darkest footer */

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans:    'Outfit', 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-2xl: 56px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: 0.25s ease;

  --shadow-sm: 0 2px 10px rgba(31, 61, 44, 0.06);
  --shadow-md: 0 14px 36px -10px rgba(31, 61, 44, 0.12);
  --shadow-lg: 0 30px 70px -16px rgba(31, 61, 44, 0.18);
  --shadow-coral: 0 18px 40px -10px rgba(229, 107, 79, 0.4);
  --shadow-forest: 0 18px 40px -10px rgba(31, 61, 44, 0.35);

  --maxw: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink-3);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16.5px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--ease-fast); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 96;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); }
p  { color: var(--ink-3); }

.serif-italic { font-style: italic; font-family: var(--font-display); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--coral);
}
.eyebrow.eyebrow--coral { color: var(--coral); }
.eyebrow.eyebrow--coral::before { background: var(--coral); }
.eyebrow.eyebrow--light { color: #f3d4c6; }
.eyebrow.eyebrow--light::before { background: var(--coral-2); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section-sub {
  color: var(--ink-3);
  font-size: 1.08rem;
  max-width: 620px;
  line-height: 1.7;
}
.section-head { margin-bottom: 3.2rem; max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin: 0 auto; }

.highlight { color: var(--coral); font-style: italic; font-family: var(--font-display); }
.serif-em { font-family: var(--font-display); font-style: italic; font-weight: 500; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--paper { background: var(--ivory-2); }
.section--dark {
  background: var(--dark);
  color: #e6e1d4;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #faf6ee; }
.section--dark p { color: #b9c1b3; }
.section--forest {
  background: var(--forest);
  color: #d8e0d4;
}
.section--forest h1, .section--forest h2, .section--forest h3, .section--forest h4 { color: #faf6ee; }
.section--forest p { color: #b9c7b3; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  transition: all var(--ease-fast);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--forest);
  color: #faf6ee;
  box-shadow: var(--shadow-forest);
}
.btn--primary:hover { background: var(--ink); box-shadow: 0 24px 50px -12px rgba(31, 61, 44, 0.5); }

.btn--coral {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn--coral:hover { background: var(--rust); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 40px -10px rgba(200, 156, 91, 0.45);
}
.btn--gold:hover { background: var(--gold-2); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--forest); color: var(--forest); }

.btn--ghost-light {
  background: transparent;
  color: #faf6ee;
  border: 1.5px solid rgba(250, 246, 238, 0.3);
}
.btn--ghost-light:hover { background: rgba(250, 246, 238, 0.1); border-color: rgba(250, 246, 238, 0.6); }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 32px; font-size: 1.02rem; }

.btn .arrow { transition: transform var(--ease-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Topbar (announcement ribbon) ---------- */
.topbar {
  background: var(--ink);
  color: #c9d2c0;
  font-size: 0.82rem;
  padding: 10px 0;
  font-family: var(--font-sans);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #e6e1d4; }
.topbar a:hover { color: var(--coral-2); }
.topbar .tag { display: inline-flex; align-items: center; gap: 6px; }
.topbar .tag svg { color: var(--coral-2); }
.topbar .sep { color: #4d5a4f; }
.topbar .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Affiliate banner ---------- */
.affiliate-banner {
  background: var(--coral-soft);
  color: var(--rust);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid #f3d4c6;
  font-family: var(--font-sans);
}
.affiliate-banner b { color: var(--rust); font-weight: 700; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: all var(--ease-fast);
}
header.scrolled { box-shadow: 0 8px 30px -10px rgba(31, 61, 44, 0.12); background: rgba(250, 246, 238, 0.96); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 30px; }

/* Brand wordmark */
.brand-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  color: #faf6ee;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  font-style: italic;
  position: relative;
  box-shadow: 0 10px 24px -8px rgba(31, 61, 44, 0.4);
}
.brand-mark::after {
  content: ""; position: absolute;
  right: -5px; bottom: -5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--ivory);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-name span { color: var(--coral); font-style: italic; }
.brand-tag {
  display: block; margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-4);
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  position: relative;
  transition: all var(--ease-fast);
}
.nav-links a:hover { color: var(--forest); background: rgba(31, 61, 44, 0.06); }
.nav-links a.active { color: var(--forest); font-weight: 600; }
.nav-links a.active::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
  margin-right: 8px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  z-index: 101;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--ease-fast);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--ivory); z-index: 99;
  padding: 100px 28px 40px;
  box-shadow: 0 20px 50px rgba(31, 61, 44, 0.15);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  max-height: 100vh; overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; opacity: 1; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 16px 12px;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.active { color: var(--coral); font-style: italic; }
.mobile-nav .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--ivory);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader .pl-mark {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--forest);
  color: #faf6ee;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; font-style: italic;
  position: relative;
  box-shadow: 0 18px 50px -10px rgba(31, 61, 44, 0.4);
}
#preloader .pl-mark::after {
  content: ""; position: absolute;
  right: -6px; bottom: -6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--ivory);
}
#preloader .pl-text {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
}
#preloader .pl-bar {
  margin-top: 16px;
  width: 160px; height: 2px;
  background: var(--line);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
#preloader .pl-bar::before {
  content: ""; position: absolute; inset: 0;
  background: var(--coral);
  animation: plslide 1.4s infinite;
}
@keyframes plslide { 0% { transform: translateX(-100%);} 100% { transform: translateX(100%);} }

/* ============================================================
   HERO — Editorial magazine style
   ============================================================ */
.hero {
  position: relative;
  background: var(--ivory);
  padding: clamp(60px, 7vw, 90px) 0 clamp(50px, 7vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 107, 79, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 142, 110, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: var(--coral-soft);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
  position: relative;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 14px;
  background: var(--coral-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-lede {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: 0.88rem; font-weight: 500; }
.hero-trust .item svg { color: var(--coral); flex-shrink: 0; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid var(--ivory);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: -10px;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  color: #fff;
}
.hero-trust .avatars span:first-child { margin-left: 0; background: var(--coral); }
.hero-trust .avatars span:nth-child(2) { background: var(--sage); }
.hero-trust .avatars span:nth-child(3) { background: var(--gold); color: var(--ink); }
.hero-trust .avatars span:last-child { background: var(--forest); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-float {
  position: absolute;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-soft);
}
.hero-float .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float h5 { font-family: var(--font-sans); font-size: 0.92rem; font-weight: 700; color: var(--ink); margin: 0; }
.hero-float p  { font-size: 0.76rem; color: var(--ink-3); margin: 0; }
.hero-float--1 { top: 32px; left: -28px; }
.hero-float--1 .icon { background: var(--coral-soft); color: var(--coral); }
.hero-float--2 { bottom: 40px; right: -28px; }
.hero-float--2 .icon { background: rgba(124, 142, 110, 0.18); color: var(--sage); }
.hero-float--3 { bottom: 140px; left: -32px; }
.hero-float--3 .icon { background: rgba(200, 156, 91, 0.18); color: var(--gold); }

/* ============================================================
   GLOBAL RESPONSIVE — mobile / tablet
   ============================================================ */
@media (max-width: 960px) {
  /* Header */
  .nav-container { padding: 14px 0; gap: 14px; }
  .nav-links { display: none; }
  .nav-cta > .btn { display: none; }
  .menu-toggle { display: flex; }

  /* Topbar */
  .topbar { font-size: 0.76rem; padding: 8px 0; }
  .topbar .container { gap: 8px; }
  .topbar-left, .topbar-right { gap: 10px; }
  .topbar .sep { display: none; }

  /* Brand */
  .brand-name { font-size: 1.2rem; }
  .brand-tag { font-size: 0.6rem; letter-spacing: 0.14em; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.1rem; }

  .container { width: 94%; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { aspect-ratio: 4/4; max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-float--1 { left: 0; top: 14px; }
  .hero-float--2 { right: 0; bottom: 14px; }
  .hero-float--3 { left: 0; bottom: 110px; }
  .hero-float h5 { font-size: 0.84rem; }
  .hero-float p { font-size: 0.7rem; }
  .hero-float .icon { width: 34px; height: 34px; }
  .hero-trust { gap: 14px; }
  .hero-trust .item { font-size: 0.82rem; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--forest);
  color: #faf6ee;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-inner {
  display: flex; gap: 60px; align-items: center;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
}
.marquee-inner span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-inner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Benefits (bento grid) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}
.bento-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.bento-card .bento-illust { margin-bottom: 18px; }
.bento-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.bento-card p { font-size: 0.95rem; color: var(--ink-3); line-height: 1.6; }

.bento-card--lg { grid-column: span 4; grid-row: span 2; }
.bento-card--md { grid-column: span 2; grid-row: span 1; }
.bento-card--wide { grid-column: span 3; grid-row: span 1; }
.bento-card--tall { grid-column: span 2; grid-row: span 2; }
.bento-card--sq { grid-column: span 2; grid-row: span 1; }

.bento-card--feature {
  background: var(--forest);
  color: #faf6ee;
}
.bento-card--feature h3 { color: #faf6ee; }
.bento-card--feature p { color: #b9c7b3; }

.bento-card--coral {
  background: var(--coral);
  color: #fff;
}
.bento-card--coral h3 { color: #fff; }
.bento-card--coral p { color: #fde2d7; }

.bento-card--cream {
  background: var(--ivory-2);
}
.bento-card--sage {
  background: rgba(124, 142, 110, 0.18);
}
.bento-card--gold {
  background: rgba(200, 156, 91, 0.16);
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento-card, .bento-card--lg, .bento-card--md, .bento-card--wide, .bento-card--tall, .bento-card--sq {
    grid-column: span 1; grid-row: span 1;
  }
  .bento-card--lg { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-card--lg { grid-column: span 1; }
  .bento-card { min-height: 220px; }
}

/* ---------- Editorial split (image + copy) ---------- */
.editorial { padding: clamp(60px, 8vw, 110px) 0; }
.editorial-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center;
}
.editorial-img-wrap {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.editorial-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.editorial-img-wrap .badge-stack {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.editorial-img-wrap .badge-stack .dot { width: 10px; height: 10px; border-radius: 50%; background: #2e7d4f; box-shadow: 0 0 0 4px rgba(46, 125, 79, 0.2); }
.editorial-img-wrap .badge-stack h5 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.editorial-img-wrap .badge-stack p { font-size: 0.78rem; color: var(--ink-3); margin: 0; }

.editorial h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.editorial .checklist { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.editorial .checklist li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink-2); font-size: 1rem; }
.editorial .checklist .check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--coral-soft); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.editorial .checklist .check svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .editorial-grid { grid-template-columns: 1fr; gap: 50px; } }

/* ---------- Status progression (Vitality-inspired) ---------- */
.status-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.status-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.status-track::before {
  content: "";
  position: absolute;
  top: 50px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.status-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 18px;
}
.status-medal {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  border: 5px solid var(--ivory-2);
  position: relative;
  box-shadow: 0 12px 30px -8px rgba(31, 61, 44, 0.2);
}
.status-step h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.status-step .range { font-size: 0.86rem; color: var(--coral); font-weight: 600; margin-bottom: 10px; }
.status-step p { font-size: 0.92rem; color: var(--ink-3); }

.status-medal--bronze { background: linear-gradient(135deg, #c8965a 0%, #a0763e 100%); }
.status-medal--silver { background: linear-gradient(135deg, #b3b6b9 0%, #8a8e92 100%); }
.status-medal--gold   { background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%); color: var(--ink); }
.status-medal--plat   { background: linear-gradient(135deg, #4a5d4f 0%, var(--forest) 100%); }

@media (max-width: 700px) { .status-track { grid-template-columns: 1fr 1fr; gap: 30px 0; } .status-track::before { display: none; } }

/* Extra small devices */
@media (max-width: 480px) {
  .topbar-left .pill { font-size: 0.66rem; padding: 3px 8px; }
  .topbar-right .tag { font-size: 0.7rem; }
  .topbar { padding: 6px 0; }
  .nav-container { padding: 12px 0; }
  .brand-mark { width: 36px; height: 36px; font-size: 1rem; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { display: none; }
  .section { padding: 50px 0; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-float { padding: 10px 14px; }
  .hero h1 { font-size: 2.1rem; }
  .bento-card, .feature-card, .cover-card, .reward-card { padding: 24px 20px; }
  .testimonial { padding: 24px 20px; }
  .final-cta { padding: 40px 20px; }
  .affiliate-banner { font-size: 0.72rem; padding: 8px 12px; }
  .affiliate-banner br { display: none; }
  .pros-cons .pc { padding: 22px 18px; }
  .footer-col { padding: 0; }
  .page-head { padding: 60px 0 50px; }
  .page-head h1 { font-size: 2.1rem; }
  .testimonial .t-photo { max-width: 140px; }
  .testimonial blockquote { font-size: 1.1rem; }
  .product-card, .contact-info, .contact-form, .legal-inner { padding: 24px 20px; }
  .rating-card { padding: 28px 20px; }
  .price-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .review-hero { padding: 40px 0; }
  .review-hero .grid { gap: 30px; }
  .review-hero .score { font-size: 3.2rem; }
  .product-section { padding: 40px 0 60px; }
  .product-card .price { font-size: 2rem; }
  .status-step { padding: 0 8px; }
  .status-medal { width: 80px; height: 80px; font-size: 1.1rem; }
  .marquee-inner { font-size: 0.92rem; gap: 40px; }
  .marquee-inner span { gap: 40px; }
  .regulatory { padding: 18px 20px; }
}

/* ---------- Rewards grid ---------- */
.rewards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 40px;
}
.reward-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--line-soft);
  text-align: left;
  transition: all 0.3s var(--ease);
}
.reward-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reward-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--coral-soft);
  color: var(--coral);
  margin-bottom: 16px;
}
.reward-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.reward-card p { font-size: 0.9rem; }
.reward-card .save { display: inline-block; margin-top: 12px; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); }
@media (max-width: 900px) { .rewards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .rewards-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--paper);
  border-radius: var(--r-2xl);
  padding: 60px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -20px; left: 30px;
  font-family: var(--font-display);
  font-size: 11rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.18;
  font-style: italic;
}
.testimonial .t-photo {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--ivory-2);
}
.testimonial .t-photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial .t-body { position: relative; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem; line-height: 1.4; color: var(--ink);
  font-weight: 500; font-style: italic;
  margin-bottom: 24px;
}
.testimonial .t-meta { display: flex; align-items: center; gap: 16px; }
.testimonial .t-meta .stars { display: inline-flex; gap: 2px; color: var(--gold); }
.testimonial .t-meta h5 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.testimonial .t-meta p  { font-size: 0.86rem; color: var(--ink-3); margin: 0; }
@media (max-width: 900px) { .testimonial { grid-template-columns: 1fr; gap: 30px; padding: 36px; } .testimonial .t-photo { max-width: 200px; } }
@media (max-width: 480px) { .testimonial .t-photo { max-width: 140px; } .testimonial blockquote { font-size: 1.1rem; } .testimonial { padding: 24px 18px; } }

/* ---------- Pros & Cons ---------- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.pros-cons .pc {
  border-radius: var(--r-lg);
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
}
.pros-cons .pc--pro { background: rgba(124, 142, 110, 0.10); border-color: rgba(124, 142, 110, 0.25); }
.pros-cons .pc--con { background: rgba(229, 107, 79, 0.06); border-color: rgba(229, 107, 79, 0.18); }
.pros-cons h4 { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 18px; }
.pros-cons .pc--pro h4 { color: var(--sage); }
.pros-cons .pc--con h4 { color: var(--coral); }
.pros-cons ul { display: flex; flex-direction: column; gap: 10px; }
.pros-cons li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); font-size: 0.95rem; }
.pros-cons li svg { flex-shrink: 0; margin-top: 4px; }
.pros-cons .pc--pro li svg { color: var(--sage); }
.pros-cons .pc--con li svg { color: var(--coral); }
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; max-width: 880px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--ease-fast);
}
.faq-item.active { border-color: var(--coral); box-shadow: 0 16px 36px -10px rgba(229, 107, 79, 0.18); }
.faq-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 22px 26px; text-align: left;
  font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; color: var(--ink);
}
.faq-btn .faq-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--coral-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--coral);
  transition: all 0.3s var(--ease);
}
.faq-item.active .faq-btn .faq-icon { background: var(--coral); color: #fff; transform: rotate(45deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-content-inner { padding: 0 26px 24px; color: var(--ink-3); font-size: 0.98rem; line-height: 1.7; }

/* ---------- Comparison table ---------- */
.cmp-wrap {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 36px;
}
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td { padding: 18px 22px; text-align: left; font-size: 0.96rem; }
.cmp-table thead th {
  background: var(--forest); color: #faf6ee;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em;
}
.cmp-table thead th.hot { background: var(--coral); }
.cmp-table tbody tr { border-top: 1px solid var(--line-soft); }
.cmp-table tbody tr:hover { background: var(--ivory-2); }
.cmp-table td:first-child { color: var(--ink-3); font-weight: 500; }
.cmp-table td.hot { background: rgba(229, 107, 79, 0.06); font-weight: 600; color: var(--ink); }
.cmp-table .check { width: 22px; height: 22px; color: var(--sage); }
.cmp-table .cross { width: 22px; height: 22px; color: #c5b6a3; }
@media (max-width: 720px) { .cmp-table th, .cmp-table td { padding: 14px 12px; font-size: 0.88rem; } }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--forest);
  border-radius: var(--r-2xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  margin: 0 0 clamp(60px, 8vw, 100px);
  color: #faf6ee;
}
.final-cta::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 107, 79, 0.35) 0%, transparent 60%);
}
.final-cta::after {
  content: ""; position: absolute;
  bottom: -100px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 156, 91, 0.18) 0%, transparent 60%);
}
.final-cta .container-x { position: relative; }
.final-cta h2 { color: #faf6ee; font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.final-cta p  { color: #c9d2c0; max-width: 580px; margin: 0 auto 30px; }
.final-cta .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 700px) { .final-cta { padding: 60px 28px; } }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: #c9d2c0;
  padding: 80px 0 30px;
  font-family: var(--font-sans);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer-col h4 {
  color: #faf6ee;
  font-family: var(--font-sans); font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a { display: block; padding: 6px 0; color: #c9d2c0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--coral-2); }
.footer-col p  { color: #9aa59c; font-size: 0.92rem; }
.footer-col .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-col .footer-brand .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
.footer-col .footer-brand .brand-name { color: #faf6ee; }
.footer-col .footer-brand .brand-tag { color: #7e8a80; }
.footer-col .owner-line { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: #c9d2c0; font-size: 0.92rem; }
.footer-col .owner-line strong { color: #faf6ee; font-weight: 600; }
.footer-col .email-line { display: flex; align-items: center; gap: 10px; margin-top: 8px; color: #c9d2c0; font-size: 0.92rem; }
.footer-col .email-line a { color: var(--coral-2); padding: 0; }
.footer-col .email-line a:hover { color: #faf6ee; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px; padding: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(250, 246, 238, 0.06);
  color: #c9d2c0;
}
.footer-socials a:hover { background: var(--coral); color: #fff; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 238, 0.10);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.85rem; color: #7e8a80;
}
.regulatory {
  margin-top: 30px;
  padding: 22px 26px;
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(250, 246, 238, 0.08);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  color: #9aa59c;
  line-height: 1.65;
}
.regulatory b { color: #d8e0d4; font-weight: 600; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 480px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  z-index: 200;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.cookie-banner p  { font-size: 0.9rem; color: var(--ink-3); margin-bottom: 20px; }
.cookie-banner p a { color: var(--coral); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 18px; font-size: 0.88rem; flex: 1; min-width: 130px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGE HEAD (review, order, contact)
   ============================================================ */
.page-head {
  background: var(--ivory-2);
  color: var(--ink);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 107, 79, 0.10) 0%, transparent 60%);
}
.page-head .container { position: relative; }
.page-head .crumbs { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 0.84rem; color: var(--ink-3); font-family: var(--font-sans); }
.page-head .crumbs a { color: var(--ink-3); }
.page-head .crumbs a:hover { color: var(--coral); }
.page-head h1 { color: var(--ink); font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 16px; }
.page-head h1 .accent { color: var(--coral); font-style: italic; }
.page-head p  { color: var(--ink-2); max-width: 660px; margin: 0 auto; font-size: 1.1rem; }

/* ============================================================
   ORDER / PLAN PAGE
   ============================================================ */
.product-section { padding: 70px 0 100px; }
.product-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.gallery-main {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  background: var(--ivory-2);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.gallery-thumbs .thumb {
  width: 80px; height: 80px; border-radius: 14px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  background: var(--ivory-2);
  transition: border-color var(--ease-fast);
}
.gallery-thumbs .thumb.active { border-color: var(--coral); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  padding: 34px;
}
.product-card .stars { display: inline-flex; gap: 2px; color: var(--gold); margin-bottom: 4px; }
.product-card .stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--ink-3); font-size: 0.9rem; }
.product-card h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 10px; }
.product-card .lede { color: var(--ink-3); font-size: 0.98rem; margin-bottom: 20px; }
.product-card .price-card {
  background: linear-gradient(135deg, rgba(229, 107, 79, 0.08) 0%, rgba(200, 156, 91, 0.06) 100%);
  border: 1px solid rgba(229, 107, 79, 0.18);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-bottom: 22px;
}
.price-card .lbl { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.price-card .price {
  font-family: var(--font-display); font-weight: 600; font-size: 2.4rem; color: var(--ink);
  line-height: 1;
}
.price-card .price small { font-size: 0.45em; font-weight: 500; color: var(--ink-3); }
.price-card .badge { background: var(--coral); color: #fff; padding: 6px 12px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.74rem; font-family: var(--font-sans); }
.product-card .specs { margin: 24px 0; }
.product-card .specs li { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.94rem; }
.product-card .specs li:last-child { border-bottom: 0; }
.product-card .specs li span:first-child { color: var(--ink-3); }
.product-card .specs li span:last-child { color: var(--ink); font-weight: 600; text-align: right; }

.disclosure-note {
  margin-top: 14px;
  background: var(--ivory-2);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 0.84rem;
  color: var(--ink-3);
  display: flex; align-items: flex-start; gap: 10px;
  border: 1px solid var(--line-soft);
}
.disclosure-note svg { flex-shrink: 0; color: var(--coral); margin-top: 2px; }

@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   REVIEW PAGE
   ============================================================ */
.review-hero { padding: 70px 0; }
.review-hero .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.review-hero .rating-card {
  background: var(--forest);
  color: #faf6ee;
  border-radius: var(--r-2xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.review-hero .rating-card::before {
  content: ""; position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 107, 79, 0.35) 0%, transparent 60%);
}
.review-hero .rating-card .container-x { position: relative; }
.review-hero .score { font-family: var(--font-display); font-size: 4rem; font-weight: 600; line-height: 1; color: #faf6ee; font-style: italic; }
.review-hero .score small { font-size: 0.4em; color: #b9c7b3; font-style: normal; }
.review-hero .stars-big { color: var(--gold-2); display: inline-flex; gap: 4px; margin: 12px 0 8px; }
.review-hero .stars-big svg { width: 22px; height: 22px; }
.review-hero .rating-card p { color: #c9d2c0; font-size: 0.92rem; }
.review-hero .rating-card .quote { color: #faf6ee; font-family: var(--font-display); font-size: 1.05rem; font-style: italic; margin-top: 16px; line-height: 1.5; }
.review-hero .meta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; color: var(--ink-3); font-size: 0.88rem; font-family: var(--font-sans); }
.review-hero .meta-row .pill { padding: 6px 12px; background: var(--ivory-2); border-radius: var(--r-pill); font-weight: 600; }
.review-hero .meta-row .pill.coral { background: var(--coral-soft); color: var(--rust); }
@media (max-width: 900px) { .review-hero .grid { grid-template-columns: 1fr; } }

.article { padding: 60px 0 100px; }
.article-inner { max-width: 820px; margin: 0 auto; }
.article h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 40px 0 14px; color: var(--ink); font-weight: 600; }
.article p { margin-bottom: 16px; color: var(--ink-2); font-size: 1.04rem; line-height: 1.75; }
.article ul, .article ol { margin: 14px 0 18px 22px; }
.article ul li, .article ol li { color: var(--ink-2); margin-bottom: 8px; line-height: 1.7; }
.article strong { color: var(--ink); }
.pull-quote {
  margin: 36px 0;
  padding: 30px 36px;
  background: var(--coral-soft);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}
.toc-list { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 24px 28px; margin-bottom: 36px; }
.toc-list h4 { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.toc-list ol { margin: 0; padding-left: 18px; }
.toc-list ol li { color: var(--ink-2); margin-bottom: 6px; }
.toc-list ol li a { color: var(--ink); font-weight: 500; }
.toc-list ol li a:hover { color: var(--coral); }

.verdict-box {
  margin: 44px 0;
  background: var(--forest);
  color: #faf6ee;
  border-radius: var(--r-2xl);
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.verdict-box::before { content: ""; position: absolute; top: -100px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(229, 107, 79, 0.3) 0%, transparent 60%); }
.verdict-box .container-x { position: relative; }
.verdict-box h3 { color: #faf6ee; font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; }
.verdict-box p { color: #c9d2c0; margin-bottom: 24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; margin-top: 40px; }
.contact-info {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.contact-info h2 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 8px; }
.contact-info > p { color: var(--ink-3); margin-bottom: 28px; }
.contact-card {
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: var(--ivory-2);
  border: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.contact-card h4 { font-family: var(--font-sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.contact-card .big { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.contact-card a.big { color: var(--coral); }
.contact-card a.big:hover { color: var(--rust); }
.contact-card p { font-size: 0.94rem; color: var(--ink-2); margin: 4px 0; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 8px; }
.contact-form > p { color: var(--ink-3); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-sans); font-weight: 600; font-size: 0.86rem; color: var(--ink); margin-bottom: 8px; }
.form-group .form-input,
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 0.96rem;
  font-family: var(--font-body);
  transition: all var(--ease-fast);
}
.form-group .form-input:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(229, 107, 79, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding: 70px 0 100px; }
.legal-inner { max-width: 820px; margin: 0 auto; background: var(--paper); border-radius: var(--r-lg); border: 1px solid var(--line-soft); padding: 56px 60px; box-shadow: var(--shadow-sm); }
.legal-inner h1 { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 8px; font-weight: 600; }
.legal-inner .last-updated { color: var(--ink-3); font-size: 0.88rem; margin-bottom: 28px; }
.legal-inner h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 28px 0 12px; color: var(--ink); font-weight: 600; }
.legal-inner p { margin-bottom: 14px; color: var(--ink-2); font-size: 0.98rem; line-height: 1.75; }
.legal-inner a { color: var(--coral); }
.legal-inner a:hover { text-decoration: underline; }
@media (max-width: 700px) { .legal-inner { padding: 36px 26px; } }

/* ============================================================
   Small utilities
   ============================================================ */
.center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
