/* ==========================================================================
   Smart Cooking Canada — Design System (Hybrid)
   Impeccable foundations + editorial funnel moments
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* OKLCH palette — neutrals tinted toward brand green (hue 145) */
  --green-base: oklch(0.62 0.18 145);
  --green-dark: oklch(0.52 0.16 145);
  --green-light: oklch(0.94 0.05 145);

  --surface-primary: oklch(0.993 0.003 145);
  --surface-secondary: oklch(0.97 0.005 145);
  --surface-tertiary: oklch(0.96 0.003 145);

  --text-primary: oklch(0.22 0.01 145);
  --text-secondary: oklch(0.42 0.01 145);
  --text-muted: oklch(0.55 0.008 145);

  --border: oklch(0.9 0.01 145);
  --border-subtle: oklch(0.93 0.008 145);

  /* Typography */
  --font-body: 'Poppins', -apple-system, system-ui, sans-serif;
  --font-display: 'Poppins', -apple-system, system-ui, sans-serif;

  /* Fluid type scale — 1.25 ratio, clamp-based */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.35rem, 1.1rem + 0.8vw, 1.6rem);
  --text-2xl: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --text-4xl: clamp(2.4rem, 1.7rem + 2.8vw, 3.8rem);

  /* 4pt spacing scale with semantic names */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadows — tinted toward brand */
  --shadow-sm: 0 2px 8px oklch(0.2 0.02 145 / 0.06);
  --shadow-md: 0 8px 24px oklch(0.2 0.02 145 / 0.08);
  --shadow-lg: 0 16px 40px oklch(0.2 0.02 145 / 0.1);

  /* Layout */
  --container-max: 1140px;

  /* Easing — exponential ease-out (quart) */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--surface-primary);
  padding-top: 60px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--green-base); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Display font for headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: var(--text-3xl); margin-bottom: var(--space-md); }
h2 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--text-xl); margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-md); color: var(--text-secondary); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-lg); }

/* ---------- Entrance animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--green-base);
  color: var(--surface-primary);
  padding: var(--space-sm) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  font-weight: 600;
  text-align: center;
}
.promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.promo-bar-text { font-size: var(--text-sm); }
.promo-bar .cta {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-xs);
  background: var(--surface-primary);
  color: var(--green-base);
  border-radius: var(--radius-sm);
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}
.promo-bar .cta:hover {
  background: var(--surface-secondary);
  transform: translateY(-1px);
  text-decoration: none;
}
.promo-bar-close {
  background: none;
  border: none;
  color: var(--surface-primary);
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  padding: var(--space-xs);
  line-height: 1;
  transition: opacity 0.2s var(--ease-out);
}
.promo-bar-close:hover { opacity: 1; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--surface-primary);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 48px;
  z-index: 90;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-primary);
}
.main-nav ul { display: flex; gap: var(--space-lg); list-style: none; }
.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: color 0.2s var(--ease-out);
}
.main-nav a:hover { color: var(--green-base); text-decoration: none; }
.lang-switch a {
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease-out);
}
.lang-switch a:hover { border-color: var(--green-base); text-decoration: none; }

/* ---------- CTAs ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  font-size: var(--text-base);
  cursor: pointer;
  min-height: 48px;
  line-height: 1.2;
}
.cta-primary {
  background: var(--green-base);
  color: var(--surface-primary);
}
.cta-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.cta-secondary {
  background: transparent;
  color: var(--green-base);
  border: 2px solid var(--green-base);
}
.cta-secondary:hover {
  background: var(--green-base);
  color: var(--surface-primary);
  text-decoration: none;
}
.cta-text {
  background: transparent;
  color: var(--green-base);
  padding: var(--space-sm) 0;
}

/* ---------- Hero (money/info pages) ---------- */
.hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: var(--surface-secondary);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: var(--space-3xl);
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--green-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
  margin-bottom: var(--space-sm);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  line-height: 1.08;
}
.hero-subhead {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 55ch;
}
.hero-cta-row { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s var(--ease-out);
}
.hero-image img:hover { box-shadow: var(--shadow-lg); }

