/* ── Mapple Coffee Roasters — styles ───────────────────────────────────── */

:root {
  --green: #1B5E20;
  --green-deep: #0F3D14;
  --green-2: #2E7D32;
  --leaf: #8BC34A;
  --leaf-soft: #C5E1A5;
  --cream: #FAFAF0;
  --cream-2: #F4EFDB;
  --cream-3: #EFE9CF;
  --ink: #1A1A1A;
  --ink-2: #3a342b;
  --gold: #F9A825;
  --gold-soft: #FFD54F;
  --tomato: #E84B3C;
  --shadow-card: 0 14px 30px -16px rgba(15, 61, 20, 0.35), 0 2px 0 rgba(15, 61, 20, 0.06);
  --shadow-card-hover: 0 24px 40px -18px rgba(15, 61, 20, 0.45), 0 3px 0 rgba(15, 61, 20, 0.08);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --font-head: "Fredoka", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-script: "Caveat", cursive;
}

/* alternate palettes */
:root[data-palette="meadow"] {
  --green: #2E7D32;
  --green-deep: #1B5E20;
  --green-2: #43A047;
  --leaf: #9CCC65;
}
:root[data-palette="espresso"] {
  --green: #1B5E20;
  --green-deep: #0F3D14;
  --gold: #E0A82E;
  --leaf: #7CB342;
  --cream: #F6EFDF;
  --cream-2: #ECE0BE;
}

/* heading-font override */
:root[data-head="Nunito"] { --font-head: "Nunito", system-ui, sans-serif; }
:root[data-head="Poppins"] { --font-head: "Poppins", system-ui, sans-serif; }

/* density */
:root[data-density="compact"] { --section-pad-y: 64px; --gap: 16px; }
:root[data-density="regular"] { --section-pad-y: 96px; --gap: 24px; }
:root[data-density="comfy"]   { --section-pad-y: 128px; --gap: 32px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(40px, 6.2vw, 84px); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4.2vw, 56px); }
h3 { font-size: clamp(20px, 1.6vw, 26px); }
p  { margin: 0; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1240px, 100% - 40px);
  margin: 0 auto;
}

/* ── Navbar ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--green-deep);
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-deep);
  display: grid; place-items: center;
  color: var(--leaf);
  box-shadow: 0 4px 0 rgba(0,0,0,0.06);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
}
.nav-links a { position: relative; padding: 6px 2px; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--green); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 6px; background: var(--gold-soft);
  border-radius: 4px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
  z-index: -1;
  opacity: .8;
}
.nav-links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: 0 6px 0 var(--green-deep), 0 14px 24px -10px rgba(15,61,20,.5);
  transform: translateY(-3px);
}
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 8px 0 var(--green-deep), 0 18px 28px -10px rgba(15,61,20,.55); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 0 var(--green-deep); }

.btn-yellow {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 6px 0 #c98800, 0 14px 24px -10px rgba(201,136,0,.6);
  transform: translateY(-3px);
}
.btn-yellow:hover { transform: translateY(-5px); box-shadow: 0 8px 0 #c98800, 0 18px 28px -10px rgba(201,136,0,.65); }

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
  padding: 10px 22px;
}
.btn-outline:hover { background: var(--green-deep); color: var(--cream); }

.btn-ghost {
  background: var(--cream);
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
  box-shadow: 0 5px 0 var(--green-deep);
  transform: translateY(-2.5px);
  padding: 10px 22px;
}
.btn-ghost:hover { transform: translateY(-4px); box-shadow: 0 7px 0 var(--green-deep); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 80% 10%, rgba(139,195,74,0.20), transparent 60%),
    radial-gradient(60% 50% at 10% 100%, rgba(249,168,37,0.18), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, #F2EDD4 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-deep);
  background: var(--gold-soft);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 0 #d8a93b;
}
.hero h1 .accent {
  color: var(--gold);
  display: inline-block;
  transform: rotate(-2deg);
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 14px;
  background: var(--leaf);
  border-radius: 999px;
  z-index: -1;
  opacity: .65;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 540px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 32px;
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px dashed rgba(27, 94, 32, 0.2);
}
.hero-meta-item .num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 28px;
  color: var(--green-deep);
}
.hero-meta-item .lbl {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}

.hero-visual { position: relative; }

/* hero photo variant */
.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/5;
  max-height: 560px;
}
.hero-photo-wrap .ph-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(15,61,20,.4), 0 0 0 8px var(--cream), 0 0 0 12px var(--green-deep);
  background: var(--green-deep);
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-badge {
  position: absolute;
  background: var(--cream);
  border: 3px solid var(--green-deep);
  border-radius: 18px;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--green-deep);
  box-shadow: 0 8px 0 var(--green-deep);
  display: flex; align-items: center; gap: 10px;
}
.hero-photo-badge.top-right { top: 24px; right: -22px; transform: rotate(4deg); }
.hero-photo-badge.bot-left { bottom: -18px; left: -22px; transform: rotate(-3deg); background: var(--gold); }
.hero-photo-badge .em { font-size: 22px; }

