:root {
  --ink: #16281d;
  --ink-soft: #40554a;
  --ink-mute: #6e8175;
  --forest: #143d2b;
  --green: #1c6b42;
  --green-bright: #2f8f5b;
  --leaf: #5ac98c;
  --leaf-wash: #e6f3ea;
  --spice: #c77a2c;
  --spice-wash: #f7ead6;
  --danger: #c0483b;
  --paper: #fbf8f1;
  --paper-2: #f4ecdd;
  --card: #ffffff;
  --line: #e7e0d0;
  --shadow: 0 18px 40px -20px rgba(20, 61, 43, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(20, 61, 43, 0.3);
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --maxw: 1180px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-bright);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); background: #fff; }
.btn-light { background: #fff; color: var(--forest); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- nav ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(12px);
  background: rgba(251, 248, 241, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
header.scrolled { border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--forest); }
.brand .pin { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color 0.15s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 76px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 66px); color: var(--forest); }
.hero h1 em { font-style: italic; color: var(--green-bright); }
.hero .lede { font-size: 19px; color: var(--ink-soft); margin: 22px 0 30px; max-width: 30ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 34px; }
.hero-trust .stat { }
.hero-trust .num { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--forest); }
.hero-trust .lbl { font-size: 13px; color: var(--ink-mute); font-weight: 600; }

.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 7/5; object-fit: cover;
  border: 6px solid #fff;
}
.float-card {
  position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow);
  padding: 13px 16px; border: 1px solid var(--line);
}
.float-verdict { bottom: -22px; left: -26px; display: flex; align-items: center; gap: 11px; }
.float-verdict .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--leaf-wash); display: grid; place-items: center; font-size: 20px; }
.float-verdict .t1 { font-weight: 800; font-size: 14px; color: var(--forest); }
.float-verdict .t2 { font-size: 12.5px; color: var(--ink-mute); }
.float-badge {
  top: -18px; right: -18px; display: flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 13px; color: var(--green);
}
.float-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px var(--leaf-wash); }

/* ---------- marquee strip ---------- */
.strip { background: var(--forest); color: #dff0e5; padding: 16px 0; }
.strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; font-weight: 600; font-size: 14.5px; }
.strip b { color: #fff; }
.strip .sep { opacity: 0.4; }

/* ---------- sections ---------- */
section { padding: 88px 0; }
.sec-head { max-width: 620px; margin-bottom: 48px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 46px); color: var(--forest); margin: 14px 0 16px; }
.sec-head p { font-size: 18px; color: var(--ink-soft); }

/* ---------- trust ladder ---------- */
.ladder-sec { background: var(--paper-2); }
.ladder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ladder { display: flex; flex-direction: column; gap: 10px; }
.rung {
  display: flex; align-items: center; gap: 15px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 15px 18px; box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
}
.rung:hover { transform: translateX(6px); }
.rung .chip { width: 12px; height: 44px; border-radius: 6px; flex: none; }
.rung .r-name { font-weight: 800; font-size: 16px; color: var(--forest); }
.rung .r-desc { font-size: 13.5px; color: var(--ink-mute); }
.rung .emoji { margin-left: auto; font-size: 22px; }
.ladder-photo { border-radius: var(--r-lg); box-shadow: var(--shadow); aspect-ratio: 1; object-fit: cover; border: 6px solid #fff; }

/* ---------- feature split (scan) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.scan-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.scan-card .cap { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); font-weight: 700; color: var(--forest); }
.scan-card .cap .lens { margin-left: auto; color: var(--green-bright); }
.dishrow { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid #f0eadd; }
.dishrow:last-child { border-bottom: 0; }
.dishrow .dn { font-weight: 700; font-size: 15px; }
.dishrow .dnote { font-size: 12.5px; color: var(--ink-mute); }
.vpill { margin-left: auto; font-weight: 800; font-size: 12px; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.v-vegan { background: #dff0e5; color: #1c6b42; }
.v-ask { background: var(--spice-wash); color: #a5641f; }
.v-no { background: #f7e0dc; color: #b23b2d; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; }
.feat-list .fic { width: 30px; height: 30px; border-radius: 9px; background: var(--leaf-wash); display: grid; place-items: center; flex: none; font-size: 16px; }
.feat-list b { color: var(--forest); }
.feat-list span { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- filters ---------- */
.filters-sec { background: var(--forest); color: #eaf6ee; text-align: center; }
.filters-sec h2 { color: #fff; }
.filters-sec p { color: #b9d7c4; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 12px; }
.chip-tag {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff; font-weight: 700; font-size: 15px; padding: 11px 20px; border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}
.chip-tag:hover { background: rgba(90,201,140,0.22); border-color: var(--leaf); transform: translateY(-2px); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gcard { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; background: #000; }
.gcard img { aspect-ratio: 4/5; object-fit: cover; transition: transform 0.5s ease; opacity: 0.94; }
.gcard:hover img { transform: scale(1.06); }
.gcard .glabel { position: absolute; left: 18px; bottom: 16px; color: #fff; }
.gcard .glabel .gt { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.gcard .glabel .gs { font-size: 13px; opacity: 0.9; }
.gcard::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,16,0.7), transparent 55%); }
.gcard .glabel { z-index: 2; }

/* ---------- cities ---------- */
.cities-sec { background: var(--paper-2); text-align: center; }
.city-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.city { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-weight: 700; box-shadow: var(--shadow-sm); }
.city .live { color: var(--green-bright); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.city .soon { color: var(--ink-mute); font-size: 12px; font-weight: 700; }
.city.on { border-color: var(--leaf); }

/* ---------- CTA ---------- */
.cta-sec { position: relative; color: #fff; text-align: center; padding: 120px 0; }
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-sec::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(20,61,43,0.92), rgba(20,61,43,0.66)); }
.cta-sec h2 { font-size: clamp(32px, 5vw, 52px); color: #fff; }
.cta-sec p { font-size: 19px; color: #d8eadf; max-width: 34ch; margin: 18px auto 30px; }
.email-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-form input {
  flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12); color: #fff; font-size: 15px; font-family: var(--font-sans);
}
.email-form input::placeholder { color: rgba(255,255,255,0.7); }
.email-form input:focus { outline: none; border-color: var(--leaf); background: rgba(255,255,255,0.18); }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 16px; }

/* ---------- footer ---------- */
footer { background: var(--forest); color: #a9c6b5; padding: 54px 0 32px; }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; color: #fff; }
.foot-brand .pin { width: 30px; height: 30px; }
.foot-tag { margin-top: 12px; max-width: 30ch; font-size: 14.5px; color: #9dbcab; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h4 { color: #fff; font-size: 14px; letter-spacing: 0.04em; margin-bottom: 12px; }
.foot-col a { display: block; font-size: 14.5px; color: #a9c6b5; padding: 4px 0; transition: color 0.15s; }
.foot-col a:hover { color: var(--leaf); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 22px; font-size: 13px; color: #8aa899; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .ladder-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-media { order: 0; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .nav-links { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .foot-grid { flex-direction: column; }
}
@media (max-width: 560px) {
  section { padding: 62px 0; }
  .hero { padding: 40px 0 60px; }
  .hero-trust { gap: 20px; }
  .nav-cta .btn-ghost { display: none; }
}
