/* =========================================================
   Swirly's World - design tokens + base
   ========================================================= */

:root {
  /* Brand palette */
  --red: #cd2037;
  --red-dark: #971b27;
  --red-deep: #6b0f1a;
  --gold: #ffc83d;
  --gold-soft: #ffe39c;
  --brown: #391b13;
  --brown-soft: #5a352a;
  --cream: #fff8ec;
  --cream-warm: #fff1d6;
  --white: #ffffff;
  --ink: #1a1a2e;
  --ink-muted: #5a5a72;
  --line: rgba(57, 27, 19, 0.12);

  /* Typography */
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Header offset */
  --nav-h: 76px;
  --logo-h: 132px;
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--brown);
}

/* Heading-ish divs safety net */
[class*="__title"], [class*="__name"], [class*="__label"], [class*="__amount"], [class*="__value"], [class*="__heading"] {
  line-height: 1.25;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brown); color: var(--cream);
  padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
  font-weight: 700; z-index: 1000;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: clamp(3.5rem, 8vw, 6rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); }
.section--cream { background: var(--cream); }
.section--cream-warm { background: var(--cream-warm); }
.section--brown { background: var(--brown); color: var(--cream); }
.section--brown h1, .section--brown h2, .section--brown h3 { color: var(--cream); }
.section--brown .feature__lead,
.section--brown .section__lead { color: rgba(255, 248, 236, 0.82); }
.section--brown .feature__bullets li,
.section--brown p { color: var(--cream); }

.section--red { background: var(--red); color: var(--white); }
.section--red h1, .section--red h2, .section--red h3 { color: var(--white); }
.section--red .feature__lead,
.section--red .section__lead { color: rgba(255, 255, 255, 0.9); }
.section--red .feature__bullets li,
.section--red p { color: var(--white); }
.section--red .feature__bullets li::before { background: var(--white); color: var(--red); }
.section--tight { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.section--brown .eyebrow,
.section--red .eyebrow { color: var(--gold); }
.section--brown .eyebrow::before,
.section--red .eyebrow::before { background: var(--gold); }

.section__head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head .eyebrow { margin-bottom: 14px; }
.section__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-bottom: 1rem;
}
.section__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 60ch;
}
.section--brown .section__lead,
.section--red .section__lead { color: rgba(255,248,236,0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.005em;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
  cursor: pointer;
}
.btn--primary { background: var(--red); color: var(--white); box-shadow: 0 6px 18px -8px rgba(205, 32, 55, 0.7); }
.btn--primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(205, 32, 55, 0.7); }
.btn--gold { background: var(--gold); color: var(--brown); box-shadow: 0 6px 18px -8px rgba(255, 200, 61, 0.6); }
.btn--gold:hover { background: var(--gold-soft); color: var(--brown); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn--ghost:hover { background: var(--brown); color: var(--cream); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(255,248,236,0.4); }
.btn--ghost-light:hover { background: var(--cream); color: var(--brown); }
.btn--sm { padding: 10px 18px; font-size: 0.92rem; }

/* Site header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 18px -10px rgba(57, 27, 19, 0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-h);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
}
.nav__logo-wrap {
  display: inline-grid;
  place-items: center;
  width: var(--logo-h);
  height: var(--logo-h);
  position: relative;
  z-index: 1;
  /* Protrude below the header */
  margin-bottom: calc((var(--logo-h) - var(--nav-h)) * -1);
  margin-top: calc((var(--logo-h) - var(--nav-h)) * 0.5 * -1);
  transition: width 0.28s var(--ease), height 0.28s var(--ease), margin 0.28s var(--ease), transform 0.18s var(--ease);
}
.site-header.is-scrolled .nav__logo-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  margin-top: 0;
}
.nav__brand:hover .nav__logo-wrap { transform: translateY(-2px); }
.nav__logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(57, 27, 19, 0.18));
}
.nav__flag {
  width: 28px;
  height: auto;
  display: inline-block;
  border-radius: 3px;
  outline: 1px solid rgba(57, 27, 19, 0.18);
  outline-offset: 0;
  box-shadow: 0 1px 2px rgba(57, 27, 19, 0.12);
}

