/* ============================================================
   Hapopina — virtual restaurant collective
   Palette: lime #A3D529 · mint #EDF4EE · forest #1B2702
            grey #E5E7E2 · white #FFFFFF
   Display: Fraunces (serif)  ·  Body: Inter
   ============================================================ */

:root {
  --lime: #a3d529;
  --lime-deep: #7fae17;
  --mint: #edf4ee;
  --forest: #1b2702;
  --forest-soft: #2e3f17;
  --grey: #e5e7e2;
  --white: #ffffff;
  --ink: #1b2702;
  --muted: #5d6b50;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --radius: 28px;
  --radius-lg: 40px;
  --shadow-sm: 0 6px 24px rgba(27, 39, 2, 0.07);
  --shadow-md: 0 24px 60px rgba(27, 39, 2, 0.12);
  --shadow-lg: 0 40px 90px rgba(27, 39, 2, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(120% 60% at 80% -10%, rgba(163, 213, 41, 0.18), transparent 60%),
    linear-gradient(180deg, var(--grey), var(--mint) 40%, var(--grey));
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Shared ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--lime); }

.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 28px; }

.section__head { max-width: 720px; margin-bottom: 54px; }
.section__head--row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; max-width: var(--maxw);
}
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.section__title em { font-style: italic; font-weight: 400; color: var(--lime-deep); }
.section__lead { margin-top: 20px; font-size: 1.08rem; color: var(--muted); max-width: 560px; }
.section__lead--side { margin-top: 0; max-width: 320px; text-align: right; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 15px 30px; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: 1.5px solid transparent; white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-3px); }
.btn--dark { background: var(--forest); color: var(--white); box-shadow: 0 12px 30px rgba(27, 39, 2, 0.28); }
.btn--dark:hover { box-shadow: 0 18px 40px rgba(27, 39, 2, 0.36); }
.btn--light { background: var(--white); color: var(--forest); border-color: var(--grey); box-shadow: var(--shadow-sm); }
.btn--lime { background: var(--lime); color: var(--forest); box-shadow: 0 14px 34px rgba(163, 213, 41, 0.5); }
.btn--lime:hover { background: #b2e23a; }
.btn--ghost { background: var(--forest); color: var(--white); padding: 12px 26px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--forest); color: var(--mint);
  text-align: center; font-size: 0.85rem; padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.topbar strong { color: var(--lime); }
.topbar code {
  font-family: var(--sans); background: rgba(163, 213, 41, 0.16);
  color: var(--lime); padding: 1px 8px; border-radius: 6px; font-weight: 600;
}
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(163,213,41,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(163,213,41,0); } 100% { box-shadow: 0 0 0 0 rgba(163,213,41,0); } }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; padding: 14px 20px; transition: padding 0.3s; }
.nav.is-stuck { padding: 8px 20px; }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px; padding: 12px 14px 12px 26px;
  box-shadow: var(--shadow-sm);
}
.nav__logo img { height: 26px; width: auto; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 0.94rem; font-weight: 500; color: var(--forest-soft); position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--lime); transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 6px;
  max-width: var(--maxw); margin: 10px auto 0;
  background: rgba(255,255,255,.95); border-radius: 24px; padding: 16px;
  box-shadow: var(--shadow-md);
}
.nav__mobile a { padding: 12px 16px; border-radius: 14px; font-weight: 500; }
.nav__mobile a:hover { background: var(--mint); }
.nav__mobile.is-open { display: flex; }
.nav__mobile .btn { margin-top: 6px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; max-width: var(--maxw); margin: 18px auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(170deg, #f3f9ec 0%, #e7f3d4 38%, var(--lime) 140%);
  box-shadow: var(--shadow-md);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 92% 80%, rgba(163, 213, 41, 0.55), transparent 60%),
    radial-gradient(50% 60% at 10% 0%, rgba(255, 255, 255, 0.7), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 20px; align-items: center; padding: 70px 56px 30px;
}
.hero__copy { max-width: 560px; }
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.8rem, 6.4vw, 5.2rem); line-height: 0.98; letter-spacing: -0.025em;
  color: var(--forest);
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__sub { margin: 26px 0 32px; font-size: 1.12rem; color: var(--forest-soft); max-width: 480px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 16px; margin-top: 38px; }
.avatars { display: flex; }
.avatars span {
  width: 42px; height: 42px; border-radius: 50%; margin-left: -12px;
  border: 3px solid #f3f9ec;
  background-size: cover; background-position: center;
}
.avatars span:first-child { margin-left: 0; }
.avatars span { background-image: var(--av); }
.avatars span[style*="--i:0"] { background-image: url("https://i.pravatar.cc/120?img=12"); }
.avatars span[style*="--i:1"] { background-image: url("https://i.pravatar.cc/120?img=32"); }
.avatars span[style*="--i:2"] { background-image: url("https://i.pravatar.cc/120?img=49"); }
.hero__trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero__trust-text strong { color: var(--forest); font-size: 1rem; }
.hero__trust-text span { font-size: 0.88rem; color: var(--muted); }