/* ---------- TL;DR box (no side stripe — uses bg tint) ---------- */
.tldr {
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-2xl) auto;
  max-width: 800px;
}
.tldr-question {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}
.tldr-answer { color: var(--text-primary); margin-bottom: 0; }

/* ---------- Trust bar (inline typographic) ---------- */
.trust-bar {
  background: var(--surface-secondary);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
}
.trust-fact {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--space-xs) var(--space-lg);
  white-space: nowrap;
}
.trust-fact:not(:last-child) {
  border-right: 1px solid var(--border);
}
.trust-fact strong {
  color: var(--green-base);
  font-weight: 700;
}
.trust-activate {
  color: var(--green-base);
  font-size: var(--text-xs);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.trust-activate:hover { opacity: 1; }

/* ---------- Page body ---------- */
.page-body {
  padding: var(--space-3xl) var(--space-lg);
  max-width: 65ch;
}
.page-body h2 { margin-top: var(--space-2xl); }
.page-body h3 { margin-top: var(--space-xl); }
.page-body p, .page-body li {
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: 1.7;
}
/* Unordered lists: green dot bullets */
.page-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-lg);
}
.page-body ul li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.page-body ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--green-base);
  border-radius: 50%;
}

/* Ordered lists: green numbered circles */
.page-body ol {
  list-style: none;
  counter-reset: body-counter;
  padding-left: 0;
  margin-bottom: var(--space-lg);
}
.page-body ol li {
  counter-increment: body-counter;
  position: relative;
  padding-left: calc(var(--space-xl) + var(--space-sm));
  margin-bottom: var(--space-md);
}
.page-body ol li::before {
  content: counter(body-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  background: var(--green-base);
  color: var(--surface-primary);
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-weight: 700;
  font-size: var(--text-xs);
  font-family: var(--font-display);
}

.page-body a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: oklch(0.62 0.18 145 / 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s var(--ease-out);
}
.page-body a:hover {
  text-decoration-color: var(--green-base);
}

/* Body images */
.page-body img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}

/* About avatar (circular headshot) */
.page-body img.about-avatar {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) auto;
}

/* Table wrapper for mobile scroll */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-xl) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.page-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.page-body th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--text-sm);
  background: var(--surface-secondary);
  padding: var(--space-md);
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.page-body td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.page-body tr:nth-child(even) td {
  background: var(--surface-secondary);
}

/* Pull-quote blockquotes in body copy */
.page-body blockquote {
  margin: var(--space-lg) 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--green-light);
  border-radius: var(--radius-md);
  position: relative;
}
.page-body blockquote::before {
  content: '\201C';
  position: absolute;
  top: var(--space-sm);
  left: var(--space-lg);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--green-base);
  opacity: 0.18;
  pointer-events: none;
}
.page-body blockquote p {
  font-style: italic;
  color: var(--text-primary);
  padding-left: var(--space-md);
  margin: 0;
  line-height: 1.7;
}

/* Reviewer byline headings on the reviews page */
.page-body--reviews h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--green-base);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-xs);
}

/* ---------- Info page header ---------- */
.info-header {
  background: var(--surface-secondary);
  padding: var(--space-4xl) var(--space-lg) var(--space-3xl);
  border-bottom: 1px solid var(--border-subtle);
}
.info-header h1 {
  font-size: var(--text-3xl);
  max-width: 20ch;
}
.info-subhead {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 55ch;
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

/* ---------- Logistics page header ---------- */
.logistics-header {
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
}

.logistics-header.has-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.logistics-header.has-media .logistics-header-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .logistics-header.has-media {
    grid-template-columns: 1.1fr 1fr;
  }

  .logistics-header.has-media .logistics-header-media img {
    max-height: 420px;
  }
}