.nav__links {
  display: none;
  list-style: none;
  padding: 0;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--brown);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.96rem;
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--red); }
.nav__links a.is-active { color: var(--red); }
.nav__links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red); border-radius: 2px;
}

.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--brown);
}
.nav__toggle:hover { background: rgba(57, 27, 19, 0.08); }
.nav__toggle .bar {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 auto;
  width: min(360px, 88vw);
  background: var(--cream);
  border-left: 1px solid var(--line);
  padding: 2rem var(--gutter);
  transform: translateX(105%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 49;
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer-links {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.nav__drawer-links a {
  display: block;
  padding: 14px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown);
  border-radius: var(--radius-sm);
}
.nav__drawer-links a:hover { background: var(--cream-warm); color: var(--red); }
.nav__drawer-cta { margin-top: 1rem; }
.nav__drawer-cta .btn { width: 100%; }

.nav__overlay {
  position: fixed; inset: 0;
  background: rgba(57, 27, 19, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 48;
}
.nav__overlay.is-open { opacity: 1; pointer-events: auto; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav .nav__toggle { display: none; }
  .nav__drawer, .nav__overlay { display: none; }
}
@media (max-width: 768px) {
  :root { --logo-h: 100px; }
}
@media (max-width: 480px) {
  :root { --logo-h: 84px; }
  .nav__flag { width: 24px; }
}

/* Inner-page hero (smaller, just title + lead) */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 200, 61, 0.28), transparent 38%),
    radial-gradient(circle at 88% 16%, rgba(205, 32, 55, 0.16), transparent 42%);
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.page-hero__kicker::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--red);
}
.page-hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-hero__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--brown-soft);
  max-width: 60ch;
  margin: 0 auto;
}
.page-hero--with-banner { padding-top: 0; padding-bottom: 0; }
.page-hero__banner {
  width: 100%;
  height: clamp(180px, 22vw, 320px);
  overflow: hidden;
  position: relative;
}
.page-hero__banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* Product detail block (anchor section in confectionery / fryums / stuffables) */
.product-detail {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.product-detail + .product-detail {
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 5vw, 4.5rem);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}
.product-detail--reverse .product-detail__media { order: -1; }
.product-detail__media {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
}
.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail__kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.product-detail__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
}
.product-detail__lead {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.product-detail__bullets {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.product-detail__bullets li {
  display: flex; gap: 12px;
  font-weight: 500;
}
.product-detail__bullets li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
}
.product-detail__ingredients {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.product-detail__ingredients h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.product-detail__ingredients ul {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 12px;
  font-size: 0.94rem;
  color: var(--brown-soft);
}
.product-detail__ingredients li::after { content: '·'; margin-left: 12px; opacity: 0.4; }
.product-detail__ingredients li:last-child::after { content: ''; }
.product-detail__amazon {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 1.5rem;
}
.product-detail__amazon a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--brown);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.product-detail__amazon a:hover { background: var(--ink); color: var(--cream); }
.product-detail__amazon .flag { font-size: 1.05em; }
@media (min-width: 800px) {
  .product-detail { grid-template-columns: 1fr 1.2fr; }
}

/* Anchor / sub-nav on multi-section pages */
.subnav {
  position: sticky;
  top: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  z-index: 30;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.subnav__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  white-space: nowrap;
  justify-content: center;
}
@media (max-width: 700px) {
  .subnav__list { justify-content: flex-start; }
}
.subnav__list a {
  display: inline-block;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.subnav__list a:hover { color: var(--red); }
.subnav__list a.is-active { color: var(--red); border-bottom-color: var(--red); }

/* Form */
.form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}
.form__row { display: grid; gap: 6px; }
.form__row label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown);
}
.form__row input,
.form__row textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.form__row input:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(205, 32, 55, 0.15);
}
.form__row textarea { min-height: 140px; resize: vertical; }
.form__actions { margin-top: 0.5rem; }

/* FAQ accordion */
.faq {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
  transition: transform 0.18s var(--ease);
}
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { color: var(--red); }
.faq__answer {
  padding: 0 22px 18px;
  color: var(--ink-muted);
}

