/* ==========================================================================
   100% Ethiopian Tahini — dno.co.th
   Design system
   Palette sampled directly from the brand logo:
     green #486E55 · yellow #F3E863 · red #CD3F3F · ink #0E2328
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand greens — anchored on the logo sage, deepened for surfaces */
  --green-900: #0F2417;
  --green-800: #16311F;
  --green-700: #1E4029;
  --green-600: #2A5638;
  --green-500: #486E55;   /* exact logo green */
  --green-300: #8FAE99;
  --green-100: #DCE7DF;

  /* Gold — the premium accent, a deepened relative of the flag yellow */
  --gold-700: #8A6A22;
  --gold-600: #A8842F;
  --gold-500: #C8A44E;
  --gold-300: #E0C784;
  --gold-100: #F2E7C9;

  /* Flag punctuation only */
  --flag-green: #486E55;
  --flag-yellow: #F3E863;
  --flag-red: #CD3F3F;

  /* Warm paper neutrals */
  --paper-50: #FDFBF6;
  --paper-100: #F7F2E9;
  --paper-200: #EFE7D8;
  --paper-300: #E2D7C2;
  --paper-400: #C9BCA2;

  /* Ink */
  --ink-900: #0E2328;   /* exact logo ink */
  --ink-800: #1A2C2F;
  --ink-700: #2F4145;
  --ink-500: #5C6B6D;
  --ink-400: #7D8A8B;

  --text: #2B3A34;
  --muted: #66756E;

  /* Type */
  --font-display: "Fraunces", "Noto Sans Thai", Georgia, serif;
  --font-body: "Inter", "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Inter", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Fluid type scale */
  --fs-display: clamp(2.9rem, 1.4rem + 6.2vw, 6.5rem);
  --fs-h1: clamp(2.3rem, 1.3rem + 4.2vw, 4.4rem);
  --fs-h2: clamp(1.9rem, 1.25rem + 2.6vw, 3.1rem);
  --fs-h3: clamp(1.25rem, 1.05rem + 0.85vw, 1.7rem);
  --fs-h4: clamp(1.05rem, 0.97rem + 0.4vw, 1.25rem);
  --fs-lede: clamp(1.02rem, 0.95rem + 0.42vw, 1.28rem);
  --fs-body: clamp(0.95rem, 0.92rem + 0.16vw, 1.03rem);
  --fs-sm: 0.875rem;
  --fs-xs: 0.78rem;
  --fs-micro: 0.7rem;

  /* Space */
  --gap: clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
  --pad-x: clamp(1.25rem, 0.6rem + 3.2vw, 5rem);
  --section-y: clamp(4.5rem, 2.6rem + 7.4vw, 9.5rem);

  --maxw: 1280px;
  --maxw-text: 68ch;

  /* Shape */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Elevation — warm-tinted, never neutral grey */
  --sh-sm: 0 1px 2px rgba(14, 35, 40, 0.05), 0 2px 8px rgba(14, 35, 40, 0.04);
  --sh-md: 0 4px 12px rgba(14, 35, 40, 0.06), 0 12px 32px rgba(14, 35, 40, 0.07);
  --sh-lg: 0 8px 24px rgba(14, 35, 40, 0.08), 0 24px 64px rgba(14, 35, 40, 0.11);
  --sh-gold: 0 8px 28px rgba(168, 132, 47, 0.25);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.45s;

  --nav-h: 74px;
  --announce-h: 40px;
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--paper-100);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}
body.is-locked { overflow: hidden; }

img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* Paper grain — a whisper of texture so the cream never reads as flat #fff */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection { background: var(--gold-300); color: var(--ink-900); }

:focus-visible {
  outline: 2.5px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--ink-900);
  color: var(--paper-50);
  padding: 12px 24px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

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

/* ---------- 3. Typography ------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-variation-settings: "SOFT" 20, "WONK" 1;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.015em; }
h4 { font-size: var(--fs-h4); letter-spacing: -0.01em; }

p { text-wrap: pretty; }
strong, b { font-weight: 600; color: var(--ink-800); }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.68;
  color: var(--muted);
  font-weight: 350;
  max-width: var(--maxw-text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--flag-green) 33%, var(--flag-yellow) 33% 66%, var(--flag-red) 66%);
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-300); }

/* Thai needs a touch more line-height and no negative tracking */
:lang(th) h1, :lang(th) h2, :lang(th) h3, :lang(th) h4 {
  letter-spacing: 0;
  line-height: 1.32;
}
:lang(th) body, html[data-lang="th"] body { line-height: 1.85; }
html[data-lang="th"] .eyebrow { letter-spacing: 0.1em; }

/* ---------- 4. Layout ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: 940px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * 0.62); }

.section-head { margin-bottom: clamp(2.5rem, 1.6rem + 3vw, 4.5rem); }
.section-head--center { text-align: center; display: grid; justify-items: center; }
.section-head h2 { margin-top: 18px; }
.section-head .lede { margin-top: 20px; }
.section-head--center .lede { margin-inline: auto; }

/* Tone variants */
.tone-forest { background: var(--green-800); color: var(--paper-200); }
.tone-forest h2, .tone-forest h3, .tone-forest h4 { color: var(--paper-50); }
.tone-forest .lede { color: rgba(247, 242, 233, 0.68); }

