/* ==========================================================================
   TinyTiffin · styles.css
   Mobile-first. No frameworks, no web fonts, no build step.

   1. Tokens      5. Sections (hero → footer)
   2. Base        6. Floating button, toast
   3. Layout      7. Join dialog + form
   4. Components  8. Simple pages (offline / 404)
                  9. Motion
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --cream: #FFF8EC;
  --cream-deep: #FBEFD8;
  --paper: #FFFDF8;
  --white: #FFFFFF;
  --ink: #1C2B22;
  --ink-soft: #4A5A50;

  --green-950: #102A1C;
  --green-900: #13301F;
  --green-800: #184D33;
  --green-700: #1E6B45;
  --green-600: #2A8454;
  --green-500: #3D9E68;
  --green-100: #E7F2E5;

  --turmeric: #F2B233;
  --turmeric-300: #F7CD6B;
  --turmeric-100: #FFF1CC;
  --mango-ink: #A94E14;
  --coral-100: #FDE6DF;
  --coral-ink: #A33A28;
  --lime-100: #EDF3DC;

  --line: #EADFCB;
  --line-strong: #D6C7A9;
  --field-border: #9C8F76;
  --veg: #1E8A3C;
  --egg: #8B4513;
  --wa: #0F7D41;
  --wa-dark: #0B6534;
  --danger: #B42318;

  --font-display: ui-rounded, "SF Pro Rounded", "Nunito", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(1rem, 4.5vw, 2rem);
  --max: 1140px;
  --header-h: 64px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --shadow-s: 0 1px 2px rgb(28 43 34 / 0.06), 0 4px 12px rgb(28 43 34 / 0.06);
  --shadow-m: 0 2px 6px rgb(28 43 34 / 0.06), 0 18px 40px rgb(28 43 34 / 0.12);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* 2. Base ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-900);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 1.35rem + 2.4vw, 2.85rem); letter-spacing: -0.025em; }
h3 { font-size: 1.1875rem; }

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
[role="list"] { list-style: none; }

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

button, input, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--green-900); outline-offset: 3px; }
::selection { background: var(--turmeric-300); color: var(--green-950); }

[hidden] { display: none !important; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  display: inline-block;
  flex: none;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-s);
  background: var(--green-900);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: var(--white); }
main:focus { outline: none; }

/* 3. Layout ---------------------------------------------------------------- */
.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }

.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }

.section-head { max-width: 42rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head > p:not(.eyebrow) { margin-top: 0.9rem; color: var(--ink-soft); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mango-ink);
}
.eyebrow--light { color: var(--turmeric); }

/* 4. Components ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.75rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn .icon { width: 1.2em; height: 1.2em; }

.btn--primary { background: var(--green-700); color: var(--white); box-shadow: 0 8px 18px -8px rgb(30 107 69 / 0.7); }
.btn--primary:hover { background: var(--green-800); color: var(--white); }

.btn--secondary { border-color: var(--green-700); color: var(--green-800); }
.btn--secondary:hover { background: var(--green-100); color: var(--green-900); }

.btn--turmeric { background: var(--turmeric); color: var(--green-950); box-shadow: 0 8px 18px -8px rgb(140 90 0 / 0.6); }
.btn--turmeric:hover { background: var(--turmeric-300); color: var(--green-950); }

.btn--ghost-light { border-color: rgb(255 248 236 / 0.55); color: var(--cream); }
.btn--ghost-light:hover { border-color: var(--cream); background: rgb(255 255 255 / 0.1); color: var(--white); }

.btn--whatsapp { background: var(--wa); color: var(--white); box-shadow: 0 8px 18px -8px rgb(15 125 65 / 0.7); }
.btn--whatsapp:hover { background: var(--wa-dark); color: var(--white); }

.btn--text {
  min-height: 44px;
  padding-inline: 0.5rem;
  border-radius: 8px;
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.btn--text:hover { color: var(--green-900); }

.btn--lg { min-height: 56px; padding-inline: 1.6rem; font-size: 1.0625rem; }
.btn--sm { min-height: 44px; padding: 0.5rem 1.1rem; font-size: 0.9375rem; }
.btn--block { display: flex; width: 100%; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
  transition: background-color 0.2s;
}
.icon-btn:hover { background: var(--green-100); }
.icon-btn .icon { width: 24px; height: 24px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}
.chip__dot { position: relative; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }

.checklist { display: grid; gap: 0.85rem; margin-top: 1.5rem; }
.checklist li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 0.75rem; align-items: start; }
.checklist .icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  stroke-width: 2.6;
}
.checklist--large li { font-size: 1.0625rem; font-weight: 600; color: var(--green-900); }
.checklist--muted li { font-size: 0.975rem; color: var(--ink-soft); }
.checklist--muted strong { color: var(--ink); }
.checklist--muted .icon { background: var(--cream-deep); color: var(--ink-soft); }

/* Indian-style veg / non-veg (egg) marks */
.diet {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.diet::before,
.diet-mark {
  content: "";
  display: inline-block;
  flex: none;
  width: 14px;
  height: 14px;
  border: 1.6px solid;
  border-radius: 3px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.diet--veg::before,
.diet-mark--veg {
  border-color: var(--veg);
  background-image: radial-gradient(circle at center, var(--veg) 0 3.1px, transparent 3.6px);
}
.diet--egg::before,
.diet-mark--egg {
  border-color: var(--egg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M6 2.6 9.3 8.7H2.7z' fill='%238B4513'/%3E%3C/svg%3E");
}

.note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-m);
  background: var(--cream-deep);
  font-size: 0.9375rem;
}
.note .icon { width: 22px; height: 22px; margin-top: 0.1rem; color: var(--mango-ink); }

/* 5. Sections -------------------------------------------------------------- */

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 24px -20px rgb(28 43 34 / 0.5); }