/* hero illustration variant */
.hero-svg-stage {
  position: relative;
  aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.hero-svg-stage svg { width: 100%; height: 100%; max-width: 520px; }

/* hero collage variant */
.hero-collage {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 580px;
}
.hero-collage .tile {
  position: absolute;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--cream);
  background: var(--green-deep);
  overflow: hidden;
}
.hero-collage .tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .t1 { top: 0; left: 6%; width: 56%; height: 50%; transform: rotate(-3deg); }
.hero-collage .t2 { top: 18%; right: 0; width: 46%; height: 38%; transform: rotate(4deg); }
.hero-collage .t3 { bottom: 4%; left: 18%; width: 52%; height: 38%; transform: rotate(-2deg); }
.hero-collage .label {
  position: absolute;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 28px;
  color: var(--green-deep);
  background: var(--gold-soft);
  padding: 6px 16px;
  border-radius: 999px;
  transform: rotate(-6deg);
  bottom: -8px; right: 4%;
  box-shadow: 0 5px 0 #c8a13a;
}

/* floating steam */
.steam {
  position: absolute;
  pointer-events: none;
}
@keyframes steam-rise {
  0%   { transform: translateY(0) scale(1); opacity: .9; }
  100% { transform: translateY(-30px) scale(1.05); opacity: 0; }
}
.steam path { animation: steam-rise 3s ease-out infinite; }
.steam path:nth-child(2) { animation-delay: .8s; }
.steam path:nth-child(3) { animation-delay: 1.6s; }

/* ── Sections common ──────────────────────────────────────────────────── */
section { position: relative; }
.sec-pad {
  padding: var(--section-pad-y, 96px) 0;
}
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-eyebrow {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 28px;
  color: var(--green-2);
  display: block;
  margin-bottom: 8px;
  transform: rotate(-2deg);
}
.sec-sub {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--ink-2);
  font-size: 17px;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── About ────────────────────────────────────────────────────────────── */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  aspect-ratio: 5/6;
}
.about-img-stack .frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--cream);
}
.about-img-stack .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-stack .f1 { top: 0; left: 0; width: 64%; height: 62%; transform: rotate(-3deg); background: var(--green-deep); }
.about-img-stack .f2 { bottom: 0; right: 0; width: 58%; height: 56%; transform: rotate(3deg); background: var(--gold); }
.about-img-stack .sticker {
  position: absolute;
  top: 40%; right: -8%;
  width: 130px; height: 130px;
  background: var(--gold-soft);
  color: var(--green-deep);
  border: 3px solid var(--green-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  transform: rotate(-12deg);
  box-shadow: 0 8px 0 var(--green-deep);
  z-index: 2;
}
.about-text h2 .underline {
  position: relative;
  display: inline-block;
}
.about-text h2 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 10px;
  background: var(--gold-soft);
  border-radius: 4px;
  z-index: -1;
}
.about-body {
  font-size: 17px;
  color: var(--ink-2);
  margin-top: 24px;
  max-width: 540px;
}
.about-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: var(--cream-2);
  border: 2px solid rgba(27,94,32,0.1);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}
.stat .v { font-family: var(--font-head); font-weight: 600; font-size: 26px; color: var(--green-deep); }
.stat .l { font-size: 12px; color: var(--ink-2); margin-top: 2px; font-weight: 500; }