.tone-ink { background: var(--ink-900); color: rgba(247, 242, 233, 0.72); }
.tone-ink h2, .tone-ink h3, .tone-ink h4 { color: var(--paper-50); }
.tone-ink .lede { color: rgba(247, 242, 233, 0.62); }

.tone-paper2 { background: var(--paper-200); }

/* The tricolour signature rule */
.tricolor {
  display: flex;
  height: 4px;
  width: 100%;
}
.tricolor i { flex: 1; }
.tricolor i:nth-child(1) { background: var(--flag-green); }
.tricolor i:nth-child(2) { background: var(--flag-yellow); }
.tricolor i:nth-child(3) { background: var(--flag-red); }
.tricolor--thin { height: 3px; }
.tricolor--tab { width: 54px; border-radius: var(--r-pill); height: 4px; }
.tricolor--tab i:first-child { border-radius: var(--r-pill) 0 0 var(--r-pill); }
.tricolor--tab i:last-child { border-radius: 0 var(--r-pill) var(--r-pill) 0; }

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-gold); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--primary { --btn-bg: var(--gold-500); }
.btn--primary:hover { --btn-bg: var(--gold-600); }

.btn--forest { --btn-bg: var(--green-700); }
.btn--forest:hover { --btn-bg: var(--green-600); box-shadow: 0 8px 28px rgba(30, 64, 41, 0.3); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink-900);
  border: 1.5px solid rgba(14, 35, 40, 0.22);
}
.btn--ghost:hover { border-color: var(--ink-900); box-shadow: none; background: rgba(14,35,40,0.04); }

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); box-shadow: none; }

.btn--sm { padding: 11px 20px; font-size: var(--fs-xs); }
.btn--lg { padding: 18px 38px; font-size: var(--fs-body); }
.btn--block { width: 100%; }

/* Text link with a sweeping underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--green-600);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold-500), var(--gold-500));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease), color 0.25s;
}
.link-arrow:hover { background-size: 100% 1.5px; color: var(--gold-600); }
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Announcement bar ------------------------------------------ */
.announce {
  position: relative;
  z-index: 60;
  background: var(--ink-900);
  color: rgba(247, 242, 233, 0.85);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: var(--fs-xs);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding-inline: var(--pad-x);
}
.announce__icon { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; }
.announce__text { font-weight: 500; letter-spacing: 0.01em; }
.announce__cities {
  display: inline-flex;
  gap: 8px;
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.announce__cities span::after { content: "·"; margin-left: 8px; color: rgba(247,242,233,0.3); }
.announce__cities span:last-child::after { content: ""; }

/* ---------- 7. Navigation ------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 55;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247, 242, 233, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-stuck {
  background: rgba(247, 242, 233, 0.96);
  border-bottom-color: rgba(14, 35, 40, 0.09);
  box-shadow: 0 2px 20px rgba(14, 35, 40, 0.05);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo img {
  height: 48px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.nav.is-stuck .nav__logo img { height: 42px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.4vw, 1.6rem);
  margin-inline-start: auto;
}
.nav__links a {
  position: relative;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-700);
  padding: 8px 2px;
  transition: color 0.25s;
}
html[data-lang="th"] .nav__links a { text-transform: none; letter-spacing: 0.02em; font-size: var(--fs-sm); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 1.5px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink-900); }
.nav__links a:hover::after,
.nav__links a[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }
.nav__links a[aria-current="true"] { color: var(--green-600); }

.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language switch */
.lang {
  display: flex;
  align-items: center;
  background: rgba(14, 35, 40, 0.06);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang button {
  padding: 6px 13px;
  border-radius: var(--r-pill);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.lang button[aria-pressed="true"] {
  background: var(--paper-50);
  color: var(--green-700);
  box-shadow: var(--sh-sm);
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(14, 35, 40, 0.14);
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  position: relative;
  display: block;
  width: 18px; height: 1.6px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background-color 0.2s;
}
.nav__burger span::before, .nav__burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 1.6px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* Scroll progress */
.nav__progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--flag-green), var(--flag-yellow), var(--flag-red));
}

/* ---------- 8. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture { width: 100%; height: 100%; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: heroZoom 20s var(--ease-out) forwards;
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(9, 20, 15, 0.9) 0%, rgba(9, 20, 15, 0.68) 34%,
                    rgba(9, 20, 15, 0.22) 62%, rgba(9, 20, 15, 0.06) 100%),
    linear-gradient(to top, var(--paper-100) 0.5%, rgba(247, 242, 233, 0) 26%);
}

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-block: clamp(4rem, 10vh, 7rem);
}
.hero__content { max-width: 660px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
html[data-lang="th"] .hero__eyebrow { letter-spacing: 0.04em; text-transform: none; }
.hero__eyebrow .tricolor--tab { width: 30px; height: 3px; }

.hero h1 {
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 0.98;
  color: #fff;
  margin-top: 26px;
  letter-spacing: -0.035em;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 120;
}
:lang(th) .hero h1 { line-height: 1.2; letter-spacing: -0.01em; }
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--gold-300);
}
.hero__sub {
  margin-top: 24px;
  font-size: var(--fs-lede);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  max-width: 52ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
}
.hero__badges svg { width: 16px; height: 16px; color: var(--gold-300); }


/* ---------- 9. Trust strip ----------------------------------------------- */
.trust { background: var(--ink-900); position: relative; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.trust__item {
  background: var(--ink-900);
  padding: 26px 14px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  transition: background-color 0.3s var(--ease);
}
.trust__item:hover { background: #14292E; }
.trust__item svg { width: 26px; height: 26px; color: var(--gold-500); }
.trust__item span {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.72);
}
html[data-lang="th"] .trust__item span { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-xs); }