.header-bar { display: flex; align-items: center; gap: 0.5rem; height: var(--header-h); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: auto;
  border-radius: 10px;
  color: var(--green-800);
  text-decoration: none;
}
.brand:hover { color: var(--green-900); }
.brand__mark { flex: none; width: 38px; height: 38px; color: var(--green-700); }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--green-100); }
.nav-toggle .icon { grid-area: 1 / 1; width: 26px; height: 26px; }
.nav-toggle .icon--close,
.nav-toggle[aria-expanded="true"] .icon--open { display: none; }
.nav-toggle[aria-expanded="true"] .icon--close { display: inline-block; }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 0.5rem var(--gutter) 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 30px -22px rgb(28 43 34 / 0.45);
}
.site-header.nav-open .site-nav { display: block; }
.site-nav ul { display: grid; gap: 0.25rem; list-style: none; }
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding-inline: 0.75rem;
  border-radius: 12px;
  color: var(--green-900);
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover { background: var(--green-100); }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    margin-right: 0.75rem;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .site-nav ul { display: flex; gap: 0.25rem; }
  .site-nav a {
    min-height: 44px;
    padding-inline: 0.85rem;
    color: var(--ink);
    font-size: 0.975rem;
    font-weight: 600;
  }
  .site-nav a:hover {
    background: none;
    color: var(--green-700);
    text-decoration: underline;
    text-decoration-color: var(--turmeric);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.45em;
  }
}

/* Hero */
.hero { padding-block: 1.25rem 3.5rem; overflow: clip; }
.hero__grid { display: grid; gap: 1.75rem; align-items: center; }

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 1.5rem + 3.9vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--green-600); }
.swash {
  white-space: nowrap;
  padding-bottom: 0.06em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M5 14C62 5 172 3 295 9' fill='none' stroke='%23F2B233' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat 0 96% / 100% 0.3em;
}

.hero__lead {
  max-width: 36rem;
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.55;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.hero__actions .btn { flex: 1 1 14rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--line-strong);
}
.fact { padding-inline: 0.85rem; border-left: 1px solid var(--line); }
.fact:first-child { padding-left: 0; border-left: 0; }
.fact__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mango-ink); }
.fact__value {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-900);
  white-space: nowrap;
}
.fact__note { margin: 0.15rem 0 0; font-size: 0.8125rem; line-height: 1.35; color: var(--ink-soft); }

.hero__art { width: 100%; max-width: 560px; margin-inline: auto; }
.hero__art img { width: 100%; }

@media (min-width: 960px) {
  .hero { padding-block: 3rem 5.5rem; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; }
  .hero__art { max-width: 620px; }
  .hero__actions .btn { flex: 0 0 auto; }
}

