/* ==========================================================================
   Par Box — flat HTML prototype stylesheet
   Mobile-first. No framework. See README.md for palette + type rationale.
   ========================================================================== */

:root {
  /* Brand palette — cues taken from the live logo (green box outline, mint
     flag, orange wordmark) and the deep-green boxes themselves. */
  --green-950: #0f2e21;
  --green-900: #143d2b;
  --green-700: #1f5a3d;
  --green-500: #2e7d4f;
  --green-100: #e3f0e8;
  --mint: #84d5a4;
  --orange: #e8692c;        /* logo wordmark — decorative use only */
  --orange-deep: #c4521a;   /* AA-safe on cream/white for text + buttons */
  --orange-tint: #fbeee6;
  --cream: #f7f4ee;
  --cream-deep: #efeae0;
  --white: #ffffff;
  --ink: #1c1f1d;
  --ink-soft: #565c58;
  --line: #e2ddd3;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px -14px rgba(20, 61, 43, 0.18);
  --shadow: 0 22px 55px -22px rgba(20, 61, 43, 0.28);

  --container: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --section: clamp(56px, 9vw, 112px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--green-950);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-900); }

:focus-visible {
  outline: 3px solid var(--orange-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--green-900); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius-sm); z-index: 1000;
}
.skip-link:focus { top: 8px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 760px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * 0.6); }
.section--green { background: var(--green-900); color: #e9f1ec; }
.section--green h1, .section--green h2, .section--green h3 { color: var(--white); }
.section--green .lede { color: #c9dbd0; }
.section--green a { color: var(--mint); }
.section--white { background: var(--white); }
.section--cream-deep { background: var(--cream-deep); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--mint); }

.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 0.98rem; line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--green-900); color: var(--white); box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--green-700); color: var(--white); }
.btn--accent { background: var(--orange-deep); color: var(--white); box-shadow: var(--shadow-soft); }
.btn--accent:hover { background: #a94512; color: var(--white); }
.btn--ghost { background: transparent; color: var(--green-900); border-color: var(--green-900); }
.btn--ghost:hover { background: var(--green-900); color: var(--white); }
.btn--light { background: var(--white); color: var(--green-900); }
.btn--light:hover { background: var(--cream); color: var(--green-950); }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none !important; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* --------------------------------------------------------------------------
   Announcement bar + header
   -------------------------------------------------------------------------- */
.announce {
  background: var(--green-950); color: #dfeae3;
  font-size: 0.85rem; text-align: center; padding: 9px var(--gutter);
}
.announce strong { color: var(--mint); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  flex: 1 1 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green-950); }
.brand img { width: 44px; height: 45px; }
.brand span { font-family: var(--font-sans); font-weight: 800; letter-spacing: 0.08em; font-size: 1.05rem; color: var(--orange-deep); }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 2px solid var(--green-900); color: var(--green-900);
  border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: 0.9rem; cursor: pointer;
}
.nav-toggle__bars { width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.site-nav { display: none; width: 100%; }
.site-nav[data-open="true"] { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 8px 0 18px; display: flex; flex-direction: column; gap: 4px; }
.site-nav a { display: block; padding: 10px 6px; text-decoration: none; font-weight: 600; color: var(--green-950); border-radius: var(--radius-sm); }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--green-100); }
.site-nav .btn { margin-top: 8px; }

.header-wrap { display: flex; flex-wrap: wrap; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .header-wrap { flex-wrap: nowrap; align-items: center; }
  .site-nav { display: block; width: auto; margin-left: auto; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 2px; padding: 0; }
  .site-nav a { padding: 8px 12px; font-size: 0.95rem; }
  .site-nav .btn { margin: 0 0 0 10px; padding: 11px 20px; }
  .site-nav .btn:hover { background: var(--green-700); }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(40px, 7vw, 96px) var(--section); }
.hero__grid { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__copy h1 { max-width: 12ch; }
.hero__copy .lede { margin-bottom: 26px; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hero__badge {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--white); color: var(--green-950);
  padding: 12px 16px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  font-size: 0.85rem; line-height: 1.3; max-width: 240px;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--green-700); }
.hero__note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }

@media (min-width: 820px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* --------------------------------------------------------------------------
   Stats / trust row
   -------------------------------------------------------------------------- */
.stats { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.stat { background: var(--white); border-radius: var(--radius-md); padding: 22px 20px; border: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green-700); line-height: 1; margin-bottom: 8px; }
.stat span { font-size: 0.9rem; color: var(--ink-soft); }
.section--green .stat { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.section--green .stat strong { color: var(--mint); }
.section--green .stat span { color: #c9dbd0; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   Tier ladder / product cards
   -------------------------------------------------------------------------- */
.tiers { display: grid; gap: 20px; }
@media (min-width: 640px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .tiers { grid-template-columns: repeat(4, 1fr); } }

.tier {
  background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier--featured { border-color: var(--green-500); box-shadow: var(--shadow-soft); }
.tier__flag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--green-900); color: var(--white); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px;
}
.tier__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.tier__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier__body h3 { margin: 0; }
.tier__rrp { font-size: 0.85rem; color: var(--green-700); font-weight: 600; }
.tier__price { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-950); line-height: 1; }
.tier__price small { font-family: var(--font-sans); font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
.tier__offer { font-size: 0.85rem; color: var(--orange-deep); font-weight: 600; }
.tier__cats { list-style: none; margin: 4px 0 0; padding: 0; font-size: 0.9rem; color: var(--ink-soft); }
.tier__cats li { padding-left: 18px; position: relative; margin-bottom: 4px; }
.tier__cats li::before { content: "✓"; position: absolute; left: 0; color: var(--green-500); font-weight: 700; }
.tier__body .btn { margin-top: auto; align-self: flex-start; }

/* --------------------------------------------------------------------------
   Steps (how it works)
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--white); border-radius: var(--radius-md); padding: 26px 24px; border: 1px solid var(--line); }
.step__num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700); font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 14px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Value proof
   -------------------------------------------------------------------------- */
.proof { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (min-width: 820px) { .proof { grid-template-columns: 1fr 1fr; } }
.proof__big { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.5rem); line-height: 0.95; color: var(--mint); margin: 0 0 8px; }
.proof__list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.proof__list li { padding-left: 28px; position: relative; }
.proof__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--mint); font-weight: 700; }

.items { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .items { grid-template-columns: repeat(4, 1fr); } }
.item { background: var(--white); border-radius: var(--radius-md); padding: 14px; border: 1px solid var(--line); }
.item img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: var(--radius-sm); background: var(--white); }
.item__name { display: block; font-weight: 600; font-size: 0.9rem; margin-top: 10px; color: var(--green-900); }
.item__rrp { display: block; font-size: 0.82rem; color: var(--green-700); font-weight: 600; }
.footnote { font-size: 0.85rem; color: var(--ink-soft); margin-top: 18px; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.placeholder-note {
  display: inline-block; background: var(--orange-tint); color: var(--orange-deep);
  border: 1px dashed var(--orange-deep); border-radius: var(--radius-sm);
  padding: 6px 12px; font-size: 0.8rem; font-weight: 600; margin-bottom: 18px;
}
.quotes { display: grid; gap: 18px; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { background: var(--white); border-radius: var(--radius-md); padding: 26px 24px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.quote::before { content: "\201C"; font-family: var(--font-display); font-size: 3rem; line-height: 0.6; color: var(--orange); display: block; margin-bottom: 12px; }
.quote p { font-size: 0.98rem; flex: 1; }
.quote footer { margin-top: 16px; font-size: 0.85rem; color: var(--ink-soft); }
.quote footer strong { color: var(--ink); display: block; }

/* --------------------------------------------------------------------------
   Split CTA (gift), blog teaser
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1fr; } .split--rev > :first-child { order: 2; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.posts { display: grid; gap: 18px; }
@media (min-width: 640px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .posts--3 { grid-template-columns: repeat(3, 1fr); } }
.post { background: var(--white); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.post__cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-700); }
.post h3 { margin: 0; font-size: 1.15rem; }
.post h3 a { text-decoration: none; color: var(--green-950); }
.post h3 a:hover { text-decoration: underline; }
.post p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.post__meta { font-size: 0.8rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Product page
   -------------------------------------------------------------------------- */
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin: 18px 0 0; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--line); }
.breadcrumb a { color: var(--ink-soft); }

.product { display: grid; gap: clamp(24px, 4vw, 56px); padding-block: 24px var(--section); }
@media (min-width: 900px) { .product { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }

.gallery__main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); background: var(--white); }
.gallery__thumbs { list-style: none; margin: 12px 0 0; padding: 0; display: flex; gap: 10px; }
.gallery__thumbs button { border: 2px solid transparent; padding: 0; border-radius: var(--radius-sm); overflow: hidden; background: none; cursor: pointer; width: 72px; }
.gallery__thumbs button[aria-pressed="true"] { border-color: var(--green-700); }
.gallery__thumbs img { width: 72px; height: 90px; object-fit: cover; }