/* ---------- 10. Story ---------------------------------------------------- */
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 1rem + 5vw, 6rem);
  align-items: center;
}
.story__body > * + * { margin-top: 22px; }
.story__body p { color: var(--muted); }
.story__body p:first-of-type {
  font-size: var(--fs-lede);
  color: var(--text);
}
/* Drop cap on the opening line — an editorial flourish */
.story__body p.has-dropcap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.1em;
  line-height: 0.78;
  font-weight: 600;
  color: var(--green-600);
  padding-right: 12px;
  margin-top: 6px;
}
html[data-lang="th"] .story__body p.has-dropcap::first-letter {
  float: none; font-size: inherit; line-height: inherit;
  padding: 0; margin: 0; color: inherit; font-family: inherit; font-weight: inherit;
}

.pullquote {
  margin-top: 34px;
  padding: 26px 30px;
  border-inline-start: 3px solid var(--gold-500);
  background: var(--paper-200);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
  line-height: 1.42;
  color: var(--green-700);
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.pullquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Offset gold-framed image */
.framed { position: relative; }
.framed img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  position: relative;
  z-index: 1;
}
.framed::before {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1.5px solid var(--gold-500);
  border-radius: var(--r-lg);
  z-index: 0;
}
.framed__tag {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -26px;
  background: var(--paper-50);
  border-radius: var(--r-md);
  padding: 18px 24px;
  box-shadow: var(--sh-lg);
  display: grid;
  gap: 2px;
  min-width: 150px;
}
.framed__tag strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--green-600);
}
.framed__tag span {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
html[data-lang="th"] .framed__tag span { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-xs); }

/* Origin stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding-top: clamp(2rem, 3vw, 3rem);
  border-top: 1px solid var(--paper-300);
}
.stat-row__item { display: grid; gap: 6px; }
.stat-row__item strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.3rem + 1.9vw, 2.7rem);
  line-height: 1;
  color: var(--green-600);
  font-weight: 600;
}
.stat-row__item span { font-size: var(--fs-sm); color: var(--muted); }

/* ---------- 11. Tahini 101 (explainer) ----------------------------------- */
.explain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap);
}
.explain__card {
  background: var(--paper-50);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.explain__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--gold-300);
}
.explain__num {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-600);
}
.explain__card p { font-size: var(--fs-sm); color: var(--muted); }

/* Comparison: Humera vs ordinary white sesame */
.compare {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-300);
  box-shadow: var(--sh-md);
}
.compare__col { background: var(--paper-50); padding: clamp(24px, 3vw, 38px); }
.compare__col--ours { background: var(--green-800); color: rgba(247, 242, 233, 0.8); }
.compare__col--ours h3 { color: var(--paper-50); }
.compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(14, 35, 40, 0.1);
}
.compare__col--ours .compare__head { border-bottom-color: rgba(255, 255, 255, 0.16); }
.compare__badge {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--paper-200);
  color: var(--muted);
}
.compare__col--ours .compare__badge { background: var(--gold-500); color: var(--ink-900); }
.compare li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: var(--fs-sm);
}
.compare li + li { border-top: 1px dashed rgba(14, 35, 40, 0.09); }
.compare__col--ours li + li { border-top-color: rgba(255, 255, 255, 0.12); }
.compare li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }
.compare__col--plain li svg { color: var(--ink-400); }
.compare__col--ours li svg { color: var(--gold-300); }

/* ---------- 12. Value props ---------------------------------------------- */
.value__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.value__card {
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}
.value__card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.06);
}
.value__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: rgba(200, 164, 78, 0.14);
  border: 1px solid rgba(200, 164, 78, 0.3);
}
.value__icon svg { width: 25px; height: 25px; color: var(--gold-300); }
.value__card p { font-size: var(--fs-sm); color: rgba(247, 242, 233, 0.66); }

/* ---------- 13. Products ------------------------------------------------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap);
}
.product {
  position: relative;
  background: var(--paper-50);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.product__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-200); }
.product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product:hover .product__media img { transform: scale(1.05); }
.product__badge {
  position: absolute;
  top: 18px; inset-inline-start: 18px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--gold-500);
  color: #fff;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.product__badge--new { background: var(--green-600); }
html[data-lang="th"] .product__badge { letter-spacing: 0.03em; text-transform: none; }

.product__body { padding: clamp(24px, 3vw, 34px); display: grid; align-content: start; gap: 14px; }
.product__body p { font-size: var(--fs-sm); color: var(--muted); }
.product__meta {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--paper-300);
  display: grid;
  gap: 10px;
}
.product__row { display: flex; gap: 10px; align-items: baseline; font-size: var(--fs-xs); }
.product__row dt {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  flex-shrink: 0;
}
html[data-lang="th"] .product__row dt { letter-spacing: 0.02em; text-transform: none; }
.product__row dd { color: var(--muted); }

/* ---------- 14. Sizes ---------------------------------------------------- */
.sizes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.size {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-50);
  border: 1px solid var(--paper-300);
  text-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.size:hover, .size:focus-visible { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--gold-300); }