/* ── Why ─────────────────────────────────────────────────────────────── */
.why { background: var(--green-deep); color: var(--cream); overflow: hidden; }
.why h2, .why .sec-eyebrow { color: var(--gold-soft); }
.why .sec-eyebrow { color: var(--leaf); }
.why .sec-sub { color: rgba(250,250,240,.78); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(250, 250, 240, 0.04);
  border: 1.5px solid rgba(250, 250, 240, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, background .25s, border-color .25s;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(250, 250, 240, 0.08);
  border-color: var(--gold-soft);
}
.why-card .icon-bubble {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.why-card h3 { color: var(--cream); margin-bottom: 8px; }
.why-card p { color: rgba(250, 250, 240, 0.72); font-size: 15px; }

/* ── Menu ─────────────────────────────────────────────────────────────── */
.menu-section { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.menu-card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 2px solid rgba(27,94,32,.1);
  background: var(--cream-2);
  transition: transform .2s ease, box-shadow .2s;
  overflow: hidden;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.menu-card.alt-1 { background: #E8F2D6; }
.menu-card.alt-2 { background: #FFF1CF; }
.menu-card.alt-3 { background: #F1E6D0; }
.menu-card .icon-circle {
  width: 56px; height: 56px;
  background: var(--green-deep);
  color: var(--gold-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 0 rgba(0,0,0,.08);
}
.menu-card h3 { margin-bottom: 8px; }
.menu-card .items { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.menu-card .from {
  margin-top: 14px;
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13px;
  color: var(--green-deep);
  background: rgba(255,255,255,.6);
  padding: 4px 10px;
  border-radius: 999px;
}
.menu-cta-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ── Formats ──────────────────────────────────────────────────────────── */
.formats { background: var(--cream-3); }
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.format-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(27,94,32,.1);
  display: flex; flex-direction: column;
  transition: transform .2s ease;
}
.format-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.format-head {
  padding: 32px 24px 20px;
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.format-head .label {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold-soft);
  transform: rotate(-2deg);
  display: block;
}
.format-head h3 { color: var(--cream); margin-top: 4px; font-size: 28px; }
.format-head .area {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 500;
  display: inline-block;
  background: rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.2);
}
.format-head .deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  opacity: .12;
}
.format-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.format-body ul {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.format-body li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-2);
}
.format-body li::before {
  content: "✓";
  color: var(--green-2);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
}
.format-body .price-row {
  margin: 6px 0 18px;
  font-family: var(--font-head);
  color: var(--green-deep);
}
.format-body .price-row .big { font-size: 28px; font-weight: 600; }
.format-body .price-row .small { font-size: 13px; color: var(--ink-2); font-weight: 400; }
.format-body .btn { margin-top: auto; }

/* ── Locations ────────────────────────────────────────────────────────── */
.locations {
  background: var(--cream);
  overflow: hidden;
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.loc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.loc-card {
  background: var(--cream-2);
  border: 2px solid rgba(27,94,32,.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.loc-card.live { border-color: var(--green-2); background: linear-gradient(135deg, #ECF5DA, #DDEBC0); }
.loc-card.upcoming { background: var(--cream-2); }
.loc-pin {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.loc-card.upcoming .loc-pin { background: var(--gold); color: var(--green-deep); }
.loc-name { font-family: var(--font-head); font-weight: 500; color: var(--green-deep); font-size: 16px; }
.loc-sub { font-size: 12px; color: var(--ink-2); display: flex; align-items: center; gap: 6px; }
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-2);
}
.dot.live { background: var(--green-2); animation: pulse 1.8s ease-in-out infinite; }
.dot.up { background: var(--gold); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,50,.6); }
  50% { box-shadow: 0 0 0 8px rgba(46,125,50,0); }
}

.loc-map {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #DDEBC0 0%, #C5E1A5 100%);
  border-radius: var(--radius-xl);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* ── Form ────────────────────────────────────────────────────────────── */
.inquiry {
  background: linear-gradient(180deg, #0F3D14 0%, #1B5E20 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.inquiry h2 { color: var(--cream); }
.inquiry .sec-eyebrow { color: var(--gold-soft); }
.inquiry .sec-sub { color: rgba(250,250,240,.78); }
.inquiry-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.5);
  border: 4px solid var(--gold-soft);
  position: relative;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--green-deep);
}
.field label .req { color: var(--tomato); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 2px solid rgba(27,94,32,.18);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(46,125,50,.18);
}
.field textarea { min-height: 100px; resize: vertical; }
.field.err input, .field.err select, .field.err textarea { border-color: var(--tomato); }
.field .err-msg {
  font-size: 12px;
  color: var(--tomato);
  margin-top: 2px;
  font-weight: 500;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
  font-size: 18px;
  padding: 18px 24px;
}
.form-footnote {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
}
.form-footnote a {
  color: var(--green-deep);
  font-weight: 600;
  border-bottom: 2px solid var(--gold-soft);
}

/* ── Testimonials ─────────────────────────────────────────────────────── */
.testi { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid rgba(27,94,32,.1);
  position: relative;
  display: flex; flex-direction: column;
}
.testi-card .quote-mark {
  font-family: var(--font-head);
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 12px; right: 18px;
  opacity: .5;
}
.testi-quote { font-size: 16px; color: var(--ink-2); margin-bottom: 22px; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-soft);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
}
.testi-name { font-family: var(--font-head); font-weight: 500; color: var(--green-deep); }
.testi-city { font-size: 13px; color: var(--ink-2); }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer {
  background: var(--green-deep);
  color: rgba(250,250,240,.85);
  padding: 64px 0 32px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer h4 {
  font-size: 16px;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.foot-grid a, .foot-grid p { display: block; padding: 4px 0; color: rgba(250,250,240,.78); }
.foot-grid a:hover { color: var(--gold-soft); }
.foot-tag {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--gold-soft);
  margin-top: 12px;
}
.foot-bottom {
  border-top: 1px solid rgba(250,250,240,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(250,250,240,.6);
}
.foot-socials {
  display: flex; gap: 12px;
  margin-top: 16px;
}
.foot-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(250,250,240,.08);
  display: grid; place-items: center;
  transition: background .15s, color .15s;
}
.foot-socials a:hover { background: var(--gold-soft); color: var(--green-deep); }

/* ── Modal ─────────────────────────────────────────────────────────────── */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(15, 61, 20, 0.75);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fade .2s ease;
}
@media (max-width: 480px) {
  .modal-back { padding: 0; align-items: flex-end; }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
  border: 4px solid var(--gold-soft);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: var(--green-deep);
  color: var(--cream);
  flex-shrink: 0;
}
.modal-head h3 { color: var(--cream); margin: 0; }
.modal-head .sub { font-size: 13px; color: rgba(250,250,240,.7); margin-top: 2px; }
.modal-close {
  background: var(--gold-soft); color: var(--green-deep);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: transform .15s;
}
.modal-close:hover { transform: rotate(90deg); }
.modal-body {
  overflow-y: auto;
  padding: 28px 32px;
}
.modal-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu-cat-block h4 {
  display: inline-block;
  background: var(--green-deep);
  color: var(--gold-soft);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.menu-cat-block ul {
  list-style: none; padding: 0; margin: 0;
}
.menu-cat-block li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(27,94,32,.18);
  font-size: 14.5px;
  color: var(--ink-2);
}
.menu-cat-block li .name { font-weight: 500; }
.menu-cat-block li .price {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--green-deep);
  white-space: nowrap;
}
.menu-cat-block li .dotline {
  flex: 1; border-bottom: 1.5px dotted rgba(27,94,32,.25);
  align-self: flex-end; margin-bottom: 6px;
}

/* ── Floating WhatsApp button ─────────────────────────────────────────── */
.fab-whats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 0 #0E8C49, 0 16px 32px -10px rgba(37,211,102,.6);
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: transform .15s;
}
.fab-whats:hover { transform: translateY(-6px); }

/* ── Doodles ─────────────────────────────────────────────────────────── */
.doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}
[data-doodles="false"] .doodle { display: none; }

/* ── Toast ───────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--green-deep);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--font-head);
  font-size: 14px;
  z-index: 200;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,.5);
  animation: toast-in .25s ease;
  display: flex; align-items: center; gap: 10px;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.mob-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--green-deep);
  padding: 8px;
  border-radius: 10px;
}
.mob-menu:hover { background: rgba(27, 94, 32, 0.06); }

.mob-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--cream);
  border-top: 1px solid rgba(27, 94, 32, 0.1);
  animation: slide-down .2s ease;
}
.mob-drawer a {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--green-deep);
  font-size: 17px;
  padding: 14px 12px;
  border-radius: 12px;
  border-bottom: 1px solid rgba(27, 94, 32, 0.06);
}
.mob-drawer a:hover, .mob-drawer a:active { background: rgba(27, 94, 32, 0.05); }
.mob-drawer .btn { margin-top: 10px; align-self: flex-start; }
@keyframes slide-down { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; font-size: 14px; }
  .brand { font-size: 19px; }
  .brand-text { font-size: 17px; }
}

@media (max-width: 1024px) {
  .hero-grid, .about-grid, .loc-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid, .menu-grid, .format-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .modal-cats { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 480px; margin: 0 auto; aspect-ratio: 4/4; max-height: 480px; }
  .hero-collage { max-width: 480px; margin: 0 auto; }
  .about-img-stack { max-width: 480px; margin: 0 auto; }
  .loc-map { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mob-menu { display: inline-flex; align-items: center; justify-content: center; }
  .mob-drawer { display: flex; }
}

@media (max-width: 560px) {
  .nav-cta { display: none; }
}

@media (max-width: 420px) {
  .brand-text { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(34px, 9vw, 48px); }
  h2 { font-size: clamp(28px, 7vw, 36px); }
  .sec-pad { padding: 64px 0; }
  .sec-head { margin-bottom: 36px; }
  .sec-eyebrow { font-size: 22px; }
  .hero { padding: 32px 0 60px; }
  .hero-sub { font-size: 16px; margin-top: 16px; }
  .hero-ctas { margin-top: 24px; gap: 10px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 15px; }
  .hero-meta { gap: 20px; margin-top: 28px; padding-top: 20px; }
  .hero-meta-item .num { font-size: 22px; }
  .hero-meta-item .lbl { font-size: 11px; }
  .why-grid, .menu-grid, .format-grid, .testi-grid, .loc-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .inquiry-card { padding: 24px 20px; border-width: 3px; }
  .inquiry-card { border-radius: 22px; }
  .hero-photo-wrap { aspect-ratio: 4/4.2; max-height: 380px; }
  .hero-photo-badge { padding: 8px 12px; font-size: 13px; }
  .hero-photo-badge.top-right { right: 0; top: 8px; transform: rotate(3deg) scale(0.85); }
  .hero-photo-badge.bot-left { left: 0; bottom: -8px; transform: rotate(-3deg) scale(0.85); }
  .hero-photo-badge .em { font-size: 18px; }
  .about-img-stack { aspect-ratio: 5/5.5; }
  .about-img-stack .sticker { width: 90px; height: 90px; font-size: 12px; right: -4%; top: 36%; }
  .about-img-stack .sticker span { font-size: 20px !important; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 14px 10px; }
  .stat .v { font-size: 22px; }
  .container { width: calc(100% - 32px); }
  .fab-whats { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .why-card, .menu-card, .testi-card { padding: 22px 20px; }
  .format-head { padding: 24px 20px 18px; }
  .format-body { padding: 20px; }
  .format-head h3 { font-size: 24px; }
  .modal-head { padding: 18px 20px; }
  .modal-head h3 { font-size: 20px; }
  .modal-head .sub { font-size: 12px; }
  .modal-body { padding: 20px; }
  .menu-cat-block h4 { font-size: 16px; }
  .brand-mark { width: 38px; height: 38px; }
  .foot-tag { font-size: 19px; }
  .toast { right: 16px; left: 16px; bottom: 90px; justify-content: center; }
}

@media (max-width: 420px) {
  h1 { font-size: clamp(30px, 10vw, 40px); }
  .hero-eyebrow { font-size: 12px; padding: 7px 12px; }
  .hero-meta { gap: 16px 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .inquiry-card { padding: 20px 16px; }
  .field input, .field select, .field textarea { padding: 12px 14px; font-size: 15px; }
  .container { width: calc(100% - 24px); }
}

/* Hide tweaks panel on very small screens to avoid blocking content */
@media (max-width: 480px) {
  .twk-panel { transform: scale(0.92); transform-origin: bottom right; }
}

/* ══════════════════════════════════════════════════════════════════════ */
/* NEW SECTIONS (client spec additions)                                    */
/* ══════════════════════════════════════════════════════════════════════ */

/* italic accent in headings — matches "speak for themselves" style */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

/* ── Hero ticker pill ─────────────────────────────────────────────────── */
.hero-ticker {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(15, 61, 20, 0.88);
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.5);
  max-width: calc(100% - 28px);
}
.hero-ticker .ht-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-svg-stage .hero-ticker { bottom: 4px; left: 4px; }

/* ── Bestsellers ─────────────────────────────────────────────────────── */
.bestsellers { background: var(--cream-2); }
.bestseller-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bestseller-card {
  position: relative;
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: 20px;
  padding: 28px 22px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .22s ease, box-shadow .22s;
  overflow: hidden;
}
.bestseller-card::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--green-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.bestseller-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.bestseller-card:hover::after { transform: scaleX(1); }
.bs-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 11px;
  background: var(--cream-2);
  color: var(--green-deep);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--cream-3);
}
.bs-photo {
  width: 130px;
  height: 130px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  animation: bs-bob 3.4s ease-in-out infinite;
  will-change: transform;
}
.bs-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0,0,0,.2));
}
.bs-badge {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.bestseller-card h3 { font-size: 20px; margin-bottom: 8px; }
.bs-desc { font-size: 14px; color: var(--ink-2); flex: 1; margin-bottom: 14px; }
.bs-price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--green-deep);
}