/* Why */
.why { background: var(--paper); }
.why__grid { display: grid; gap: 2.5rem; }
.why__title { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.6rem); line-height: 1.02; letter-spacing: -0.03em; }
.why__intro > p:not(.eyebrow) { max-width: 36rem; margin-top: 1rem; color: var(--ink-soft); }
.why__intro > .why__title + p { margin-top: 1.25rem; }

.benefits { display: grid; gap: 1.5rem; }
.benefit { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 1rem; align-items: start; }
.benefit__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-700);
}
.benefit:nth-child(3n + 2) .benefit__icon { background: var(--turmeric-100); color: var(--mango-ink); }
.benefit:nth-child(3n) .benefit__icon { background: var(--coral-100); color: var(--coral-ink); }
.benefit__icon .icon { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.125rem; }
.benefit p { margin-top: 0.3rem; font-size: 0.975rem; color: var(--ink-soft); }

.callout {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-m);
  background: var(--turmeric-100);
  font-size: 0.975rem;
}
.callout__icon { width: 24px; height: 24px; margin-top: 0.1rem; color: var(--mango-ink); }

@media (min-width: 720px) {
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 2.25rem; }
}
@media (min-width: 960px) {
  .why__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); column-gap: 4.5rem; row-gap: 2.25rem; }
  .why__intro { grid-row: span 2; }
  .callout { grid-column: 2; }
}

/* How it works */
.how { position: relative; background: var(--green-100); }
.how::before,
.join::before {
  content: "";
  position: absolute;
  top: -23px;
  right: 0;
  left: 0;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 24' preserveAspectRatio='none'%3E%3Cpath d='M0 12C30 2 90 2 120 12S210 22 240 12V24H0z' fill='%23E7F2E5'/%3E%3C/svg%3E") repeat-x left bottom / 240px 24px;
  pointer-events: none;
}

.steps { display: grid; max-width: 34rem; margin-inline: auto; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-content: start;
  column-gap: 1.1rem;
  padding-bottom: 2.25rem;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  top: 66px;
  bottom: 6px;
  left: 29px;
  border-left: 2px dashed rgb(30 107 69 / 0.35);
}
.step:last-child::before { display: none; }
.step__icon {
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green-700);
  box-shadow: 0 0 0 6px rgb(255 253 248 / 0.6), var(--shadow-s);
}
.step__icon .icon { width: 28px; height: 28px; }
.step--morning .step__icon { background: var(--turmeric-100); color: var(--mango-ink); }
.step--evening .step__icon { background: var(--coral-100); color: var(--coral-ink); }
.step__when {
  padding-top: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mango-ink);
}
.step__title { margin-top: 0.2rem; font-size: 1.25rem; }
.step > p:last-child { margin-top: 0.4rem; color: var(--ink-soft); }

@media (min-width: 960px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; max-width: none; }
  .step { grid-template-columns: 1fr; padding-bottom: 0; }
  .step__icon { grid-row: auto; width: 72px; height: 72px; margin-bottom: 1.25rem; }
  .step::before { top: 36px; right: -1rem; bottom: auto; left: 90px; border-left: 0; border-top: 2px dashed rgb(30 107 69 / 0.35); }
}

/* Box rotation */
.boxes__grid { display: grid; gap: 2.5rem; align-items: center; }
.boxes__copy > p:not(.eyebrow):not(.deposit) { margin-top: 1rem; color: var(--ink-soft); }
.deposit {
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-m);
  background: var(--paper);
  font-size: 0.975rem;
}

.rotation {
  width: 100%;
  max-width: 34rem;
  margin: 0;
  padding: 1.25rem 1.25rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper);
  box-shadow: var(--shadow-s);
}
.rotation__table { width: 100%; border-collapse: collapse; }
.rotation__table caption {
  caption-side: bottom;
  padding-top: 0.9rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-align: left;
}
.rotation__table th,
.rotation__table td { padding: 0.55rem 0.4rem; text-align: center; }
.rotation__table thead th {
  vertical-align: bottom;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--green-900);
}
.rotation__table thead .icon { display: block; width: 22px; height: 22px; margin: 0 auto 0.35rem; color: var(--green-600); }
.rotation__table tbody th { font-size: 0.9375rem; font-weight: 700; color: var(--green-900); text-align: left; }
.rotation__table tbody tr + tr { border-top: 1px dashed var(--line-strong); }