/* hero visual */
.hero__visual { position: relative; min-height: 440px; display: flex; align-items: center; justify-content: center; }
.hero__plate { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero__plate-orb {
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #d6ec9c 55%, var(--lime));
  box-shadow: inset 0 -20px 50px rgba(27,39,2,.12), var(--shadow-lg);
}
.hero__plate-card {
  position: absolute; bottom: 18px; right: -6px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 22px; padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; text-align: left; max-width: 190px;
}
.hero__plate-eyebrow { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lime-deep); font-weight: 600; }
.hero__plate-num { font-family: var(--serif); font-size: 2.8rem; line-height: 1; color: var(--forest); }
.hero__plate-label { font-size: .82rem; color: var(--muted); }
.float-chip {
  position: absolute; width: 74px; height: 74px; border-radius: 22px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  box-shadow: var(--shadow-md); will-change: transform;
}
.float-chip--1 { top: 6%; left: 8%; }
.float-chip--2 { top: 0%; right: 22%; }
.float-chip--3 { top: 40%; left: -2%; }
.float-chip--4 { bottom: 18%; right: 4%; }
.float-chip--5 { bottom: 4%; left: 24%; }

/* hero marquee */
.hero__marquee { position: relative; overflow: hidden; border-top: 1px solid rgba(27,39,2,.1); margin-top: 26px; padding: 16px 0; }
.marquee__track { display: flex; gap: 30px; align-items: center; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--forest); white-space: nowrap; }
.marquee__track i { color: var(--lime-deep); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- SHOWCASE (floating burger) ---------- */
.showcase {
  position: relative; margin: 96px auto; max-width: var(--maxw);
  padding: 70px 28px 80px; overflow: hidden; border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 70% at 50% 30%, rgba(255, 255, 255, 0.85), transparent 70%),
    linear-gradient(165deg, #f3f9ec 0%, #e7f3d4 55%, #d6ec9c 130%);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.showcase__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.showcase__title {
  font-family: var(--serif); font-weight: 600; color: var(--forest);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em;
}
.showcase__title em { font-style: italic; font-weight: 400; color: var(--lime-deep); }
.showcase__sub { color: var(--forest-soft); margin: 18px auto 0; font-size: 1.06rem; max-width: 520px; }
.showcase__sub strong { color: var(--lime-deep); }

.showcase__stage {
  position: relative; display: flex; align-items: center; justify-content: center;
  margin: 14px auto 30px; height: 360px;
}
.showcase__halo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 213, 41, 0.55), rgba(163, 213, 41, 0) 65%);
  filter: blur(6px);
}
.showcase__shadow {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 240px; height: 36px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(27, 39, 2, 0.28), transparent);
  filter: blur(4px); animation: shadowPulse 5s ease-in-out infinite;
}
.showcase__float {
  position: relative; z-index: 1; width: clamp(260px, 38vw, 360px);
  border-radius: 28px; overflow: hidden; background: #fadd85;
  box-shadow: 0 40px 70px rgba(27, 39, 2, 0.32);
  animation: floaty 5s ease-in-out infinite; will-change: transform;
}
.showcase__float img { width: 100%; height: auto; display: block; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .8; }
  50% { transform: translateX(-50%) scale(.86); opacity: .55; }
}