/* ---------- Shipping callout ---------- */
.shipping-callout {
  background: linear-gradient(135deg, var(--green-base), var(--green-dark));
  color: var(--surface-primary);
  padding: var(--space-3xl) 0;
  margin: var(--space-3xl) 0;
  text-align: center;
}
.shipping-callout h3 {
  font-family: var(--font-display);
  color: var(--surface-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-2xl);
}
.shipping-callout p {
  color: oklch(0.97 0.01 145);
  margin-bottom: var(--space-lg);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
.shipping-callout .cta-primary {
  background: var(--surface-primary);
  color: var(--green-base);
}
.shipping-callout .cta-primary:hover {
  background: var(--surface-secondary);
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--surface-secondary);
}
.faq-section h2 { text-align: center; margin-bottom: var(--space-2xl); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  padding: var(--space-lg);
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::marker { display: none; }
.faq-answer { color: var(--text-secondary); margin-top: var(--space-sm); }

/* ---------- Related pages grid ---------- */
.related-pages { padding: var(--space-4xl) 0; }
.related-pages h2 { text-align: center; margin-bottom: var(--space-2xl); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.related-card {
  background: var(--surface-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.related-card h3 { color: var(--text-primary); margin-bottom: var(--space-sm); }
.related-card p { font-size: var(--text-sm); margin-bottom: var(--space-sm); }
.related-cta { color: var(--green-base); font-weight: 600; font-size: var(--text-sm); }

/* ---------- Review cards section ---------- */
.review-section {
  padding: var(--space-4xl) 0;
  background: var(--surface-secondary);
}
.review-section-header {
  margin-bottom: var(--space-3xl);
}
.review-eyebrow {
  font-weight: 600;
  color: var(--green-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
  margin-bottom: var(--space-sm);
}
.review-section-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}
.review-aggregate {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.review-aggregate-stars {
  color: var(--green-base);
  font-size: var(--text-base);
  letter-spacing: -0.04em;
}
.review-aggregate strong {
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--text-base);
}
.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}
.review-card {
  background: var(--surface-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-card--hero {
  grid-column: span 2;
  padding: var(--space-2xl);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}
.review-card-stars {
  color: var(--green-base);
  font-size: var(--text-lg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.review-card--hero .review-card-stars {
  font-size: var(--text-xl);
}
.review-card-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--green-base);
  background: var(--green-light);
  padding: 3px var(--space-sm);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.review-card-quote {
  margin: 0 0 var(--space-lg);
  position: relative;
}
.review-card-quote::before {
  content: '\201C';
  display: block;
  font-size: clamp(2.8rem, 4vw, 4rem);
  color: var(--green-base);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: calc(var(--space-sm) * -1);
}
.review-card-quote p {
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
  font-size: var(--text-base);
}
.review-card--hero .review-card-quote p {
  font-size: var(--text-lg);
  line-height: 1.65;
}
.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  gap: var(--space-md);
}
.review-card-author {
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-primary);
}
.review-card-year {
  font-size: var(--text-xs);
  color: var(--text-muted);
  white-space: nowrap;
}
.review-section-cta {
  text-align: center;
  margin-top: var(--space-3xl);
}

/* ---------- Mid-CTA + final CTA ---------- */
.mid-cta, .info-cta, .logistics-cta {
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}
.final-cta {
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  background: var(--surface-secondary);
}
.final-cta h2 {
  margin-bottom: var(--space-sm);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text-primary);
  color: var(--surface-primary);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
}
.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-group h4 {
  font-family: var(--font-display);
  color: var(--surface-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-group ul { list-style: none; }
.footer-group li { margin-bottom: var(--space-sm); }
.footer-group a {
  color: oklch(0.8 0.01 145);
  font-size: var(--text-sm);
  transition: color 0.2s var(--ease-out);
}
.footer-group a:hover { color: var(--green-base); text-decoration: none; }
.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid oklch(0.35 0.01 145);
  text-align: center;
}
.footer-bottom p {
  color: oklch(0.6 0.01 145);
  font-size: var(--text-xs);
  margin-bottom: var(--space-sm);
}
.disclosure { font-style: italic; }

/* ---------- Hamburger toggle (hidden on desktop) ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  flex-direction: column;
  gap: 5px;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   FUNNEL PAGE — Editorial moments layered on the systematic base
   ========================================================================== */

/* ---------- Funnel shared ---------- */
.funnel-section { padding: var(--space-4xl) 0; }
.funnel-section:nth-child(even) { padding: var(--space-3xl) 0; }
.funnel-section-header { text-align: left; margin-bottom: var(--space-2xl); max-width: 700px; }
.funnel-section-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  font-weight: 800;
}
.funnel-section-header h2 span { color: var(--green-base); }
.funnel-section-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}
.funnel-center-cta { text-align: center; margin-top: var(--space-2xl); }

/* ---------- A. Video Hero ---------- */
.funnel-hero {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--surface-primary);
  text-align: left;
  overflow: hidden;
}
.funnel-hero__video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.funnel-hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: oklch(0.15 0.02 145 / 0.55);
  z-index: 1;
}
.funnel-hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.funnel-hero__content h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.05;
  color: var(--surface-primary);
  letter-spacing: -0.02em;
}
.funnel-hero__content h1 span {
  color: var(--green-base);
  display: block;
}
.funnel-hero__content > p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  color: var(--surface-primary);
  opacity: 0.92;
  max-width: 50ch;
}
.funnel-hero__trust {
  font-size: var(--text-xs);
  margin-top: var(--space-md);
  opacity: 0.8;
  color: var(--surface-primary);
}