.token {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 40px;
  padding-top: 6px;
  border-radius: 11px;
  background: linear-gradient(150deg, #FBFCFD 0%, #D9E0E6 60%, #BAC4CC 100%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.85), 0 2px 5px rgb(28 43 34 / 0.18);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-900);
}
.token::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 9px;
  left: 9px;
  height: 5px;
  border-radius: 3px;
  background: var(--green-500);
}
.token--2::before { background: var(--turmeric); }

@media (min-width: 960px) {
  .boxes__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: 4.5rem; }
}

/* Weekly menu */
.menu { background: var(--paper); }
.dishes { display: grid; gap: 1rem; }
.dish {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--white);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.dish__media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; background: var(--turmeric-100); }
.dish--tue .dish__media { background: var(--green-100); }
.dish--wed .dish__media { background: var(--coral-100); }
.dish--thu .dish__media { background: var(--cream-deep); }
.dish--fri .dish__media { background: var(--lime-100); }
.dish__media img { width: 100%; height: 100%; object-fit: cover; }
.dish h3 { font-size: 1.0625rem; line-height: 1.25; }
.dish__day {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mango-ink);
}
.dish__name { display: block; }
.dish__side { margin-top: 0.2rem; font-size: 0.9375rem; line-height: 1.4; color: var(--ink-soft); }
.dish__diet { display: flex; flex-wrap: wrap; gap: 0.35rem 0.8rem; margin-top: 0.55rem; }

@media (hover: hover) {
  .dish:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
}
@media (min-width: 640px) {
  .dishes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .dishes { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.1rem; }
  .dish { grid-template-columns: 1fr; align-items: start; align-content: start; padding: 0.7rem 0.7rem 1.2rem; }
  .dish__body { padding-inline: 0.35rem; }
}

.menu__foot { display: grid; gap: 1rem; margin-top: 1.5rem; }
.legend { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; font-size: 0.875rem; color: var(--ink-soft); }
@media (min-width: 960px) {
  .menu__foot { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: center; gap: 2rem; }
}

/* Pricing */
.pricing { background: var(--cream-deep); }
.plans { display: grid; gap: 1rem; max-width: 48rem; margin-inline: auto; }
.plan {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper);
  box-shadow: var(--shadow-s);
}
.plan__tag {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan__name { margin-top: 1rem; font-size: 1.3rem; }
.plan__price {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-900);
}
.plan__price small { margin-left: 0.2rem; font-size: 1rem; font-weight: 700; letter-spacing: 0; color: var(--ink-soft); }
.plan__meta { margin-top: 0.6rem; font-size: 0.9375rem; font-weight: 600; }
.plan__desc { flex: 1; margin: 0.5rem 0 1.5rem; font-size: 0.9375rem; color: var(--ink-soft); }

.plan--featured {
  border-color: var(--green-800);
  background: var(--green-800);
  color: var(--cream);
  box-shadow: 0 22px 40px -24px rgb(19 48 31 / 0.85);
}
.plan--featured .plan__tag { background: var(--turmeric); color: var(--green-950); }
.plan--featured .plan__name,
.plan--featured .plan__price { color: var(--white); }
.plan--featured .plan__price small,
.plan--featured .plan__desc { color: rgb(255 248 236 / 0.82); }
.plan--featured :focus-visible { outline-color: var(--turmeric); }

.includes {
  max-width: 48rem;
  margin: 1.25rem auto 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper);
}
.includes__title { font-size: 1.0625rem; }
.includes .checklist { margin-top: 1rem; gap: 0.7rem; }
.includes__deposit { margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px dashed var(--line-strong); font-size: 0.9375rem; }
.fine-print { margin-top: 0.75rem; font-size: 0.875rem; color: var(--ink-soft); }

@media (min-width: 600px) {
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
  .checklist--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.5rem; }
}

/* Who it's for */
.who__grid { display: grid; gap: 2rem; align-items: start; }
.who__lead { max-width: 34rem; margin-top: 1rem; color: var(--ink-soft); }
.not-fit {
  padding: 1.5rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-l);
  background: var(--paper);
}
.not-fit h3 { font-size: 1.125rem; }
.not-fit .checklist { margin-top: 1rem; }
@media (min-width: 960px) {
  .who__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 4rem; align-items: center; }
}

