/* Chanmar's Humble Mushrooms — site styles
   Organic design system tokens + page components. Mobile-first:
   base rules target phones, @media (min-width) blocks scale up. */

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --color-bg: #f5ead8;
  --color-surface: #ebddc5;
  --color-text: #201e1d;
  --color-accent: #c67139;
  --color-accent-2: #7a8a5e;
  --color-divider: rgba(32, 30, 29, .16);

  --color-neutral-100: #f9f4ed;
  --color-neutral-200: #eee7db;
  --color-neutral-300: #dcd3c4;
  --color-neutral-700: #645c50;
  --color-neutral-800: #474238;
  --color-neutral-900: #2e2b25;

  --color-accent-100: #fff2eb;
  --color-accent-200: #ffe1d0;
  --color-accent-600: #b2622d;
  --color-accent-700: #8c491a;
  --color-accent-800: #643312;
  --color-accent-900: #402310;

  --color-accent-2-100: #f0fae1;
  --color-accent-2-200: #e1eecc;
  --color-accent-2-300: #ccdbb2;
  --color-accent-2-700: #56633f;
  --color-accent-2-800: #3d472b;
  --color-accent-2-900: #272e1b;

  --font-heading: "Caprasimo", Georgia, serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-swoop: 56px;          /* the big bottom-right corner; grows on desktop */

  --shadow-sm: 0 1px 2px rgba(46, 43, 37, .14);
  --shadow-md: 0 3px 10px rgba(46, 43, 37, .16);
  --shadow-lg: 0 12px 32px rgba(46, 43, 37, .22);

  --gutter: clamp(16px, 5vw, 72px);
  --section: 64px;               /* vertical rhythm between sections */
  --section-lg: 72px;
  --header-h: 68px;
}
@media (min-width: 768px) {
  :root { --section: 96px; --section-lg: 112px; --radius-swoop: 120px; --header-h: 92px; }
}

/* ── Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip;               /* clip (not hidden) keeps the sticky header working on iPhone */
}
h1, h2, h3 {
  font-family: var(--font-heading); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.015em; margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
a { color: var(--color-accent-700); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-800); }
img, video { display: block; max-width: 100%; }
figure { margin: 0; }
button { font: inherit; color: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: rgba(198, 113, 57, .3); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--color-text); color: var(--color-bg);
  padding: 10px 16px; border-radius: 999px; text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 12px; color: var(--color-bg); }

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

/* ── Layout ─────────────────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding-inline: max(var(--gutter), env(safe-area-inset-left)) max(var(--gutter), env(safe-area-inset-right)); }
.section { padding-top: var(--section); }
.section-lg { padding-top: var(--section-lg); }
.stack { display: flex; flex-direction: column; gap: 16px; }
.stack-lg { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 768px) { .stack-lg { gap: 22px; } }

.page-head { padding: 40px 0 32px; display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 768px) { .page-head { padding: 64px 0 48px; gap: 20px; } }

/* Two-column split that collapses to one column on phones */
.split { display: grid; gap: 32px; align-items: center; }
.split--top { align-items: start; }
.split--end { align-items: end; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split--media-first > :first-child { order: 0; }
}
/* On phones, show the text before the photo unless told otherwise */
.split--text-first-mobile > .media { order: 2; }
@media (min-width: 860px) { .split--text-first-mobile > .media { order: 0; } }

.grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .grid { gap: 20px; } }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.grid-2--stack-sm { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2--stack-sm { grid-template-columns: repeat(2, 1fr); } }

/* ── Type ───────────────────────────────────────────────────────────── */
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-accent-700);
}
@media (min-width: 768px) { .kicker { font-size: 13px; } }
.kicker--sage { color: var(--color-accent-2-700); }
.kicker--light { color: var(--color-accent-2-300); }

.h1 { font-size: clamp(38px, 9vw, 84px); line-height: 1.02; }
.h1--narrow { max-width: 14ch; }
.h1--long { font-size: clamp(32px, 7.4vw, 84px); max-width: 16ch; }
.h2 { font-size: clamp(28px, 6.4vw, 52px); }
.h2--md { font-size: clamp(26px, 5.4vw, 44px); }
.h2--sm { font-size: clamp(24px, 5vw, 40px); }
.h3 { font-size: 22px; }
@media (min-width: 768px) { .h3 { font-size: 24px; } }