/* Hero entrance animation (staggered) */
.funnel-hero__content h1 {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-reveal 0.8s var(--ease-out) 0.2s forwards;
}
.funnel-hero__content > p {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-reveal 0.7s var(--ease-out) 0.5s forwards;
}
.funnel-hero__content .cta {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-reveal 0.6s var(--ease-out) 0.75s forwards;
}
.funnel-hero__trust {
  opacity: 0;
  animation: hero-reveal 0.6s var(--ease-out) 0.95s forwards;
}

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- B. Before / After ---------- */
.funnel-before-after { background-color: var(--surface-secondary); }
.funnel-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: flex-start;
}
.funnel-ba-card {
  background: var(--surface-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}
.funnel-ba-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.funnel-ba-card--after h3 { color: var(--green-base); }
.funnel-ba-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}
.funnel-ba-card ul { list-style: none; padding: 0; color: var(--text-secondary); }
.funnel-ba-card ul li { margin-bottom: var(--space-xs); }
.funnel-ba-card ul li:first-child { font-weight: 600; color: var(--text-primary); }

/* ---------- C. Cookidoo Carousel ---------- */
.funnel-cookidoo { padding-bottom: 0; }
.funnel-cookidoo-intro {
  text-align: left;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}
.funnel-cookidoo-intro h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  font-weight: 800;
}
.funnel-cookidoo-intro h2 span { color: var(--green-base); }
.funnel-cookidoo-intro p {
  margin-bottom: var(--space-xl);
  color: var(--text-secondary);
  font-size: var(--text-lg);
}
.funnel-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-2xl) 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  cursor: grab;
}
.funnel-carousel-wrap.grabbing { cursor: grabbing; }
.funnel-carousel {
  display: flex;
  gap: var(--space-lg);
  width: fit-content;
  will-change: transform;
}
.funnel-carousel-card {
  flex: 0 0 280px;
  background-color: var(--surface-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  user-select: none;
}
.funnel-carousel-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-base);
}
.funnel-carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.funnel-carousel-card h4 {
  padding: var(--space-lg) var(--space-md);
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 700;
}
.funnel-carousel-cta {
  background-color: var(--green-base);
  color: var(--surface-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  text-decoration: none;
  border-color: var(--green-base);
}
.funnel-carousel-cta:hover { text-decoration: none; }
.funnel-carousel-cta h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
  color: var(--surface-primary);
}
.funnel-carousel-cta p {
  font-size: var(--text-sm);
  opacity: 0.9;
  margin-bottom: var(--space-md);
  color: var(--surface-primary);
}
.funnel-carousel-cta span {
  font-size: 2.5rem;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
}
.funnel-carousel-cta:hover span { transform: translateX(8px); }