/* ---------- BRANDS ---------- */
.brands .section__head { margin-left: auto; margin-right: auto; text-align: center; }
.brands .section__lead { margin-left: auto; margin-right: auto; }
.brand-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 980px; margin: 0 auto;
}
.brand-card {
  position: relative; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(27,39,2,.05);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.brand-card__banner {
  aspect-ratio: 16 / 9; overflow: hidden; background: var(--forest);
}
.brand-card__banner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.brand-card:hover .brand-card__banner img { transform: scale(1.05); }
.brand-card__body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.brand-card__tag {
  align-self: flex-start; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--lime-deep);
  background: var(--mint); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.brand-card h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.brand-card p { font-size: .98rem; color: var(--muted); flex: 1; }
.brand-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(27,39,2,.08);
}
.brand-card__hours { font-size: .86rem; font-weight: 500; color: var(--forest-soft); }
.brand-card__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--forest); white-space: nowrap; }
.brand-card__cta span { transition: transform .3s; }
.brand-card:hover .brand-card__cta span { transform: translateX(5px); }

/* ---------- MENU / MEALS ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter {
  font-family: var(--sans); font-size: .9rem; font-weight: 500;
  padding: 10px 20px; border-radius: 999px; cursor: pointer;
  background: var(--white); color: var(--forest-soft);
  border: 1px solid rgba(27,39,2,.1); transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--lime); }
.filter.is-active { background: var(--forest); color: var(--white); border-color: var(--forest); }

.meal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.meal-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(27,39,2,.05);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.meal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.meal-media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--mc1, #dff0b8), var(--mc2, #a3d529));
}
.meal-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.3s;
}
.meal-card:hover .meal-media img { transform: scale(1.07); }
.meal-media img.is-missing { opacity: 0; }
.meal-media__ph {
  position: relative; z-index: 1; text-align: center; color: var(--forest);
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px;
}
.meal-media__ph .ico { font-size: 2.6rem; filter: drop-shadow(0 6px 12px rgba(27,39,2,.18)); }
.meal-media__ph small { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .65; font-weight: 600; }
.meal-media img:not(.is-missing) + .meal-media__ph { display: none; }
.meal-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  font-size: .74rem; font-weight: 600; color: var(--forest);
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.meal-price {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: var(--forest); color: var(--white); font-weight: 700;
  font-size: .95rem; padding: 7px 14px; border-radius: 999px;
}
.meal-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.meal-body h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--forest); }
.meal-body p { font-size: .92rem; color: var(--muted); margin: 8px 0 16px; flex: 1; }
.meal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.meal-tags span { font-size: .74rem; color: var(--lime-deep); background: var(--mint); padding: 4px 10px; border-radius: 999px; font-weight: 500; }
.meal-foot { display: flex; align-items: center; justify-content: space-between; }
.meal-foot .btn { padding: 11px 22px; font-size: .9rem; }
.meal-foot .rating { font-size: .86rem; color: var(--muted); font-weight: 500; }
.meal-foot .rating b { color: var(--forest); }

/* ---------- HOW IT WORKS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 38px 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(27,39,2,.05);
  overflow: hidden;
}
.step::after { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; border-radius: 50%; background: rgba(163,213,41,.14); }
.step__num { font-family: var(--serif); font-size: 2.6rem; color: var(--lime); display: block; margin-bottom: 14px; }
.step h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; position: relative; }

/* ---------- STORY ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.story__media { position: relative; min-height: 440px; }
.story__blob {
  position: absolute; inset: 0; border-radius: 44% 56% 60% 40% / 48% 42% 58% 52%;
  background: linear-gradient(150deg, var(--lime), #d6ec9c);
  box-shadow: var(--shadow-lg); animation: morph 12s ease-in-out infinite;
}
@keyframes morph {
  50% { border-radius: 56% 44% 40% 60% / 58% 52% 48% 42%; }
}
.story__leaf { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 6rem; filter: drop-shadow(0 14px 24px rgba(27,39,2,.25)); }
.story__stat {
  position: absolute; background: var(--white); border-radius: 20px;
  padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; line-height: 1.1;
}
.story__stat strong { font-family: var(--serif); font-size: 1.8rem; color: var(--forest); }
.story__stat strong i { font-size: 1rem; font-style: normal; color: var(--muted); }
.story__stat span { font-size: .8rem; color: var(--muted); }
.story__stat--a { top: 20px; left: -14px; }
.story__stat--b { bottom: 30px; right: -10px; }
.story__copy p { color: var(--muted); font-size: 1.05rem; margin: 20px 0; max-width: 520px; }
.ticks { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.ticks li { position: relative; padding-left: 34px; color: var(--forest-soft); font-weight: 500; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px;
  background: var(--lime); color: var(--forest); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}

/* ---------- REVIEWS ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--white); border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(27,39,2,.05);
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
}
.review--lime { background: linear-gradient(160deg, #eef8d4, var(--lime)); }
.review--mint { background: var(--mint); }
.review blockquote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.4; color: var(--forest); }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review__av { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; }
.review__av[style*="--i:4"] { background-image: url("https://i.pravatar.cc/120?img=5"); }
.review__av[style*="--i:5"] { background-image: url("https://i.pravatar.cc/120?img=15"); }
.review__av[style*="--i:6"] { background-image: url("https://i.pravatar.cc/120?img=23"); }
.review figcaption span { display: flex; flex-direction: column; line-height: 1.3; }
.review figcaption strong { color: var(--forest); }
.review figcaption i { font-style: normal; font-size: .82rem; color: var(--muted); }

/* ---------- CTA BAND ---------- */
.cta-band { max-width: var(--maxw); margin: 30px auto 90px; padding: 0 28px; }
.cta-band__inner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--forest), #38500f);
  padding: 80px 60px; text-align: center; color: var(--white);
}
.cta-band__inner::before {
  content: ""; position: absolute; right: -10%; bottom: -60%; width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(163,213,41,.4), transparent 60%);
}
.cta-band__inner h2 { position: relative; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.02; font-weight: 600; }
.cta-band__inner h2 em { font-style: italic; font-weight: 400; color: var(--lime); }
.cta-band__inner p { position: relative; margin: 18px auto 30px; max-width: 520px; color: rgba(255,255,255,.8); font-size: 1.1rem; }
.cta-band__actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band__meta { position: relative; display: block; margin-top: 22px; font-size: .9rem; color: rgba(255,255,255,.6); }