/* ── Growth Analytics ────────────────────────────────────────────────── */
.analytics { background: var(--cream); }
.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.chart-card {
  background: var(--cream-2);
  border: 2px solid rgba(27,94,32,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.chart-title {
  font-size: 19px;
  margin-bottom: 18px;
  text-align: center;
}
.chart-box {
  position: relative;
  height: 300px;
  width: 100%;
}
.chart-box canvas { max-width: 100% !important; }
.chart-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted, #6b6b60);
  font-style: italic;
}

/* ── Footfall animated scene ─────────────────────────────────────────── */
.footfall-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 340;
}
.footfall-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ff-axis {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  fill: #6b6b60;
}

/* line draw */
.ff-line { transition: stroke-dashoffset 2s cubic-bezier(.45,.05,.25,1); }

/* area reveal (clip rect scales open L→R) */
.ff-reveal-rect {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 2s cubic-bezier(.45,.05,.25,1);
}
.ff-reveal-rect.open { transform: scaleX(1); }

/* data dots */
.ff-dot {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .4s ease, transform .5s cubic-bezier(.34,1.56,.64,1);
}
.ff-dot.in { opacity: 1; transform: scale(1); }

/* annotation markers (rings + connectors) */
.ff-anno {
  opacity: 0;
  transition: opacity .5s ease;
}
.ff-anno.in { opacity: 1; }
.ff-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: ff-ring-pulse 2s ease-out infinite;
}
@keyframes ff-ring-pulse {
  0% { transform: scale(.6); opacity: .9; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* road dashes drifting */
.ff-road { animation: ff-road 1.2s linear infinite; }
@keyframes ff-road { to { stroke-dashoffset: -26; } }

/* walkers */
.walker {
  animation: ff-walk var(--dur, 10s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes ff-walk {
  from { transform: translateX(var(--x0, -40px)); }
  to   { transform: translateX(660px); }
}
.walker-bob { animation: ff-bob .42s ease-in-out infinite; }
@keyframes ff-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.6px); }
}
.walker .leg, .walker .arm {
  transform-box: fill-box;
  transform-origin: 50% 0%;
}
.walker .legA { animation: ff-legA .42s ease-in-out infinite; }
.walker .legB { animation: ff-legB .42s ease-in-out infinite; }
.walker .armA { animation: ff-legB .42s ease-in-out infinite; }
.walker .armB { animation: ff-legA .42s ease-in-out infinite; }
@keyframes ff-legA {
  0%, 100% { transform: rotate(24deg); }
  50% { transform: rotate(-24deg); }
}
@keyframes ff-legB {
  0%, 100% { transform: rotate(-24deg); }
  50% { transform: rotate(24deg); }
}

/* annotation chips (HTML over SVG) */
.ff-chip {
  position: absolute;
  transform: translate(-50%, -50%) scale(.7);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: 999px;
  color: #fff;
  opacity: 0;
  transition: opacity .45s ease, transform .5s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.4);
}
.ff-chip.in { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.ff-chip.covid { background: #C58A1F; }
.ff-chip.high { background: var(--green-deep); }

/* live count-up badge */
.ff-count {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(15,61,20,0.92);
  color: var(--cream);
  border-radius: 14px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .5s ease, transform .5s ease;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.5);
}
.ff-count.in { opacity: 1; transform: translateY(0); }
.ff-count-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 26px;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}
.ff-count-lbl { font-size: 10.5px; opacity: .85; }
.stat-pills {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-pill {
  background: var(--cream-2);
  border: 2px solid rgba(27,94,32,.18);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 30px;
  color: var(--gold);
}
.sp-lbl { font-size: 13px; color: var(--ink-2); font-weight: 500; }

/* ── Locations: outlet map cards ─────────────────────────────────────── */
.outlet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.outlet-card {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  border: 2px solid rgba(27,94,32,.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  padding: 0;
}
.outlet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.outlet-map {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e8f0e8;
}
.outlet-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.outlet-card:hover .outlet-map img { transform: scale(1.05); }

/* fallback pin when the static map fails to load */
.outlet-map.map-failed::after {
  content: "📍";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 40px;
  background:
    repeating-linear-gradient(0deg, rgba(27,94,32,.06) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(27,94,32,.06) 0 1px, transparent 1px 26px),
    #e8f0e8;
}

.outlet-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,61,20,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
}
.outlet-card:hover .outlet-map-overlay { opacity: 1; }

.outlet-body { padding: 22px 24px; }
.outlet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.outlet-name {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--green-deep);
  font-weight: 600;
  line-height: 1.25;
}
.outlet-badge {
  background: var(--green-deep);
  color: var(--gold-soft);
  font-family: var(--font-head);
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.outlet-address {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
  border-bottom: 1px dotted rgba(27,94,32,.18);
  padding-bottom: 14px;
}
.outlet-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 14px;
}
.outlet-cta {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--green-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.outlet-card:hover .outlet-cta { gap: 12px; }

/* ── Location preview modal ──────────────────────────────────────────── */
.loc-modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
  border: 4px solid var(--gold-soft);
  animation: toast-in .25s ease;
}
.loc-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: var(--green-deep);
  color: var(--cream);
  flex-shrink: 0;
}
.loc-modal-head h3 { color: var(--cream); margin: 0; font-size: 20px; }
.loc-modal-head .sub { font-size: 13px; color: rgba(250,250,240,.72); margin-top: 4px; }
.loc-modal-map {
  position: relative;
  width: 100%;
  height: 360px;
  background: #e8f0e8;
  flex-shrink: 0;
}
.loc-modal-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.loc-modal-foot {
  padding: 18px 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.loc-modal-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  flex-wrap: wrap;
}
.loc-modal-stats .lm-badge {
  background: var(--green-deep);
  color: var(--gold-soft);
  font-family: var(--font-head);
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 999px;
}
.loc-modal-actions { display: flex; gap: 10px; }
@media (max-width: 860px) {
  /* outlet card: stack badge below name so long names don't get squeezed to 3 lines */
  .outlet-header { flex-direction: column; gap: 6px; }
  .outlet-name { font-size: 15px; }
  /* FAB-safe right gutter so stats/cta don't slide under the fixed button */
  .outlet-body { padding-right: 18px; }
}
@media (max-width: 560px) {
  .loc-modal-map { height: 260px; }
  .loc-modal-foot { flex-direction: column; align-items: stretch; }
  .loc-modal-actions { justify-content: stretch; }
  .loc-modal-actions .btn { flex: 1; justify-content: center; min-height: 44px; }
}
@media (max-width: 480px) {
  .loc-modal {
    width: 100%;
    max-height: calc(100vh - env(safe-area-inset-bottom, 0px));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: 0;
  }
  .loc-modal-head { padding: 16px 18px; }
  .loc-modal-head h3 { font-size: 16px; }
  .loc-modal-head .sub { font-size: 12px; }
  .loc-modal-map { height: 220px; }
  .loc-modal-foot { padding: 14px 18px 20px; gap: 12px; }
  .loc-modal-stats { gap: 12px; font-size: 13px; }
}
.outlet-summary {
  margin-top: 32px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
.outlet-summary .dotsep { color: var(--gold-soft); font-style: normal; opacity: .8; }

/* ── Investment Breakdown ────────────────────────────────────────────── */
.invest { background: var(--cream-3); }
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.invest-card {
  position: relative;
  background: var(--cream);
  border: 2px solid rgba(27,94,32,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.invest-card.popular {
  border: 3px solid var(--green-2);
  box-shadow: 0 24px 44px -18px rgba(27,94,32,.4);
  transform: translateY(-8px);
}
.invest-flag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--gold-soft);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 0 rgba(15,61,20,.25);
}
.invest-name {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(27,94,32,.2);
}
.invest-rows { display: flex; flex-direction: column; gap: 2px; }
.invest-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dotted rgba(27,94,32,.18);
}
.invest-row:last-child { border-bottom: none; }
.ir-k { font-size: 14px; color: var(--ink-2); }
.ir-v {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--green-deep);
  text-align: right;
}
.invest-reassure {
  margin-top: 36px;
  text-align: center;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── New-section responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bestseller-row { grid-template-columns: repeat(2, 1fr); }
  .chart-grid { grid-template-columns: 1fr; }
  .stat-pills { grid-template-columns: repeat(2, 1fr); }
  .outlet-grid { grid-template-columns: repeat(2, 1fr); }
  .invest-grid { grid-template-columns: 1fr; gap: 28px; }
  .invest-card.popular { transform: none; }
}
@media (max-width: 720px) {
  .hero-ticker { font-size: 11.5px; padding: 8px 13px; gap: 7px; }
  .bestseller-row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .bestseller-card { scroll-snap-align: center; }
  .chart-box { height: 260px; }
  .stat-pills { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sp-num { font-size: 24px; }
  .outlet-grid { grid-template-columns: 1fr; }
  .outlet-summary { font-size: 16px; gap: 10px; padding: 20px; }
  .outlet-summary .dotsep { display: none; }
  .invest-name { font-size: 24px; }
}

/* at ≤420px the container padding shrinks to 12px each side; match the carousel bleed */
@media (max-width: 420px) {
  .bestseller-row { margin: 0 -12px; padding-left: 12px; padding-right: 12px; }
}

/* ══════════════════════════════════════════════════════════════════════ */
/* AMBIENT MOTION — subtle, stable, transform/opacity only                 */
/* ══════════════════════════════════════════════════════════════════════ */

/* drifting doodles (keep inline rotate via transform; animate independent `translate`) */
.doodle { animation: doodle-float 8s ease-in-out infinite; will-change: translate; }
.doodle:nth-of-type(2n) { animation-duration: 10.5s; animation-delay: -2.5s; }
.doodle:nth-of-type(3n) { animation-duration: 13s; animation-delay: -5s; }
.doodle:nth-of-type(4n) { animation-duration: 9.5s; animation-delay: -1.5s; }
@keyframes doodle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

/* bestseller photo gentle bob (staggered) */
.bs-photo {
  animation: bs-bob 3.4s ease-in-out infinite;
  will-change: transform;
}
.bestseller-card:nth-child(2) .bs-photo { animation-delay: -0.8s; animation-duration: 3.8s; }
.bestseller-card:nth-child(3) .bs-photo { animation-delay: -1.6s; animation-duration: 3.1s; }
.bestseller-card:nth-child(4) .bs-photo { animation-delay: -2.4s; animation-duration: 4s; }
@keyframes bs-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-3deg); }
}