/* ---------- D. Feature Cards (asymmetric) ---------- */
.funnel-features { background-color: var(--surface-secondary); }
.funnel-features-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}
.funnel-feature-card {
  background: var(--surface-primary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.funnel-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.funnel-feature-card:first-child {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}
.funnel-feature-card:first-child img {
  flex: 1;
  object-fit: cover;
  min-height: 240px;
}
.funnel-feature-card img {
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  width: 100%;
}
.funnel-feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.funnel-feature-card p { color: var(--text-secondary); }

/* ---------- E. What's Included ---------- */
.funnel-included { background-color: var(--surface-primary); }
.funnel-included-split {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}
.funnel-included-img, .funnel-included-body { flex: 1; }
.funnel-included-img img { border-radius: var(--radius-lg); }
.funnel-included-body h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}
.funnel-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.funnel-checklist li {
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
  line-height: 1.5;
}
.funnel-checklist li::before {
  content: '\2713';
  color: var(--green-base);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
  font-size: var(--text-lg);
}
.funnel-checklist a {
  color: var(--green-base);
  text-decoration: underline;
  font-weight: 600;
}
.funnel-checklist a:hover { text-decoration: none; }
.funnel-checklist-bonus { font-weight: 600; }

/* ---------- F. Reviews ---------- */
.funnel-reviews { background-color: var(--surface-secondary); }
.funnel-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.funnel-review-card {
  background: var(--surface-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.funnel-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.funnel-review-card--hero {
  grid-column: 1 / -1;
  padding: var(--space-2xl);
}
.funnel-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}
.funnel-review-stars {
  color: var(--green-base);
  font-size: var(--text-lg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.funnel-review-card--hero .funnel-review-stars {
  font-size: var(--text-xl);
}
.funnel-review-quote {
  margin: 0 0 var(--space-lg);
  position: relative;
}
.funnel-review-quote::before {
  content: '\201C';
  display: block;
  font-size: clamp(2.8rem, 4vw, 4rem);
  color: var(--green-base);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: calc(var(--space-sm) * -1);
}
.funnel-review-quote p {
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
  font-size: var(--text-base);
}
.funnel-review-card--hero .funnel-review-quote p {
  font-size: var(--text-lg);
  line-height: 1.65;
}
.funnel-review-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}
.funnel-review-author {
  font-style: normal;
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* ---------- G. About / Story ---------- */
.funnel-story { background-color: var(--surface-primary); }
.funnel-story-split {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}
.funnel-story-photo, .funnel-story-body { flex: 1; }
.funnel-story-photo { max-width: 360px; margin: 0 auto; }
.funnel-story-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 65% 55%;
  box-shadow: var(--shadow-lg);
}
.funnel-story-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.funnel-story-body h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  font-weight: 800;
}
.funnel-story-body p { margin-bottom: var(--space-md); }
.funnel-story-cta { margin-top: var(--space-xl); }

/* ---------- H. FAQ Accordion ---------- */
.funnel-faq { background-color: var(--surface-secondary); }
.funnel-faq-list { max-width: 800px; margin: 0 auto; }
.funnel-faq-item {
  background: var(--surface-primary);
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.funnel-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: var(--space-lg);
  text-align: left;
  font-size: var(--text-base);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  gap: var(--space-md);
}
.funnel-faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-base);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.funnel-faq-item.active .funnel-faq-q::after {
  transform: rotate(45deg);
}
.funnel-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.funnel-faq-item.active .funnel-faq-a {
  grid-template-rows: 1fr;
}
.funnel-faq-a > * {
  overflow: hidden;
}
.funnel-faq-a p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}
.funnel-faq-a a {
  color: var(--green-base);
  text-decoration: underline;
  font-weight: 600;
}