.size__media { overflow: hidden; aspect-ratio: 3 / 3.6; background: var(--paper-200); }
.size__media picture { width: 100%; height: 100%; }
.size__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.size:hover .size__media img { transform: scale(1.05); }
.size__body { padding: 24px 24px 28px; display: grid; gap: 8px; }
.size__weight {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  color: var(--green-700);
}
.size__for {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}
html[data-lang="th"] .size__for { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-xs); }
.size__note { font-size: var(--fs-sm); color: var(--muted); }
.size__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--green-600);
}
.size__cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.size:hover .size__cta svg { transform: translateX(4px); }

/* ---------- 15. Nutrition ------------------------------------------------ */
.nutri__layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}

/* FDA-style Nutrition Facts panel */
.facts {
  background: #fff;
  color: #000;
  border: 1.5px solid #000;
  border-radius: var(--r-xs);
  padding: 12px 14px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.28;
  box-shadow: var(--sh-lg);
}
.facts__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #000;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
html[data-lang="th"] .facts__title { font-size: 24px; line-height: 1.2; }
.facts__serving { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; font-size: 13px; }
.facts__serving strong { font-weight: 700; }
.facts hr { border: none; background: #000; margin: 4px 0; }
.facts .rule-thin { height: 1px; }
.facts .rule-med { height: 5px; }
.facts .rule-thick { height: 9px; }

.facts__cal { display: flex; align-items: flex-end; justify-content: space-between; padding: 2px 0 4px; }
.facts__cal span { font-size: 14px; font-weight: 700; }
.facts__cal strong { font-size: 32px; font-weight: 900; line-height: 0.9; letter-spacing: -0.02em; }

.facts__dv { text-align: end; font-size: 11px; font-weight: 700; padding: 2px 0; }
.facts table { font-size: 13px; }
.facts td { padding: 4px 0; vertical-align: baseline; border-top: 1px solid #000; }
.facts tr:first-child td { border-top: none; }
.facts td:last-child { text-align: end; font-weight: 700; white-space: nowrap; padding-inline-start: 8px; }
.facts .indent { padding-inline-start: 15px; }
.facts .indent-2 { padding-inline-start: 30px; }
.facts .bold { font-weight: 700; }
.facts__foot {
  font-size: 10px;
  line-height: 1.35;
  padding-top: 6px;
  color: #000;
}
.facts__foot sup { font-size: 9px; }

.nutri__note {
  margin-top: 14px;
  font-size: var(--fs-micro);
  line-height: 1.5;
  color: rgba(247, 242, 233, 0.45);
}

/* Nutrient icon tiles */
.nutri__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.tile {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  gap: 8px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tile:hover { border-color: var(--gold-500); background: rgba(255, 255, 255, 0.06); transform: translateY(-4px); }
.tile svg { width: 24px; height: 24px; color: var(--gold-500); }
.tile__val {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.2rem + 0.9vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--paper-50);
}
.tile__val small { font-size: 0.52em; font-weight: 600; letter-spacing: 0.02em; margin-inline-start: 2px; }
.tile__label { font-size: var(--fs-xs); color: rgba(247, 242, 233, 0.6); }
.tile__dv {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-300);
}
html[data-lang="th"] .tile__dv { letter-spacing: 0.02em; text-transform: none; }

/* Zero-claims row */
.zeros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.zero {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(200, 164, 78, 0.1);
  border: 1px solid rgba(200, 164, 78, 0.26);
}
.zero strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-300);
  font-weight: 600;
}
.zero span { font-size: var(--fs-xs); color: rgba(247, 242, 233, 0.72); line-height: 1.4; }

/* ---------- 16. Recipes -------------------------------------------------- */
.recipes__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.chip {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--paper-300);
  background: var(--paper-50);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--gold-500); color: var(--ink-900); }
.chip[aria-pressed="true"] {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--paper-50);
}

.recipes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: var(--gap);
}
.recipe {
  position: relative;
  text-align: start;
  background: var(--paper-50);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-lg);
  padding: 30px 28px 28px;
  display: grid;
  align-content: start;
  gap: 12px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.recipe:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--gold-300); }
.recipe.is-hidden { display: none; }
.recipe__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.recipe__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--green-100);
  color: var(--green-700);
}
.recipe__icon svg { width: 23px; height: 23px; }
.recipe__tag {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold-600);
}
html[data-lang="th"] .recipe__tag { letter-spacing: 0.02em; text-transform: none; }
.recipe p { font-size: var(--fs-sm); color: var(--muted); }
.recipe__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-300);
  font-size: var(--fs-xs);
  color: var(--muted);
}
.recipe__facts span { display: inline-flex; align-items: center; gap: 6px; }
.recipe__facts svg { width: 14px; height: 14px; color: var(--green-500); }