/* Food & safety */
.safety { background: var(--paper); }
.safety__list { display: grid; border-top: 1px solid var(--line); }
.safety__list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-content: start;
  column-gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.safety__list .icon { grid-row: span 2; width: 28px; height: 28px; margin-top: 0.1rem; color: var(--green-700); }
.safety__list h3 { font-size: 1.125rem; }
.safety__list p { margin-top: 0.3rem; font-size: 0.975rem; color: var(--ink-soft); }
.safety__list .is-important .icon { color: var(--coral-ink); }
@media (min-width: 720px) {
  .safety__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2.5rem; }
}
@media (min-width: 1024px) {
  .safety__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* FAQ */
.faq__grid { display: grid; gap: 2rem; }
.faq__intro > p:not(.eyebrow) { margin: 1rem 0 1.5rem; color: var(--ink-soft); }
.faq-group + .faq-group { margin-top: 2.25rem; }
.faq-group__title {
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mango-ink);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding-block: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--green-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313301F' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform 0.25s var(--ease), background-color 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--turmeric-100); }
.faq-item summary:hover { color: var(--green-700); }
.faq-item__body { padding: 0 2.75rem 1.25rem 0; color: var(--ink-soft); }

@media (min-width: 960px) {
  .faq__grid { grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 4.5rem; align-items: start; }
  .faq__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
}

/* Join */
.join {
  position: relative;
  background:
    radial-gradient(circle at calc(100% - 40px) 190px, rgb(242 178 51 / 0.14) 0 150px, transparent 151px),
    radial-gradient(circle at 2% 100%, rgb(61 158 104 / 0.35) 0 190px, transparent 191px),
    var(--green-800);
  color: var(--cream);
}
.join::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 24' preserveAspectRatio='none'%3E%3Cpath d='M0 12C30 2 90 2 120 12S210 22 240 12V24H0z' fill='%23184D33'/%3E%3C/svg%3E");
}
.join :focus-visible { outline-color: var(--turmeric); }
.join__inner { display: grid; gap: 2.25rem; align-items: center; }
.join h2 { color: var(--white); font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.5rem); letter-spacing: -0.03em; }
.join__lead { max-width: 34rem; margin-top: 1rem; font-size: 1.125rem; color: rgb(255 248 236 / 0.88); }
.join__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.join__actions .btn { flex: 1 1 14rem; }
.join__small { margin-top: 1rem; font-size: 0.875rem; color: rgb(255 248 236 / 0.8); }
.join__small a { color: var(--turmeric); }

.launch {
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-l);
  background: rgb(255 255 255 / 0.07);
  color: rgb(255 248 236 / 0.9);
}
.launch__mark { width: 44px; height: 44px; margin-bottom: 0.9rem; color: var(--cream); }
.launch__title { margin-bottom: 0.4rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--white); }

@media (min-width: 960px) {
  .join__inner { grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); gap: 4rem; }
  .join__actions .btn { flex: 0 0 auto; }
}

/* Footer */
.site-footer { padding-block: 3rem 7rem; background: var(--cream-deep); font-size: 0.9375rem; }
.footer__grid { display: grid; gap: 2rem; }
.footer__tagline { margin-top: 0.75rem; color: var(--ink-soft); }
.footer__heading {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mango-ink);
}
.footer__nav ul,
.footer__contact ul { display: grid; gap: 0.1rem; }
.footer__nav a,
.footer__contact a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--ink);
  text-decoration: none;
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--green-700); text-decoration: underline; }
.footer__domain { display: inline-flex; align-items: center; min-height: 40px; color: var(--ink-soft); }
.footer__legal {
  display: grid;
  gap: 0.4rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

.install {
  max-width: 24rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--paper);
}
.install__title { font-weight: 700; color: var(--green-900); }
.install__text { margin: 0.2rem 0 0.8rem; font-size: 0.875rem; color: var(--ink-soft); }
.install__ios { font-size: 0.875rem; }
.install__ios .icon { margin-inline: 0.15rem 0.25rem; color: var(--green-700); }

@media (min-width: 720px) {
  .footer__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; }
}