.lead { font-size: 18px; line-height: 1.6; }
@media (min-width: 768px) { .lead { font-size: 21px; } }
.body-lg { font-size: 16px; line-height: 1.7; }
@media (min-width: 768px) { .body-lg { font-size: 17px; line-height: 1.75; } }
.prose { display: flex; flex-direction: column; gap: 18px; max-width: 60ch; }
.measure { max-width: 54ch; }
.muted { color: var(--color-neutral-800); }
.link-arrow { font-weight: 700; font-size: 15px; align-self: flex-start; padding: 6px 0; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px;
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-heading); font-weight: 400; font-size: 16px; line-height: 1.2;
  text-decoration: none; cursor: pointer; color: var(--color-text); background: transparent;
  transition: background-color .15s ease;
  touch-action: manipulation;
}
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); color: var(--color-bg); }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: rgba(32, 30, 29, .07); color: var(--color-text); }
.btn-sage { background: var(--color-accent-2-200); color: var(--color-accent-2-900); }
.btn-sage:hover { background: var(--color-accent-2-100); color: var(--color-accent-2-900); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-self { align-self: flex-start; }
.icon { width: 20px; height: 20px; flex: none; }
/* Full-width, thumb-friendly CTAs on phones */
@media (max-width: 559px) {
  .btn-row > .btn, .btn-block-sm { width: 100%; align-self: stretch; }
}

/* ── Media frames ───────────────────────────────────────────────────── */
.washed { filter: saturate(.6) contrast(.85) brightness(1.1) opacity(.94); }
.frame { overflow: hidden; border-radius: var(--radius-lg); background: var(--color-surface); }
.frame img, .frame video { width: 100%; height: 100%; object-fit: cover; }
.frame--contain img { object-fit: contain; }
.ratio-1 { aspect-ratio: 1; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-16-10 { aspect-ratio: 16 / 10; }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.media-cap { width: 100%; max-width: 480px; justify-self: center; }
.media-cap--sm { max-width: 440px; }

/* ── Header / nav ───────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 234, 216, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding-top: env(safe-area-inset-top);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--color-divider); }
.nav-row { display: flex; align-items: center; gap: 12px 24px; padding-block: 10px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 46px; width: auto; mix-blend-mode: multiply; }
@media (min-width: 768px) { .nav-row { padding-block: 16px; } .brand img { height: 60px; } }

.nav-links { display: none; }
.nav-links a {
  display: block; font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap;
  padding: 8px 14px; border-radius: 999px; color: var(--color-text);
}
.nav-links a[aria-current="page"] { color: var(--color-accent-800); background: var(--color-accent-200); }
.nav-cta { display: none; }

.nav-toggle, .menu-close {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--color-divider);
  background: transparent; cursor: pointer; color: var(--color-text); text-decoration: none;
  touch-action: manipulation;
}
.nav-toggle:hover, .menu-close:hover { color: var(--color-text); background: var(--color-accent-100); }
.nav-toggle-bars { position: relative; width: 20px; height: 14px; }
.nav-toggle-bars span { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; }
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }

/* Mobile menu: a self-contained full-screen overlay with its own logo + close
   button, so it never depends on the header's height or sticky behaviour.
   Opens via JS (.is-open) or, if JS is unavailable, via the #mobile-menu link (:target). */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 100;
  height: 100vh; height: 100dvh;
  background: var(--color-bg);
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  padding: env(safe-area-inset-top) 0 calc(24px + env(safe-area-inset-bottom));
  display: none;
}
.mobile-menu.is-open, .mobile-menu:target { display: block; animation: menu-in .2s ease; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .mobile-menu.is-open, .mobile-menu:target { animation: none; } }
.menu-bar {
  display: flex; align-items: center; gap: 12px; min-height: var(--header-h);
  padding: 10px max(var(--gutter), env(safe-area-inset-right)) 10px max(var(--gutter), env(safe-area-inset-left));
  border-bottom: 1px solid var(--color-divider);
}
@media (min-width: 768px) { .menu-bar { padding-block: 16px; } }
.menu-links {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px max(var(--gutter), env(safe-area-inset-right)) 0 max(var(--gutter), env(safe-area-inset-left));
  max-width: 640px;
}
.menu-links > a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px; padding: 8px 16px; border-radius: var(--radius-md);
  font-family: var(--font-heading); font-size: 24px; text-decoration: none; color: var(--color-text);
}
.menu-links > a::after { content: "→"; font-family: var(--font-body); font-size: 18px; color: var(--color-accent-700); }
.menu-links > a[aria-current="page"] { background: var(--color-accent-200); color: var(--color-accent-800); }
.menu-links > a:hover { color: var(--color-text); }
.menu-actions { display: grid; gap: 10px; margin-top: 20px; }
.menu-actions .btn { width: 100%; }
html.menu-open, html.menu-open body { overflow: hidden; }