/* Recipe modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 15, 0.62);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper-50);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 16px; inset-inline-end: 16px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  display: grid; place-items: center;
  background: var(--paper-100);
  border: 1px solid var(--paper-300);
  transition: background-color 0.2s, transform 0.2s;
}
.modal__close:hover { background: var(--paper-200); transform: rotate(90deg); }
.modal__close svg { width: 17px; height: 17px; }
.modal__head {
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px) 24px;
  border-bottom: 1px solid var(--paper-300);
}
.modal__head .eyebrow { margin-bottom: 14px; }
.modal__head p { margin-top: 12px; color: var(--muted); font-size: var(--fs-sm); }
.modal__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 20px;
  font-size: var(--fs-xs);
  color: var(--muted);
}
.modal__facts span { display: inline-flex; align-items: center; gap: 7px; }
.modal__facts svg { width: 15px; height: 15px; color: var(--green-500); }
.modal__body {
  padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 44px) clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) 1.2fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}
.modal__body h4 {
  font-size: var(--fs-xs);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
html[data-lang="th"] .modal__body h4 { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-sm); }
.ingredients li {
  padding: 9px 0;
  font-size: var(--fs-sm);
  border-bottom: 1px dashed var(--paper-300);
  display: flex;
  gap: 10px;
}
.ingredients li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); margin-top: 9px; flex-shrink: 0; }
.steps { counter-reset: step; display: grid; gap: 16px; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.steps li::before {
  content: counter(step);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-700);
  color: var(--paper-50);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}
.modal__tip {
  grid-column: 1 / -1;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--green-100);
  border-inline-start: 3px solid var(--green-600);
  font-size: var(--fs-sm);
  color: var(--green-800);
}
.modal__tip strong { color: var(--green-800); }

/* ---------- 17. Spec sheet (product ID card) ----------------------------- */
.spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--paper-300);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.spec__row {
  background: var(--paper-50);
  padding: 22px 26px;
  display: grid;
  gap: 5px;
}
.spec__row dt {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}
html[data-lang="th"] .spec__row dt { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-xs); }
.spec__row dd { font-size: var(--fs-sm); color: var(--text); font-weight: 500; }
.spec__row--wide { grid-column: 1 / -1; }

/* ---------- 18. B2B ------------------------------------------------------ */
.b2b__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.b2b__list { display: grid; gap: 16px; margin-top: 30px; }
.b2b__list li { display: flex; gap: 14px; align-items: flex-start; font-size: var(--fs-sm); }
.b2b__list svg { width: 20px; height: 20px; color: var(--gold-300); flex-shrink: 0; margin-top: 2px; }
.b2b__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.b2b__city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(247, 242, 233, 0.85);
}
.b2b__city svg { width: 14px; height: 14px; color: var(--gold-300); }

/* ---------- 19. Order stepper -------------------------------------------- */
.order__shell {
  background: var(--paper-50);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

/* Progress rail */
.stepper__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-200);
  border-bottom: 1px solid var(--paper-300);
}
.stepper__step {
  position: relative;
  padding: 20px 14px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  transition: background-color 0.3s var(--ease);
}
.stepper__step[data-state="active"] { background: var(--paper-50); }
.stepper__step::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.stepper__step[data-state="active"]::after { transform: scaleX(1); }
.stepper__dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-300);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.stepper__dot svg { width: 15px; height: 15px; }
.stepper__step[data-state="active"] .stepper__dot { background: var(--gold-500); color: #fff; transform: scale(1.1); }
.stepper__step[data-state="done"] .stepper__dot { background: var(--green-600); color: #fff; }
.stepper__label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
html[data-lang="th"] .stepper__label { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-xs); }
.stepper__step[data-state="active"] .stepper__label { color: var(--ink-900); }

.stepper__panels { padding: clamp(26px, 4vw, 46px); }
.panel { display: none; animation: panelIn 0.45s var(--ease-out); }
.panel.is-active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.panel__head { margin-bottom: 28px; }
.panel__head h3 { margin-bottom: 8px; }
.panel__head p { font-size: var(--fs-sm); color: var(--muted); }

/* Big choice cards */
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice__box {
  height: 100%;
  padding: 26px 24px;
  border: 1.5px solid var(--paper-300);
  border-radius: var(--r-md);
  background: var(--paper-50);
  display: grid;
  gap: 10px;
  align-content: start;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease),
              transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.choice__box:hover { border-color: var(--gold-300); transform: translateY(-3px); }
.choice input:checked + .choice__box {
  border-color: var(--green-600);
  background: var(--green-100);
  box-shadow: 0 0 0 3px rgba(42, 86, 56, 0.12);
}
.choice input:focus-visible + .choice__box { outline: 2.5px solid var(--gold-600); outline-offset: 3px; }
.choice__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--paper-200);
  color: var(--green-700);
  transition: background-color 0.25s;
}
.choice input:checked + .choice__box .choice__icon { background: var(--green-600); color: #fff; }
.choice__icon svg { width: 22px; height: 22px; }
.choice__box strong { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 600; }
.choice__box span { font-size: var(--fs-sm); color: var(--muted); }
.choice__check {
  position: absolute;
  top: 16px; inset-inline-end: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--paper-400);
  display: grid; place-items: center;
  color: transparent;
  transition: all 0.25s var(--ease);
}
.choice input:checked + .choice__box .choice__check {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}
.choice__check svg { width: 12px; height: 12px; }