/* hero photo badges float (compose with their inline rotate via `translate`) */
.hero-photo-badge.top-right { animation: badge-float 5s ease-in-out infinite; }
.hero-photo-badge.bot-left  { animation: badge-float 6.2s ease-in-out infinite; animation-delay: -1.5s; }
@keyframes badge-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* hero eyebrow trophy + sticker subtle pulse */
.about-img-stack .sticker { animation: sticker-pulse 4.5s ease-in-out infinite; }
@keyframes sticker-pulse {
  0%, 100% { scale: 1; }
  50% { scale: 1.05; }
}

/* nav brand cup tiny idle sway */
.brand-mark { animation: cup-sway 6s ease-in-out infinite; }
@keyframes cup-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-7deg); }
}

/* menu/why icon bubbles breathe softly on the green section */
.why-card .icon-bubble { animation: bubble-breathe 5s ease-in-out infinite; }
.why-card:nth-child(2n) .icon-bubble { animation-delay: -1.2s; }
.why-card:nth-child(3n) .icon-bubble { animation-delay: -2.4s; }
@keyframes bubble-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* respect reduced-motion: stop all ambient loops */
@media (prefers-reduced-motion: reduce) {
  .doodle, .bs-photo, .hero-photo-badge.top-right, .hero-photo-badge.bot-left,
  .about-img-stack .sticker, .brand-mark, .why-card .icon-bubble,
  .walker, .walker-bob, .walker .leg, .walker .arm, .ff-ring, .ff-road,
  .steam path, .doodle-twinkle, .doodle-spin-slow, .sec-eyebrow {
    animation: none !important;
  }
}