@media (min-width: 1080px) {
  .nav-links { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
  .nav-cta { display: inline-flex; min-height: 44px; padding: 10px 20px; font-size: 15px; }
  .nav-toggle, .mobile-menu, .mobile-menu:target { display: none; }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { margin-top: 80px; padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
@media (min-width: 768px) { .site-footer { margin-top: 120px; padding-bottom: 32px; } }
.footer-panel {
  background: var(--color-accent-2-800); color: var(--color-accent-2-100);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-swoop) var(--radius-lg);
  padding: clamp(28px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px;
}
.footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { height: 72px; width: auto; align-self: flex-start; border-radius: var(--radius-md); }
.footer-brand p { font-size: 15px; line-height: 1.6; max-width: 32ch; }
.footer-col { display: flex; flex-direction: column; gap: 4px; font-size: 15px; min-width: 0; }
.footer-col a { color: inherit; text-decoration: none; padding: 6px 0; overflow-wrap: anywhere; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col--contact { grid-column: 1 / -1; }
.footer-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent-2-300); margin-bottom: 4px; }
.footer-legal { padding: 20px 8px 0; font-size: 13px; color: var(--color-neutral-700); }
@media (min-width: 900px) {
  .footer-panel { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; }
  .footer-brand, .footer-col--contact { grid-column: auto; }
  .footer-brand img { height: 84px; }
}

/* Floating WhatsApp button (phones only) */
.wa-fab {
  position: fixed; z-index: 40;
  right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-accent-2-800); color: var(--color-accent-2-100); box-shadow: var(--shadow-lg);
  transition: transform .2s ease, opacity .2s ease;
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { color: #fff; }
html.menu-open .wa-fab, .wa-fab.is-hidden { opacity: 0; pointer-events: none; transform: scale(.8); }
@media (min-width: 1080px) { .wa-fab { display: none; } }

/* ── Shared blocks ──────────────────────────────────────────────────── */
.panel { border-radius: var(--radius-lg); padding: 24px; }
@media (min-width: 768px) { .panel { padding: 32px; } }
.panel--surface { background: var(--color-surface); }
.panel--peach { background: var(--color-accent-200); color: var(--color-accent-900); }
.panel--sage { background: var(--color-accent-2-200); color: var(--color-accent-2-900); }
.panel--dark { background: var(--color-accent-2-800); color: var(--color-accent-2-100); padding: clamp(24px, 5vw, 64px); }
.panel--dark h2 { color: var(--color-accent-2-100); }
.panel--swoop { border-radius: var(--radius-lg) var(--radius-lg) var(--radius-swoop) var(--radius-lg); }
.panel--light { background: var(--color-neutral-100); box-shadow: var(--shadow-md); padding: clamp(20px, 4vw, 40px); }

.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-heading); font-size: 40px; line-height: 1; }
@media (min-width: 768px) { .stat-num { font-size: 48px; } }
.stat-num--xl { font-size: 56px; }
@media (min-width: 768px) { .stat-num--xl { font-size: 72px; } }
.c-accent-700 { color: var(--color-accent-700); }
.c-accent-800 { color: var(--color-accent-800); }
.c-sage-800 { color: var(--color-accent-2-800); }

/* Stat tiles: horizontal swipe row on phones instead of three tall stacked tiles */
.stat-row { display: grid; gap: 12px; grid-auto-flow: column; grid-auto-columns: minmax(200px, 72%);
  overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: none; }
.stat-row::-webkit-scrollbar { display: none; }
.stat-row > * { scroll-snap-align: start; }
@media (min-width: 640px) {
  .stat-row { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin-inline: 0; padding-inline: 0; gap: 20px; }
}

.quote {
  margin: 0; padding: 22px 24px;
  background: var(--color-accent-100); color: var(--color-accent-800);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
  font-family: var(--font-heading); font-size: 20px; line-height: 1.35;
}
@media (min-width: 768px) { .quote { padding: 28px 32px; font-size: 24px; } }

.tag {
  display: inline-flex; align-items: center; align-self: flex-start;
  border-radius: 999px; padding: 5px 14px; font-size: 12.5px; font-weight: 700;
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-sage { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }

.card-lift { transition: transform .2s ease, box-shadow .2s ease; }
@media (hover: hover) {
  .card-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .nav-links a:not([aria-current]):hover { background: var(--color-accent-100); color: var(--color-text); }
  .menu-links > a:not([aria-current]):hover { background: var(--color-accent-100); }
}
.card-lift:active { transform: scale(.99); }

/* ── Home ───────────────────────────────────────────────────────────── */
.gallery { display: grid; gap: 12px; grid-auto-flow: column; grid-auto-columns: 82%;
  overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1); padding: 0 var(--gutter) 6px;
  scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.gallery > * { scroll-snap-align: center; }
@media (min-width: 640px) {
  .gallery { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin-inline: 0; padding: 0; gap: 20px; }
}
.swipe-hint { font-size: 13px; color: var(--color-neutral-700); margin-top: 8px; }
@media (min-width: 640px) { .swipe-hint { display: none; } }

/* ── Fresh ──────────────────────────────────────────────────────────── */
.product-row {
  display: grid; gap: 24px; align-items: center;
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 20px;
}
.product-row .frame { border-radius: 50%; background: var(--color-neutral-100); width: 100%; max-width: 260px; justify-self: center; }
.product-row .copy { display: flex; flex-direction: column; gap: 14px; max-width: 56ch; }
@media (min-width: 760px) {
  .product-row { grid-template-columns: minmax(240px, 380px) 1fr; gap: 56px; padding: 32px; }
  .product-row .frame { max-width: 380px; }
}
.cta-band { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
@media (min-width: 760px) { .cta-band { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; } }

/* ── Preserves ──────────────────────────────────────────────────────── */
.filters-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
@media (min-width: 760px) { .filters-head { flex-direction: row; align-items: end; justify-content: space-between; margin-bottom: 32px; } }
.filters { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.filters::-webkit-scrollbar { display: none; }
@media (min-width: 760px) { .filters { margin-inline: 0; padding-inline: 0; flex-wrap: wrap; overflow: visible; } }
.filter-btn {
  flex: none; min-height: 44px; padding: 9px 13px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--color-divider); background: transparent;
  font-size: 14px; font-weight: 700; color: var(--color-text);
}
@media (min-width: 400px) { .filter-btn { padding: 9px 18px; } }
.filter-btn[aria-pressed="true"] { background: var(--color-text); color: var(--color-bg); border-color: var(--color-text); }

.flavours { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .flavours { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .flavours { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.flavour {
  background: var(--color-surface); border-radius: var(--radius-lg);
  padding: 12px 12px 22px; display: flex; flex-direction: column; gap: 14px;
}
.flavour[hidden] { display: none; }
.flavour .frame { border-radius: 20px; background: var(--color-neutral-100); aspect-ratio: 4 / 3; }
@media (min-width: 560px) { .flavour .frame { aspect-ratio: 1; } }
.flavour-body { display: flex; flex-direction: column; gap: 8px; padding: 0 8px; }
.heat { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-accent-2-700); }
.heat--hot { color: var(--color-accent-700); }
.flavour p { font-size: 15px; line-height: 1.6; color: var(--color-neutral-800); }
.filter-status { min-height: 1px; }

.tapenade { display: grid; gap: 24px; align-items: center; }
.tapenade .frame { background: var(--color-accent-2-900); max-width: 360px; width: 100%; }
@media (min-width: 720px) { .tapenade { grid-template-columns: minmax(240px, 360px) 1fr; gap: 40px; } }
.tapenade-title { font-size: clamp(38px, 9vw, 64px); }
.tapenade-copy { font-size: 18px; line-height: 1.5; max-width: 30ch; }
@media (min-width: 768px) { .tapenade-copy { font-size: 20px; } }

.price { display: flex; flex-direction: column; gap: 14px; }
.price-label { font-size: 16px; font-weight: 700; }
.price-amount { font-family: var(--font-heading); font-size: 48px; line-height: 1; }
@media (min-width: 768px) { .price { gap: 18px; } .price-amount { font-size: 56px; } }

/* ── Compost ────────────────────────────────────────────────────────── */
.product-card { border-radius: var(--radius-lg); padding: 12px 12px 24px; display: flex; flex-direction: column; gap: 16px; }
.product-card .frame { border-radius: 20px; }
.product-card-body { display: flex; flex-direction: column; gap: 10px; padding: 0 10px; flex: 1; }
.product-card-body .btn { margin-top: auto; }
.product-card-body p { margin-bottom: 6px; }
@media (min-width: 768px) { .product-card-body { padding: 0 14px; } }
.product-card h2 { font-size: 24px; }
@media (min-width: 768px) { .product-card h2 { font-size: 28px; } }

.callout { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .callout { flex-direction: row; align-items: center; gap: 40px; } }
.callout-num { font-family: var(--font-heading); font-size: clamp(64px, 16vw, 104px); line-height: 1; color: var(--color-accent-800); }
.callout p { font-size: 18px; line-height: 1.5; max-width: 30ch; }
@media (min-width: 768px) { .callout p { font-size: 20px; } }

.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--color-surface); border-radius: var(--radius-md); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 18px; min-height: 60px;
  font-family: var(--font-heading); font-size: 18px; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 20px; font-weight: 700; line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq-body { padding: 0 18px 20px; display: flex; flex-direction: column; gap: 12px; max-width: 72ch; }
.faq-body p { font-size: 16px; line-height: 1.7; }
@media (min-width: 768px) {
  .faq summary { padding: 20px 24px; font-size: 20px; }
  .faq-body { padding: 0 24px 22px; }
}

/* ── Where to buy ───────────────────────────────────────────────────── */
.way { display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--color-text); }
.way:hover { color: var(--color-text); }
.way-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 20px; color: var(--color-accent-700);
}
.way h2 { font-size: 24px; margin-top: 6px; }
@media (min-width: 768px) { .way h2 { font-size: 26px; } }
.way p { font-size: 15.5px; line-height: 1.6; }
.way-cta { font-size: 14px; font-weight: 700; color: var(--color-accent-800); margin-top: auto; padding-top: 8px; }

/* ── Contact ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 16px; align-items: start; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.contact-card { display: flex; flex-direction: column; gap: 6px; text-decoration: none; }
.contact-card--wa { background: var(--color-accent-2-800); color: var(--color-accent-2-100); }
.contact-card--wa:hover { background: var(--color-accent-2-900); color: var(--color-accent-2-100); }
.contact-card--mail { background: var(--color-surface); color: var(--color-text); }
.contact-card--mail:hover { background: var(--color-neutral-300); color: var(--color-text); }
.contact-big { font-family: var(--font-heading); font-size: 30px; line-height: 1.15; }
@media (min-width: 768px) { .contact-big { font-size: 34px; } }
.contact-email { font-size: 17px; font-weight: 600; overflow-wrap: anywhere; }
@media (min-width: 768px) { .contact-email { font-size: 19px; } }

.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; gap: 14px; } }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: rgba(32, 30, 29, .78); }
.input {
  width: 100%; min-height: 50px; padding: 12px 18px;
  font: inherit; font-size: 16px;            /* 16px stops iOS from zooming on focus */
  color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-bg);
  border: 1px solid var(--color-divider); border-radius: 999px;
  -webkit-appearance: none; appearance: none;
}
.input:hover { border-color: rgba(32, 30, 29, .45); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 130px; border-radius: var(--radius-md); resize: vertical; padding: 14px 18px; }
.form-thanks { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; padding: 16px 0; }
.form-thanks[hidden] { display: none; }
.check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--color-accent-2-300); color: var(--color-accent-2-900);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