.buybox h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.buybox__price { font-family: var(--font-display); font-size: 2rem; color: var(--green-950); line-height: 1; margin: 6px 0 4px; }
.buybox__price small { font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink-soft); }
.buybox__offer { color: var(--orange-deep); font-weight: 700; margin-bottom: 18px; }
.guarantee {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--green-100); border-radius: var(--radius-md); padding: 14px 16px; margin: 18px 0;
}
.guarantee__icon { width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--green-700); color: var(--white); display: grid; place-items: center; font-weight: 800; }
.guarantee strong { color: var(--green-900); }
.guarantee p { margin: 0; font-size: 0.93rem; }

.plans { display: grid; gap: 12px; margin: 18px 0; }
.plan { position: relative; }
.plan input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.plan label {
  display: block; cursor: pointer;
  border: 2px solid var(--line); border-radius: var(--radius-md); background: var(--white);
  padding: 16px 16px 14px 48px; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.plan label::before {
  content: ""; position: absolute; left: 16px; top: 20px; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--ink-soft); background: var(--white);
}
.plan input:checked + label { border-color: var(--green-700); box-shadow: 0 0 0 4px var(--green-100); }
.plan input:checked + label::before { border-color: var(--green-700); background: radial-gradient(var(--green-700) 45%, var(--white) 50%); }
.plan input:focus-visible + label { outline: 3px solid var(--orange-deep); outline-offset: 2px; }
.plan__title { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; font-weight: 700; }
.plan__title .pill { font-size: 0.72rem; background: var(--orange-tint); color: var(--orange-deep); padding: 3px 9px; border-radius: 999px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.plan__desc { font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; }

.pricing-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px 18px; margin-bottom: 16px; }
.pricing-summary dl { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; font-size: 0.95rem; }
.pricing-summary dt { color: var(--ink-soft); }
.pricing-summary dd { margin: 0; text-align: right; font-weight: 700; }
.pricing-summary dd.big { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-900); }
.pricing-summary .note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 10px; }

.buybox__meta { list-style: none; padding: 0; margin: 14px 0 0; font-size: 0.87rem; color: var(--ink-soft); display: grid; gap: 4px; }
.buybox__meta li::before { content: "•"; color: var(--green-500); margin-right: 8px; }

.whats-inside { display: grid; gap: clamp(24px, 4vw, 56px); }
@media (min-width: 900px) { .whats-inside { grid-template-columns: 1fr 1fr; } }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-500); font-weight: 800; }
.check-list--dark li::before { color: var(--mint); }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 10px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -10px 30px -18px rgba(0,0,0,0.3);
}
.sticky-cta__price { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-950); line-height: 1.1; }
.sticky-cta__price small { display: block; font-family: var(--font-sans); font-size: 0.75rem; color: var(--ink-soft); }
@media (min-width: 900px) { .sticky-cta { display: none; } }
body.has-sticky { padding-bottom: 78px; }
@media (min-width: 900px) { body.has-sticky { padding-bottom: 0; } }

/* --------------------------------------------------------------------------
   FAQ (native details/summary)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0 20px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 32px 16px 0; list-style: none; position: relative; color: var(--green-950); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.5rem; color: var(--green-700); font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 18px; color: var(--ink-soft); }
.faq h3 { margin: 26px 0 12px; }

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--white); }
.compare { border-collapse: collapse; width: 100%; min-width: 720px; font-size: 0.93rem; }
.compare th, .compare td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--green-900); color: var(--white); font-weight: 700; position: sticky; top: 0; }
.compare thead th:first-child { background: var(--green-950); }
.compare tbody th { font-weight: 600; color: var(--green-950); background: var(--cream); width: 200px; }
.compare td .yes { color: var(--green-500); font-weight: 800; }
.compare td .no { color: var(--line); }
.compare tfoot td { border-bottom: 0; }
.compare .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-950); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
.field .hint { display: block; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 6px; }
.field select, .field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--white);
}
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--green-700); outline: none; box-shadow: 0 0 0 4px var(--green-100); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%231f5a3d' stroke-width='2' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
fieldset { border: 0; padding: 0; margin: 0 0 28px; }
legend { font-family: var(--font-display); font-size: 1.35rem; color: var(--green-950); margin-bottom: 14px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--line); border-radius: 999px; padding: 8px 14px; background: var(--white); cursor: pointer; font-weight: 600; font-size: 0.9rem; white-space: nowrap; flex: 0 0 auto; min-width: fit-content; }
/* iOS Safari shrinks flex items below their nowrap text (min-width:auto quirk),
   collapsing the pill and spilling the label outside it. flex-shrink:0 pins
   the pill to its content; flex-wrap on the row handles narrow screens. */