/* ---------- I. YouTube Video ---------- */
.funnel-video { background-color: var(--text-primary); color: var(--surface-primary); }
.funnel-section-header--light h2 { color: var(--surface-primary); }
.funnel-section-header--light p { color: oklch(0.75 0.01 145); }
.funnel-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px oklch(0.1 0.02 145 / 0.4);
}
.funnel-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---------- J. Confirmation ---------- */
.funnel-confirm { background-color: var(--surface-primary); padding-bottom: 0; }
.funnel-confirm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}
.funnel-confirm-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.funnel-confirm-visual p {
  text-align: center;
  padding: var(--space-sm);
  background: var(--surface-secondary);
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}
.funnel-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}
.funnel-bar--green {
  background-color: var(--green-base);
  color: var(--surface-primary);
}
.funnel-bar--green img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: oklch(0.97 0.01 145);
}
.funnel-bar-name { font-weight: 700; }
.funnel-bar--gray {
  background-color: var(--surface-secondary);
  color: var(--text-primary);
}
.funnel-bar--gray a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
}
.funnel-confirm-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: var(--text-base);
  color: var(--text-secondary);
  text-align: center;
}

/* ---------- K. Final CTA ---------- */
.funnel-final-cta { background-color: var(--surface-secondary); }
.funnel-final-split {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}
.funnel-final-body, .funnel-final-img { flex: 1; }
.funnel-final-img img { max-width: 400px; margin: 0 auto; border-radius: var(--radius-lg); }
.funnel-final-body h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  text-align: left;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.funnel-final-body > p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}
.funnel-final-trust {
  font-size: var(--text-xs);
  margin-top: var(--space-md);
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-headline { font-size: var(--text-3xl); }
  .site-header .container { flex-wrap: wrap; }
  .main-nav ul { flex-wrap: wrap; gap: var(--space-md); }
  .related-grid { grid-template-columns: 1fr; }
  .footer-groups { grid-template-columns: 1fr; gap: var(--space-xl); }

  .funnel-ba-grid { grid-template-columns: 1fr; }
  .funnel-features-grid { grid-template-columns: 1fr; }
  .funnel-feature-card:first-child { grid-row: auto; }
  .funnel-included-split { flex-direction: column; }
  .funnel-story-split { flex-direction: column-reverse; }
  .funnel-story-photo { margin-bottom: var(--space-xl); max-width: 280px; }
  .funnel-final-split { flex-direction: column-reverse; text-align: center; }
  .funnel-final-body h2,
  .funnel-final-body > p { text-align: center; }

  /* Review cards: 2-col on tablet, hero spans both */
  .review-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card--hero { grid-column: 1 / -1; }

  /* Trust bar wraps on narrow */
  .trust-row { flex-wrap: wrap; justify-content: center; }
  .trust-fact { border-right: none; padding: var(--space-xs) var(--space-md); }
}