/* 6. Floating WhatsApp button + toast -------------------------------------- */
.fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px -8px rgb(14 80 42 / 0.6);
  transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s, background-color 0.2s;
}
.fab:hover { background: var(--wa-dark); color: var(--white); }
.fab .icon { width: 28px; height: 28px; }
.fab__label { display: none; }
.fab.is-hidden { opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.92); pointer-events: none; }
html:has(dialog[open]) .fab { opacity: 0; visibility: hidden; }

@media (min-width: 960px) {
  .fab { right: 1.5rem; bottom: 1.5rem; width: auto; height: 54px; padding: 0 1.3rem 0 1.05rem; }
  .fab .icon { width: 24px; height: 24px; }
  .fab__label { display: inline; }
}

.toast {
  position: fixed;
  bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 72px);
  left: 50%;
  z-index: 60;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  background: var(--green-950);
  color: var(--cream);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-m);
  transform: translateX(-50%);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.toast:not(.is-visible) { opacity: 0; transform: translate(-50%, 10px); pointer-events: none; }

.dev-note {
  position: fixed;
  bottom: 12px;
  left: 12px;
  z-index: 90;
  max-width: min(22rem, calc(100% - 100px));
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  background: #7A2E0E;
  color: var(--white);
  font-size: 0.8125rem;
  line-height: 1.4;
  box-shadow: var(--shadow-m);
}
.dev-note code { font-size: 0.8em; }

/* 7. Join dialog + form ---------------------------------------------------- */
.sheet {
  width: 100%;
  max-width: 100%;
  max-height: 92vh;
  max-height: 92dvh;
  margin: auto 0 0;
  padding: 0;
  overflow: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 24px 24px 0 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 -12px 48px rgb(16 42 28 / 0.28);
}
.sheet::backdrop { background: rgb(16 42 28 / 0.55); }
html:has(dialog[open]) { overflow: hidden; }

/* Fallback for browsers without <dialog> support */
.sheet.is-fallback { position: fixed; inset: auto 0 0 0; z-index: 80; display: block; }

.sheet__head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0.75rem 0.8rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.sheet__mark { flex: none; width: 30px; height: 30px; color: var(--green-700); }
.sheet__head h2 { flex: 1; font-size: 1.3rem; letter-spacing: -0.02em; }
.sheet__body { padding: 1.1rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom)); }

@media (min-width: 640px) {
  .sheet {
    width: min(100% - 2rem, 580px);
    max-height: min(92dvh, 900px);
    margin: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-m);
  }
  .sheet__head { padding-inline: 1.75rem 1rem; }
  .sheet__body { padding: 1.25rem 1.75rem 1.75rem; }
}

.form__intro { font-size: 0.9375rem; color: var(--ink-soft); }

.field { min-width: 0; margin: 1rem 0 0; padding: 0; border: 0; }
.field > label,
.field > legend,
.done__label {
  display: block;
  margin-bottom: 0.4rem;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-900);
}
.optional { font-weight: 500; color: var(--ink-soft); }

.field input,
.field textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  background: var(--white);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 84px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #736D60; opacity: 1; }
.field input:focus,
.field textarea:focus {
  outline: 2px solid transparent;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgb(30 107 69 / 0.22);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--danger); }

.field-row { display: grid; grid-template-columns: minmax(0, 1fr) 8rem; gap: 0.75rem; }

.field__hint { margin-top: 0.4rem; font-size: 0.8125rem; line-height: 1.45; color: var(--ink-soft); }
.field__error {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--danger);
}
.field__error::before {
  content: "!";
  display: inline-grid;
  flex: none;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--danger);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.input-prefix {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input-prefix > span {
  display: grid;
  place-items: center;
  padding-inline: 0.85rem;
  border-right: 1px solid var(--line);
  background: var(--cream);
  font-weight: 700;
  color: var(--ink-soft);
}
.field .input-prefix input,
.field .input-prefix input[aria-invalid="true"] { min-width: 0; border: 0; border-radius: 0; box-shadow: none; }
.input-prefix:focus-within { border-color: var(--green-700); box-shadow: 0 0 0 3px rgb(30 107 69 / 0.22); }
.input-prefix:has(input[aria-invalid="true"]) { border-color: var(--danger); }

.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
.choices--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice { position: relative; display: block; }
.choice input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.choice__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.55rem 0.6rem;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  background: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
}
.choice:hover .choice__box { border-color: var(--green-600); }
.choice input:checked + .choice__box {
  border-color: var(--green-700);
  background: var(--green-100);
  color: var(--green-900);
  box-shadow: inset 0 0 0 1px var(--green-700);
}
.choice input:focus-visible + .choice__box { outline: 3px solid var(--green-900); outline-offset: 2px; }
.field.is-invalid .choice__box { border-color: var(--danger); }