.radio-row input:checked + span { color: var(--green-900); }
.radio-row label:has(input:checked) { border-color: var(--green-700); background: var(--green-100); }
.radio-row input { accent-color: var(--green-700); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(20px, 3vw, 32px); }
.card + .card { margin-top: 18px; }
.card h2, .card h3 { margin-top: 0; }

.summary-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.summary-line:last-child { border-bottom: 0; }
.summary-line strong { font-weight: 700; }
.summary-line--total { font-family: var(--font-display); font-size: 1.35rem; color: var(--green-950); border-top: 2px solid var(--green-900); margin-top: 6px; padding-top: 14px; }
.summary-line .muted { color: var(--ink-soft); font-size: 0.85rem; display: block; font-weight: 400; }

.checkout-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }

.mock-banner {
  background: var(--orange-tint); border: 1px dashed var(--orange-deep); color: var(--orange-deep);
  border-radius: var(--radius-md); padding: 14px 18px; font-size: 0.9rem; margin-bottom: 24px;
}
.mock-banner strong { display: block; margin-bottom: 4px; }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.badge { font-size: 0.75rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-900); }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero { padding-block: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 56px); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 8px; }

/* --------------------------------------------------------------------------
   Gifts grid
   -------------------------------------------------------------------------- */
.gift-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .gift-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .gift-grid { grid-template-columns: repeat(3, 1fr); } }
.gift { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.gift img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gift__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gift__body h3 { margin: 0; }
.gift__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-950); }
.gift__body ul { margin: 4px 0 0; padding-left: 18px; font-size: 0.9rem; color: var(--ink-soft); }
.gift__body .btn { margin-top: auto; align-self: flex-start; }

/* --------------------------------------------------------------------------
   Account mock
   -------------------------------------------------------------------------- */
.account-grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .account-grid { grid-template-columns: repeat(2, 1fr); } }
.kv { display: grid; grid-template-columns: 140px 1fr; gap: 8px 14px; font-size: 0.93rem; margin: 0; }
.kv dt { color: var(--ink-soft); }
.kv dd { margin: 0; font-weight: 600; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--green-950); color: #c9dbd0; padding-block: clamp(48px, 7vw, 80px) 28px; margin-top: var(--section); }
.site-footer a { color: #e6efe9; text-decoration: none; }
.site-footer a:hover { color: var(--mint); text-decoration: underline; }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-brand img { width: 56px; height: 57px; background: var(--white); border-radius: 12px; padding: 6px; margin-bottom: 14px; }
.footer-brand p { max-width: 36ch; font-size: 0.93rem; }
.footer-brand .tagline { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.site-footer h4 { color: var(--white); margin: 0 0 12px; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 0.93rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.8rem; }
.footer-bottom .proto { color: var(--mint); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.87rem; }
.grid-2 { display: grid; gap: 20px; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 20px; }
.inline-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.9rem; color: var(--ink-soft); }
.inline-list li::before { content: "✓ "; color: var(--green-500); font-weight: 800; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .tier, .btn .arrow { transition: none; }
  .btn:hover, .tier:hover { transform: none; }
}

/* small utilities used by the generated pages */
.link-plain { text-decoration: none; color: inherit; }
.link-plain:hover { text-decoration: underline; color: inherit; }
.btn-row--center { justify-content: center; }
.on-dark { color: #c9dbd0; }
.fw-normal { font-weight: 400; }
.field__label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; color: var(--ink); }

/* nav CTA must win over the generic .site-nav a colour rules */
.site-nav a.btn { color: var(--white); background: var(--green-900); }
.site-nav a.btn:hover, .site-nav a.btn[aria-current="page"] { background: var(--green-700); color: var(--white); }

/* Hero: the intro offer, loud. */
.hero__offer { font-family: var(--font-display, inherit); font-size: clamp(1.5rem, 4vw, 2.4rem); line-height: 1.1; color: var(--orange-deep); font-weight: 800; margin: 6px 0 10px; }
.hero__offer strong { text-transform: uppercase; letter-spacing: 0.01em; }