@media (max-width: 768px) {
  body { padding-top: 0; }

  /* Hamburger menu */
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) 0 var(--space-xs);
  }
  .main-nav li a {
    display: block;
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--border);
  }
  .site-header .container { flex-wrap: wrap; }
  .lang-switch { margin-left: auto; }

  /* Promo bar — let it scroll on mobile so it doesn't overlap the header */
  .promo-bar { position: relative; }
  .promo-bar .container { gap: var(--space-sm); }
  .promo-bar-text { font-size: var(--text-xs); flex: 1; }
  .promo-bar .cta { padding: var(--space-xs) var(--space-md); font-size: var(--text-xs); }

  /* Header sticks to top since promo bar scrolls away */
  .site-header { top: 0; }

  /* Funnel pages: overlay header on the hero */
  body:has(.funnel-hero) .site-header {
    position: absolute;
    top: auto;
    width: 100%;
    background: transparent;
    border-bottom: none;
    z-index: 10;
  }
  body:has(.funnel-hero) .nav-toggle__bar {
    background: var(--surface-primary);
  }
  body:has(.funnel-hero) .lang-switch a {
    color: var(--surface-primary);
    border-color: rgba(255, 255, 255, 0.3);
  }

  /* When nav is open, darken the entire header */
  body:has(.funnel-hero) .site-header:has(.is-open) {
    background: oklch(0.12 0.01 145 / 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  body:has(.funnel-hero) .main-nav.is-open a {
    color: var(--surface-primary);
  }
  body:has(.funnel-hero) .main-nav li a {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  /* Trust bar */
  .trust-fact { font-size: var(--text-xs); }

  /* Funnel hero */
  .funnel-hero {
    text-align: center;
    min-height: 500px;
    height: 100vh;
    justify-content: center;
  }
  .funnel-hero__content { margin: 0 auto; }

  /* Section headers center on mobile */
  .funnel-section-header { text-align: center; margin-left: auto; margin-right: auto; }
  .funnel-cookidoo-intro { text-align: center; }

  /* Carousel cards */
  .funnel-carousel-card { flex: 0 0 240px; }
  .funnel-carousel-card img { height: 170px; }

  /* Reviews: single column on mobile */
  .funnel-reviews-grid { grid-template-columns: 1fr; }
  .funnel-review-card--hero { grid-column: 1; padding: var(--space-xl); }
  .funnel-review-card--hero .funnel-review-quote p { font-size: var(--text-base); }
}

@media (max-width: 480px) {

  .funnel-section { padding: var(--space-2xl) 0; }
  .hero { padding: var(--space-2xl) 0; }
  .faq-section { padding: var(--space-2xl) 0; }
  .related-pages { padding: var(--space-2xl) 0; }
  .shipping-callout { padding: var(--space-xl) 0; margin: var(--space-xl) 0; }

  .cta { padding: var(--space-sm) var(--space-lg); font-size: var(--text-sm); }
  .hero-cta-row { justify-content: center; }

  .funnel-confirm-grid { grid-template-columns: 1fr; }

  .funnel-included-split,
  .funnel-story-split,
  .funnel-final-split { gap: var(--space-xl); }

  /* Review cards: single column on mobile */
  .review-cards-grid { grid-template-columns: 1fr; }
  .review-card--hero { grid-column: 1; padding: var(--space-xl); }
  .review-card--hero .review-card-quote p { font-size: var(--text-base); }

  .site-footer { padding: var(--space-xl) 0 var(--space-md); margin-top: var(--space-2xl); }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .funnel-hero__content h1,
  .funnel-hero__content > p,
  .funnel-hero__content .cta,
  .funnel-hero__trust {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   REDIRECT OVERLAY
   ========================================================================== */
#redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(0.18 0.01 145 / 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s var(--ease-out);
}
#redirect-overlay[hidden] { display: none; }
#redirect-overlay.is-hiding {
  opacity: 0;
  pointer-events: none;
}

.redirect-modal {
  background: var(--surface-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  width: min(280px, calc(100vw - var(--space-xl) * 2));
  text-align: center;
  box-shadow:
    0 4px 6px oklch(0.2 0.02 145 / 0.06),
    0 12px 40px oklch(0.2 0.02 145 / 0.18);
}

.redirect-ring-wrap {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 0 auto var(--space-md);
}
.redirect-ring-wrap svg {
  display: block;
  transform: rotate(-90deg);
}
.redirect-ring-track {
  fill: none;
  stroke: oklch(0.62 0.18 145 / 0.18);
  stroke-width: 5;
}
.redirect-ring-progress {
  fill: none;
  stroke: var(--green-base);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 163.4;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}
#redirect-count {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.redirect-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
  line-height: 1.4;
}
.redirect-notice {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  padding: var(--space-sm) var(--space-md);
  background: oklch(0.62 0.18 145 / 0.08);
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  #redirect-overlay { transition: none; }
  .redirect-ring-progress { transition: none; }
}