.form__submit { margin-top: 1.5rem; }
.form__status { margin-top: 0.6rem; font-size: 0.875rem; font-weight: 600; text-align: center; color: var(--danger); }
.form__status:empty { margin: 0; }
.form__privacy { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 0.75rem; font-size: 0.8125rem; color: var(--ink-soft); }
.form__privacy .icon { width: 20px; height: 20px; color: var(--green-700); }

.done { padding-top: 0.5rem; text-align: center; }
.done:focus { outline: none; }
.done__icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
}
.done__icon .icon { width: 32px; height: 32px; stroke-width: 2.4; }
.done__title { margin-top: 1rem; font-size: 1.4rem; }
.done > p { margin-top: 0.5rem; color: var(--ink-soft); }
.done__fallback { margin-top: 1.5rem; padding: 1.1rem; border-radius: var(--radius-m); background: var(--cream); text-align: left; }
.done__actions { display: grid; gap: 0.6rem; margin: 0.75rem 0 1rem; }
.done__title:focus { outline: none; }
.done__status { font-size: 0.875rem; font-weight: 600; color: var(--green-700); }
.done__status:not(:empty) { margin: -0.4rem 0 0.9rem; }
.done__number { margin-bottom: 1rem; font-size: 0.9375rem; }
.done__message {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font: 0.9375rem/1.5 var(--font-body);
  color: var(--ink);
  resize: none;
}
.done__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; }
@media (min-width: 480px) {
  .done__actions { grid-template-columns: 1fr 1fr; }
}

/* 8. Simple pages (offline, 404) ------------------------------------------ */
.simple {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem var(--gutter);
  text-align: center;
}
.simple__card { max-width: 30rem; }
.simple__badge {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 1.75rem;
  border-radius: 32px;
  background: var(--green-100);
  color: var(--green-700);
}
.simple__badge svg { width: 64px; height: 64px; }
.simple h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 2.8rem); letter-spacing: -0.03em; }
.simple p { margin-top: 0.9rem; color: var(--ink-soft); }
.simple__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.75rem; }
.simple__small { font-size: 0.875rem; }

/* 9. Motion ---------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  .reveal-pending { opacity: 0; transform: translateY(18px); }
  .reveal-pending.is-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--delay, 0ms);
  }

  .chip__dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green-500);
    animation: ping 2.4s var(--ease) 6;
  }

  .site-header.nav-open .site-nav { animation: drop 0.22s var(--ease); }
  .sheet[open] { animation: sheet-in 0.32s var(--ease); }
  .sheet[open]::backdrop { animation: fade-in 0.32s ease; }
  .btn .icon--nudge { transition: transform 0.2s var(--ease); }
  .btn:hover .icon--nudge { transform: translateX(3px); }

  @supports (interpolate-size: allow-keywords) {
    .faq-item { interpolate-size: allow-keywords; }
    .faq-item::details-content {
      height: 0;
      overflow: clip;
      transition: height 0.3s var(--ease), content-visibility 0.3s allow-discrete;
    }
    .faq-item[open]::details-content { height: auto; }
  }
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.6; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}
@keyframes drop { from { opacity: 0; transform: translateY(-6px); } }
@keyframes sheet-in { from { opacity: 0; transform: translateY(40px); } }
@keyframes fade-in { from { opacity: 0; } }

@media (forced-colors: active) {
  .btn { border-color: ButtonText; }
  .diet::before,
  .diet-mark,
  .token { forced-color-adjust: none; }
}

@media print {
  .site-header,
  .fab,
  .toast,
  .join__actions,
  .hero__actions { display: none !important; }
  body { background: var(--white); }
  .reveal-pending { opacity: 1 !important; transform: none !important; }
}