/* Address card */
.address-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .address-grid { grid-template-columns: repeat(2, 1fr); } }
.address {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.address h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.address h3 .flag { width: 28px; outline: 1px solid rgba(57,27,19,0.18); border-radius: 3px; }
.address__company {
  font-weight: 600; color: var(--brown); margin-bottom: 6px; margin-top: 0.5rem;
}
.address address {
  font-style: normal; color: var(--ink-muted); margin-bottom: 0.75rem;
  line-height: 1.6;
}
.address__phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--red);
  font-family: var(--font-display);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 200, 61, 0.32), transparent 38%),
    radial-gradient(circle at 92% 18%, rgba(205, 32, 55, 0.18), transparent 42%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  z-index: 1;
}
.hero__copy { max-width: 620px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px 24px 12px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 22px -12px rgba(205, 32, 55, 0.4);
}
.hero__eyebrow .flag {
  width: 44px;
  height: auto;
  display: inline-block;
  border-radius: 4px;
  outline: 1px solid rgba(57, 27, 19, 0.18);
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--brown-soft);
  margin-bottom: 2rem;
  max-width: 56ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 0.92rem;
  color: var(--brown-soft);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.hero__trust-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 0.7rem; font-weight: 700;
}

.hero__stage {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(57, 27, 19, 0.3);
  border: 6px solid var(--white);
}
.hero__stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
  }
}

/* Product showcase grid */
.products {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .products { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}

.product {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(57, 27, 19, 0.35);
}
.product__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.product__media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.product__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 1;
}
.product__badge--new { background: var(--red); color: var(--white); }
.product__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.product__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brown);
  font-family: var(--font-display);
  line-height: 1.2;
}
.product__desc {
  font-size: 0.96rem;
  color: var(--ink-muted);
  flex: 1;
}
.product__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
  margin-top: 6px;
}
.product__cta::after {
  content: '→';
  transition: transform 0.18s var(--ease);
  display: inline-block;
}
.product:hover .product__cta::after { transform: translateX(4px); }

/* Product feature row (one product hero-style) */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.feature--reverse .feature__media { order: -1; }
.feature__media {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
}
.feature__media img {
  max-height: 100%; width: auto; object-fit: contain;
}
.feature__media--bleed {
  padding: 0;
  border: 0;
  aspect-ratio: auto;
  overflow: hidden;
}
.feature__media--bleed img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
}
.feature__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}
.feature__lead {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}
.feature__bullets {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.feature__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--brown);
  font-weight: 500;
}
.feature__bullets li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
}

/* Strip / quick-stat row */
.strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip__item {
  text-align: center;
  padding: 1.5rem;
}
.strip__value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.section--brown .strip__value,
.section--red .strip__value { color: var(--gold); }
.strip__label {
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.section--brown .strip__label,
.section--red .strip__label { color: rgba(255,248,236,0.75); }

/* CTA banner */
.cta-banner {
  background: var(--brown);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(255, 200, 61, 0.18), transparent 50%);
  z-index: 0;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 6px;
}
.cta-banner__lead {
  color: rgba(255,248,236,0.78);
  max-width: 50ch;
}
.cta-banner__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (min-width: 800px) {
  .cta-banner { grid-template-columns: 1.6fr auto; }
}

/* Footer */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,248,236,0.12);
  align-items: flex-start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 360px;
}
.footer__logo {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.footer__tag {
  color: rgba(255,248,236,0.78);
  font-size: 0.95rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__col a {
  color: rgba(255,248,236,0.85);
  font-weight: 500;
  font-size: 0.95rem;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,248,236,0.55);
}
.footer__bottom a { color: rgba(255,248,236,0.85); }
@media (min-width: 700px) {
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .footer__top { grid-template-columns: 1.4fr 2fr; }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Distributor popup */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(57, 27, 19, 0.55);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 100;
}
.popup-overlay.is-open { opacity: 1; pointer-events: auto; }
.popup {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  border-top: 6px solid var(--red);
}
.popup-overlay.is-open .popup { transform: translateY(0); opacity: 1; }
.popup__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--brown);
  font-size: 1.4rem;
  line-height: 1;
}
.popup__close:hover { background: rgba(57, 27, 19, 0.08); }
.popup__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
}
.popup__title {
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.popup__lead {
  color: var(--brown-soft);
  margin-bottom: 1.5rem;
}
.popup__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
}

/* Reveal - only cloaked when JS has wired up the observer */
.reveal { opacity: 1; transform: none; }
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
body.js-ready .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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