/* keep section content above the scattered doodles */
.sec-pad > .container,
.hero > .container,
.inquiry > .container { position: relative; z-index: 1; }
.doodle { z-index: 0; }

/* twinkling stars/sparkles */
.doodle-twinkle { animation: doodle-twinkle 3s ease-in-out infinite; }
@keyframes doodle-twinkle {
  0%, 100% { opacity: 0.25; scale: 0.8; }
  50% { opacity: 0.85; scale: 1.1; }
}

/* slowly rotating sparkle/cup */
.doodle-spin-slow { animation: doodle-spin 18s linear infinite; }
@keyframes doodle-spin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

/* section script-label gentle wiggle */
.sec-eyebrow { display: inline-block; animation: eyebrow-wiggle 5s ease-in-out infinite; transform-origin: left center; }
@keyframes eyebrow-wiggle {
  0%, 100% { rotate: -2deg; }
  50% { rotate: 1.5deg; }
}

/* bestseller card: photo tilts a bit more on hover */
.bestseller-card:hover .bs-photo { animation-play-state: paused; transform: translateY(-8px) rotate(4deg) scale(1.1); transition: transform .25s ease; }

/* primary CTA: soft attention glow */
.hero-ctas .btn-primary { position: relative; }
.hero-ctas .btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(249,168,37,.55);
  animation: cta-glow 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes cta-glow {
  0% { box-shadow: 0 0 0 0 rgba(249,168,37,.5); }
  70% { box-shadow: 0 0 0 14px rgba(249,168,37,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,168,37,0); }
}