/* Quantity picker */
.qty-list { display: grid; gap: 14px; }
.qty {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1.5px solid var(--paper-300);
  border-radius: var(--r-md);
  background: var(--paper-50);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.qty.is-picked { border-color: var(--green-600); background: var(--green-100); }
.qty__thumb {
  width: 66px; height: 66px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--paper-200);
}
.qty__thumb img { width: 100%; height: 100%; object-fit: cover; }
.qty__info { display: grid; gap: 3px; min-width: 0; }
.qty__info strong { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 600; }
.qty__info span { font-size: var(--fs-xs); color: var(--muted); }
.qty__ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--paper-200);
  border-radius: var(--r-pill);
  padding: 4px;
}
.qty__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-50);
  color: var(--ink-800);
  box-shadow: var(--sh-sm);
  transition: background-color 0.2s, color 0.2s, transform 0.15s;
}
.qty__btn:hover:not(:disabled) { background: var(--green-600); color: #fff; }
.qty__btn:active:not(:disabled) { transform: scale(0.92); }
.qty__btn:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; }
.qty__btn svg { width: 14px; height: 14px; }
.qty__num {
  min-width: 34px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Form fields */
.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-800);
}
.field label .req { color: var(--flag-red); margin-inline-start: 2px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--paper-300);
  border-radius: var(--r-sm);
  background: var(--paper-50);
  font-size: var(--fs-sm);
  color: var(--text);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s;
}
.field textarea { resize: vertical; min-height: 104px; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2366756E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-inline-end: 40px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--paper-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(42, 86, 56, 0.13);
  background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: var(--paper-400); }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--flag-red);
  box-shadow: 0 0 0 3px rgba(205, 63, 63, 0.11);
}
.field__error {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--flag-red);
}
.field.has-error .field__error { display: flex; }
.field__error svg { width: 13px; height: 13px; flex-shrink: 0; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 4px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green-600); flex-shrink: 0; }
.consent label { font-size: var(--fs-xs); color: var(--muted); font-weight: 400; line-height: 1.55; }

/* Review summary */
.review { display: grid; gap: 12px; }
.review__block {
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--paper-100);
  border: 1px solid var(--paper-300);
}
.review__block h4 {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
html[data-lang="th"] .review__block h4 { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-xs); }
.review__line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  font-size: var(--fs-sm);
}
.review__line + .review__line { border-top: 1px dashed var(--paper-300); }
.review__line dt { color: var(--muted); }
.review__line dd { font-weight: 600; text-align: end; }

/* Nav buttons */
.panel__nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--paper-300);
}
.panel__nav .btn--ghost:disabled { visibility: hidden; }

/* Success state */
.order__done {
  display: none;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px);
  text-align: center;
  justify-items: center;
  gap: 18px;
}
.order__done.is-active { display: grid; animation: panelIn 0.5s var(--ease-out); }
.order__done .tick {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-100);
  color: var(--green-600);
  margin-bottom: 6px;
}
.order__done .tick svg { width: 34px; height: 34px; }
.order__done p { color: var(--muted); max-width: 46ch; }
.order__done .btn { margin-top: 10px; }

/* ---------- 20. Contact / company details -------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap);
}
.contact__card {
  padding: 30px 28px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  align-content: start;
  gap: 10px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact__card:hover { border-color: var(--gold-500); background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.contact__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(200, 164, 78, 0.15);
  color: var(--gold-300);
  margin-bottom: 4px;
}
.contact__icon svg { width: 21px; height: 21px; }
.contact__card dt {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
}
html[data-lang="th"] .contact__card dt { letter-spacing: 0.02em; text-transform: none; font-size: var(--fs-xs); }
.contact__card dd { font-size: var(--fs-sm); color: rgba(247, 242, 233, 0.82); }
.contact__card a { transition: color 0.2s; }
.contact__card a:hover { color: var(--gold-300); }

/* ---------- 21. Footer --------------------------------------------------- */
.footer { background: var(--ink-900); color: rgba(247, 242, 233, 0.55); }
.footer__top {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(2, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}
.footer__brand img { height: 74px; width: auto; margin-bottom: 20px; }
.footer__brand p { font-size: var(--fs-sm); max-width: 40ch; line-height: 1.7; }
.footer__brand .tricolor--tab { margin-top: 20px; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}
html[data-lang="th"] .footer__col h4 { letter-spacing: 0.03em; text-transform: none; font-size: var(--fs-xs); }
.footer__col li + li { margin-top: 11px; }
.footer__col a, .footer__col span { font-size: var(--fs-sm); transition: color 0.2s; }
.footer__col a:hover { color: var(--gold-300); }
.footer__bottom {
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: var(--fs-xs);
}
.footer__bottom p { color: rgba(247, 242, 233, 0.4); }

.to-top {
  position: fixed;
  inset-inline-end: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 50;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-700);
  color: var(--paper-50);
  box-shadow: var(--sh-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background-color 0.25s;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold-500); }