/* ---------- FOOTER ---------- */
.footer { background: var(--forest); color: rgba(255,255,255,.78); padding: 70px 28px 30px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px; }
.footer__logo { height: 30px; margin-bottom: 20px; }
.footer__brand p { max-width: 360px; font-size: .95rem; }
.footer__social { display: flex; gap: 18px; margin-top: 22px; }
.footer__social a { font-size: .9rem; font-weight: 500; color: var(--lime); }
.footer__social a:hover { color: var(--white); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__col h4 { color: var(--white); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { display: block; font-size: .94rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--lime); }
.footer__bar {
  max-width: var(--maxw); margin: 50px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .85rem;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--lime); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; padding: 56px 36px 20px; }
  .hero__visual { min-height: 360px; order: -1; }
  .hero__plate-orb { width: 230px; height: 230px; }
  .brand-grid, .meal-grid, .steps, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .section__lead--side { text-align: left; }
}
@media (max-width: 760px) {
  .nav__links, .nav__order { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 70px 22px; }
  .hero { margin: 12px 12px 0; }
  .hero__grid { padding: 40px 26px 16px; }
  .brand-grid, .meal-grid, .steps, .review-grid { grid-template-columns: 1fr; }
  .showcase { margin: 60px 12px; padding: 50px 20px 56px; border-radius: var(--radius); }
  .showcase__stage { height: 300px; }
  .showcase__halo { width: 300px; height: 300px; }
  .cta-band__inner { padding: 56px 28px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