.to-top svg { width: 19px; height: 19px; }

/* ---------- 22. Scroll reveal -------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 23. Responsive ----------------------------------------------- */
@media (max-width: 1080px) {
  .nutri__layout { grid-template-columns: 1fr; }
  .facts { max-width: 420px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }

  .nav__links {
    position: fixed;
    inset: calc(var(--nav-h) + var(--announce-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px var(--pad-x) 26px;
    background: rgba(247, 242, 233, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--paper-300);
    box-shadow: var(--sh-lg);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__links a {
    padding: 15px 2px;
    font-size: var(--fs-body);
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--paper-200);
  }
  .nav__links a::after { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn { display: none; }

  .story__grid, .b2b__grid { grid-template-columns: 1fr; }
  .story__media { order: -1; }
  .framed::before { inset: -12px -12px 12px 12px; }
  .framed__tag { right: 12px; bottom: -20px; }
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .modal__body { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 620px) {
  :root { --announce-h: 54px; }
  .announce__inner { flex-direction: column; gap: 2px; justify-content: center; line-height: 1.3; }
  .announce__icon { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__badges { gap: 8px 16px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .stepper__label { display: none; }
  .stepper__step { padding: 16px 8px; }
  .qty { grid-template-columns: 52px 1fr; row-gap: 12px; }
  .qty__thumb { width: 52px; height: 52px; }
  .qty__ctrl { grid-column: 1 / -1; justify-self: start; }
  .panel__nav { flex-direction: column-reverse; }
  .panel__nav .btn { width: 100%; }
  .panel__nav .btn--ghost:disabled { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .modal__panel { max-height: 92vh; }
}

/* ---------- 24. Motion / print ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}

@media print {
  .announce, .nav, .to-top, .order, .recipes__filters,
  .modal__close, .panel__nav { display: none !important; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
  .section { padding-block: 18pt; break-inside: avoid; }
  .tone-forest, .tone-ink { background: #fff !important; color: #000 !important; }
  .tone-forest h2, .tone-ink h2, .tone-forest h3, .tone-ink h3 { color: #000 !important; }
  .modal:not([hidden]) { position: static; opacity: 1; pointer-events: auto; display: block; padding: 0; }
  .modal__backdrop { display: none; }
  .modal__panel { max-height: none; box-shadow: none; transform: none; overflow: visible; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

/* ---------- 25. Recipe card title (rendered by JS) ------------------------ */
.recipe__title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  font-variation-settings: "SOFT" 20, "WONK" 1;
  text-wrap: balance;
}
html[data-lang="th"] .recipe__title { letter-spacing: 0; line-height: 1.35; }

/* ---------- 26. Printable recipe booklet --------------------------------- */
#bookletPrint { display: none; }

@media print {
  body.printing-booklet > *:not(#bookletPrint) { display: none !important; }
  body.printing-booklet #bookletPrint { display: block; }

  #bookletPrint {
    font-family: Georgia, "Noto Serif Thai", serif;
    color: #000;
    padding: 0;
  }
  #bookletPrint > h1 {
    font-size: 26pt;
    margin-bottom: 6pt;
    border-bottom: 2pt solid #000;
    padding-bottom: 6pt;
  }
  #bookletPrint > p { font-size: 10.5pt; font-style: italic; margin-bottom: 20pt; }
  #bookletPrint .bk {
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: page;
    page-break-after: always;
    padding-top: 8pt;
  }
  #bookletPrint .bk:last-child { break-after: auto; page-break-after: auto; }
  #bookletPrint .bk h2 { font-size: 19pt; margin-bottom: 6pt; }
  #bookletPrint .bk h3 {
    font-size: 9.5pt;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 14pt 0 6pt;
    border-bottom: 0.5pt solid #999;
    padding-bottom: 3pt;
  }
  #bookletPrint .bk p { font-size: 10.5pt; margin-bottom: 5pt; }
  #bookletPrint .bk ul, #bookletPrint .bk ol { margin: 0 0 6pt 16pt; }
  #bookletPrint .bk li { font-size: 10.5pt; margin-bottom: 4pt; list-style: revert; }
  #bookletPrint .bk-tip {
    margin-top: 12pt;
    padding: 8pt 10pt;
    border-left: 2pt solid #000;
    background: #f4f4f4;
    font-size: 10pt;
  }
}

/* ---------- 27. Small refinements ---------------------------------------- */
.chip { display: inline-flex; align-items: center; gap: 7px; }
#printBooklet { margin-inline-start: auto; }
.zero small { display: inline-block; margin-top: 1px; font-size: 0.86em; opacity: 0.6; }
@media (max-width: 620px) { #printBooklet { margin-inline-start: 0; } }

/* ==========================================================================
   28. Review pass — fixes from visual QA
   ========================================================================== */

/* [hidden] must beat component display values (flex/grid/inline-flex).
   Without this the submit button and empty contact cards stay visible. */
[hidden] { display: none !important; }

/* --- Eyebrow rule: the flag yellow disappears on cream, so the tricolour
       read as a broken dash. Solid gold on light, tricolour kept on dark. --- */
.eyebrow::before { background: var(--gold-500); }
.eyebrow--light::before {
  background: linear-gradient(90deg, var(--flag-green) 33%, var(--flag-yellow) 33% 66%, var(--flag-red) 66%);
}

/* --- Hero: deepen the scrim so the headline and lede clear the food photo --- */
.hero__scrim {
  background:
    linear-gradient(100deg,
      rgba(8, 18, 13, 0.94) 0%,
      rgba(8, 18, 13, 0.86) 30%,
      rgba(8, 18, 13, 0.55) 52%,
      rgba(8, 18, 13, 0.18) 78%,
      rgba(8, 18, 13, 0.05) 100%),
    linear-gradient(to bottom, rgba(8, 18, 13, 0.4) 0%, rgba(8, 18, 13, 0) 22%),
    linear-gradient(to top, var(--paper-100) 0.5%, rgba(247, 242, 233, 0) 22%);
}

/* --- Tahini 101: 3 x 2 instead of an orphaned 4 + 2 --- */
@media (min-width: 900px) {
  .explain__grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Value cards: h3 was too large for a quarter-width column --- */
.value__card h3 { font-size: var(--fs-h4); }
.value__card { padding: 32px 26px; }

/* --- Product cards read better as horizontal cards on desktop:
       the source photography is portrait, so a 16:10 crop wasted it. --- */
@media (min-width: 760px) {
  .product { grid-template-columns: 0.86fr 1.14fr; grid-template-rows: auto; }
  .product__media { aspect-ratio: auto; height: 100%; min-height: 360px; }
  .product__body { align-content: center; }
}

/* --- Recipe cards: push the meta row to the bottom so rows align --- */
.recipe {
  align-content: stretch;
  grid-template-rows: auto auto 1fr auto;
}

/* --- Nutrition zeros: clean 2 x 2 block --- */
.zeros { grid-template-columns: repeat(2, 1fr); }

/* --- Contact: 3 x 2 with the six always-on cards --- */
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Stepper nav: keep Continue on the right once Back is invisible --- */
.panel__nav { align-items: center; }

/* --- Hero lede: keep it inside the dark side of the scrim --- */
.hero__sub { max-width: 44ch; }

/* --- Thai display type: the script is wider and taller, so the English
       display scale overwhelms the hero. Dial it back for :lang(th). --- */
html[data-lang="th"] .hero h1 {
  font-size: clamp(2.3rem, 1.2rem + 4.3vw, 4.5rem);
  line-height: 1.24;
}
html[data-lang="th"] .hero__sub { max-width: 48ch; }

/* --- The "Order now" button is hidden in the mobile bar, so the drawer
       needs its own Order link. --- */
.nav__order-link { display: none; }
@media (max-width: 900px) {
  .nav__order-link { display: block; }
}

/* ---------- Consent bar (PDPA) ------------------------------------------- */
.consent {
  position: fixed;
  left: 50%;
  bottom: clamp(12px, 3vw, 24px);
  transform: translateX(-50%);
  z-index: 300;
  width: min(720px, calc(100vw - 24px));
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--ink-900);
  color: rgba(247, 242, 233, 0.85);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.consent__text { font-size: var(--fs-sm); line-height: 1.5; flex: 1 1 260px; }
.consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent .btn--ghost { --btn-fg: #fff; border-color: rgba(255, 255, 255, 0.35); }
.consent .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* Give the footer clearance while the fixed-position PDPA consent bar is
   showing, the same way .footer already clears the mobile sticky bar
   (M10). js/tracking.js toggles .has-consent-bar on <body> alongside the
   bar's own `hidden` state, so this only applies while it's on screen. */
body.has-consent-bar .footer {
  padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
}

/* ---------- Sticky CTA bar ----------------------------------------------- */
.sticky-bar {
  position: fixed;
  z-index: 250;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.sticky-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #fff;
  box-shadow: var(--sh-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sticky-bar__btn:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.sticky-bar__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.sticky-bar__btn--wa { background: #25D366; }
.sticky-bar__btn--mail { background: var(--green-700); }
.sticky-bar__btn--call { background: var(--gold-600); }

@media (max-width: 620px) {
  .sticky-bar {
    right: 0; left: 0; bottom: 0;
    flex-direction: row;
    gap: 0;
    background: var(--paper-50);
    border-top: 1px solid var(--paper-300);
    box-shadow: 0 -2px 18px rgba(14, 35, 40, 0.1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .sticky-bar__btn {
    flex: 1;
    justify-content: center;
    border-radius: 0;
    padding: 14px 8px;
    box-shadow: none;
  }
  .sticky-bar__btn:hover { transform: none; box-shadow: none; }
  /* keep the consent bar clear of the mobile bar */
  .consent { bottom: 76px; }
  /* keep the footer clear of the fixed mobile sticky bar */
  .footer { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  /* on mobile the consent bar stacks above the sticky bar (M10) — clear both */
  body.has-consent-bar .footer { padding-bottom: calc(64px + 148px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Social links -------------------------------------------------- */
.social li + li { margin-top: 11px; }
.social a { display: inline-flex; align-items: center; gap: 9px; font-size: var(--fs-sm); transition: color 0.2s; }
.social a:hover { color: var(--gold-300); }
.social svg { width: 17px; height: 17px; flex-shrink: 0; }
