/* ============================================================
   Bagel Dash — styles
   ============================================================ */
:root {
  --cream: #f7f0de;
  --cream-soft: #fbf6ea;
  --cream-deep: #f1e7cc;
  --paper: #ffffff;

  --green: #1f4a37;
  --green-deep: #163528;
  --green-700: #265a44;
  --green-soft: #2f6a50;

  --gold: #c8902f;
  --gold-soft: #d9a847;
  --gold-deep: #a06e1c;

  --ink: #20302a;
  --muted: #5d6b62;

  --wa: #25d366;
  --wa-deep: #1ebe5a;

  --shadow-sm: 0 2px 8px rgba(22, 53, 40, .07);
  --shadow-md: 0 14px 36px rgba(22, 53, 40, .12);
  --shadow-lg: 0 30px 70px rgba(22, 53, 40, .18);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { margin: 0; line-height: 1.08; color: var(--green); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 800px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--green); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-order {
  background: linear-gradient(180deg, var(--wa), var(--wa-deep));
  color: #fff; box-shadow: 0 10px 22px rgba(30, 190, 90, .35);
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(30, 190, 90, .45); }

.btn-ghost {
  background: transparent; color: var(--green);
  box-shadow: inset 0 0 0 2px rgba(31, 74, 55, .25);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--green); transform: translateY(-2px); }

.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-xl { padding: 19px 38px; font-size: 1.18rem; }
.wa-ico { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 240, 222, .82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: rgba(31, 74, 55, .12); box-shadow: 0 6px 24px rgba(22, 53, 40, .07); }
.header-inner { display: flex; align-items: center; gap: 18px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; }
.brand-mark img { display: block; height: 48px; width: auto; }
.brand-mark-badge {
  background: var(--cream); border-radius: 14px; padding: 5px 9px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.brand-mark-badge img { height: 42px; }
.brand-word {
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.55rem;
  font-style: italic; color: var(--green); letter-spacing: -.01em; line-height: 1;
}
.brand-word-dash { color: var(--gold); margin-left: 3px; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--green); }
.nav a:hover::after { width: 100%; }

.header-cta { margin-left: 4px; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--green); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 22px; }
.mobile-nav a { padding: 13px 6px; font-weight: 600; border-bottom: 1px solid rgba(31, 74, 55, .08); }
.mobile-nav .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 72px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 12%, rgba(216, 168, 71, .22), transparent 70%),
    radial-gradient(55% 60% at 8% 90%, rgba(47, 106, 80, .12), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); background: rgba(47, 106, 80, .1);
  padding: 8px 15px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,144,47,.2); }

.hero-title {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.1rem, 8vw, 5.7rem); line-height: .92; letter-spacing: .005em;
  margin: 20px 0 18px;
}
.hero-title span { display: block; }
.line-green { color: var(--green); }
.line-gold { color: var(--gold); }

.hero-sub { font-size: 1.18rem; color: var(--muted); max-width: 30ch; }

.price-badge {
  display: inline-flex; align-items: center; gap: 14px; margin: 26px 0 4px;
  background: var(--green); color: var(--cream-soft);
  padding: 14px 22px 14px 18px; border-radius: 18px; box-shadow: var(--shadow-md);
  position: relative;
}
.price-badge::after {
  content: ""; position: absolute; right: -6px; top: -6px; width: 14px; height: 14px;
  background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px var(--cream);
}
.price { font-family: "Anton", sans-serif; font-size: 3rem; line-height: .8; display: inline-flex; align-items: flex-start; }
.price .cur { font-size: 1.5rem; color: var(--gold-soft); margin-right: 2px; }
.price-label { display: flex; flex-direction: column; line-height: 1.1; }
.price-label strong { font-size: 1.2rem; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .04em; }
.price-label span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; opacity: .82; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 18px; }

.free-deliv {
  display: inline-flex; align-items: center; gap: 11px; color: var(--green);
  font-size: .98rem; padding: 11px 18px; border-radius: 14px;
  box-shadow: inset 0 0 0 1.5px rgba(31, 74, 55, .2); background: rgba(255,255,255,.4);
}
.free-deliv svg { color: var(--gold-deep); flex: none; }

/* hero visual */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-card {
  position: relative; width: min(500px, 100%);
  background: transparent;
  display: grid; place-items: center;
}
.hero-card::before {
  content: ""; position: absolute; inset: 6% 4% 10%;
  background: radial-gradient(closest-side at 55% 45%, rgba(232,184,74,.20), transparent 75%);
  z-index: -1; filter: blur(10px);
}
.hero-photo { width: 100%; display: block; filter: drop-shadow(0 18px 26px rgba(120, 86, 30, .22)); }

.steam { position: absolute; top: 6%; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 2; }
.steam span {
  width: 7px; height: 42px; border-radius: 999px;
  background: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,.85));
  animation: steam 3s var(--ease) infinite; opacity: 0;
}
.steam span:nth-child(2) { animation-delay: .6s; height: 54px; }
.steam span:nth-child(3) { animation-delay: 1.2s; }
@keyframes steam {
  0% { opacity: 0; transform: translateY(8px) scaleY(.6); }
  30% { opacity: .8; }
  100% { opacity: 0; transform: translateY(-34px) scaleY(1.2); }
}

.float-chip {
  position: absolute; background: var(--paper); color: var(--green); font-weight: 700; font-size: .9rem;
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap;
  animation: floaty 5s ease-in-out infinite;
}
.chip-1 { top: 8%; left: -2%; }
.chip-2 { bottom: 10%; right: -4%; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Trust strip ---------- */
.trust { background: var(--green); color: var(--cream-soft); }
.trust-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 26px 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: center; }
.trust-item svg { color: var(--gold-soft); flex: none; }
.trust-item strong { display: block; font-size: 1.05rem; }
.trust-item span { font-size: .86rem; opacity: .75; }
.trust-div { width: 1px; height: 40px; background: rgba(255,255,255,.18); flex: none; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-cream { background: var(--cream-deep); }
.section-green { background: var(--green); }

.section-head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.kicker {
  display: inline-block; font-weight: 800; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.section-head h2 {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.3rem); letter-spacing: .01em; line-height: .98;
}
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.1rem; }
.section-head.light h2 { color: var(--cream-soft); }
.section-head.light .kicker { color: var(--gold-soft); }
.section-head.light p { color: rgba(251, 246, 234, .82); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  position: relative; background: var(--paper); border-radius: var(--radius-lg); padding: 38px 28px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(31, 74, 55, .06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: 22px; right: 26px; font-family: "Anton", sans-serif;
  font-size: 2.6rem; color: rgba(200, 144, 47, .22); line-height: 1;
}
.step-ico {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: rgba(47, 106, 80, .1); color: var(--green); margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- Menu ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bagel-card {
  position: relative; background: var(--paper); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(31, 74, 55, .06); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bagel-card::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(216,168,71,.16), transparent 70%); border-radius: 50%;
}
.bagel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bagel-emoji { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.bagel-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.bagel-card p { color: var(--muted); font-size: .96rem; min-height: 3em; }
.bagel-price {
  display: inline-block; margin-top: 14px; font-family: "Anton", sans-serif; font-size: 1.5rem;
  color: var(--gold-deep);
}

.menu-cta {
  margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--green), var(--green-soft));
  color: var(--cream-soft); border-radius: var(--radius-lg); padding: 34px 40px; box-shadow: var(--shadow-md);
}
.dozen { position: relative; }
.dozen-badge {
  display: inline-block; background: var(--gold); color: var(--green-deep); font-weight: 800; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.dozen h3 { color: var(--cream-soft); font-size: 1.7rem; }
.dozen p { color: rgba(251,246,234,.85); margin-top: 6px; max-width: 46ch; }
.dozen-price { display: block; margin-top: 14px; font-family: "Anton", sans-serif; font-size: 2.2rem; color: var(--gold-soft); }
.dozen-price small { font-family: "Plus Jakarta Sans", sans-serif; font-size: .9rem; color: rgba(251,246,234,.8); font-weight: 600; }

/* ---------- Spreads & dips ---------- */
.dips-head { max-width: 640px; margin: 56px auto 26px; text-align: center; }
.dips-head h3 {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); letter-spacing: .01em; line-height: 1;
}
.dips-head p { margin-top: 12px; color: var(--muted); font-size: 1.02rem; }
.dips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dip-card p { min-height: 3.6em; }
.dip-prices { display: flex; gap: 10px; margin-top: 16px; }
.dip-price {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--cream); border: 1px solid rgba(31, 74, 55, .08);
  border-radius: 12px; padding: 9px 6px;
}
.dip-price strong { font-family: "Anton", sans-serif; font-weight: 400; font-size: 1.4rem; color: var(--gold-deep); line-height: 1; }
.dip-price small { font-size: .72rem; color: var(--muted); font-weight: 700; letter-spacing: .03em; }
.dips-note { text-align: center; margin-top: 22px; color: var(--muted); font-size: .96rem; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--paper); border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(31, 74, 55, .08);
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan h3 { font-size: 1.4rem; }
.plan-tag { color: var(--muted); margin-top: 4px; font-size: .96rem; }
.plan-price { font-family: "Anton", sans-serif; font-size: 2.8rem; color: var(--green); margin: 18px 0 6px; }
.plan-price .cur { font-size: 1.4rem; color: var(--gold); }
.plan-price small { font-family: "Plus Jakarta Sans"; font-size: .95rem; color: var(--muted); font-weight: 600; }
.plan ul { list-style: none; padding: 0; margin: 16px 0 26px; display: grid; gap: 11px; }
.plan li { position: relative; padding-left: 28px; color: var(--ink); font-size: .98rem; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%;
  background: rgba(47,106,80,.14);
}
.plan li::after {
  content: ""; position: absolute; left: 5px; top: 8px; width: 6px; height: 3.5px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }

.plan-feature {
  background: linear-gradient(180deg, #fffdf7, #fdf6e6);
  border: 2px solid var(--gold); box-shadow: var(--shadow-md); position: relative;
}
.plan-feature .plan-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-deep); font-weight: 800; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 28px 24px; color: var(--cream-soft); transition: transform .3s var(--ease), background .3s;
}
.why-item:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.why-ico { font-size: 2rem; display: block; margin-bottom: 14px; }
.why-item h3 { color: var(--cream-soft); font-size: 1.2rem; margin-bottom: 7px; }
.why-item p { color: rgba(251,246,234,.78); font-size: .96rem; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--paper); border-radius: var(--radius-lg); padding: 30px 28px; margin: 0;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(31, 74, 55, .06);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 12px; }
.review blockquote { margin: 0 0 18px; font-size: 1.08rem; color: var(--ink); line-height: 1.55; }
.review figcaption { display: flex; align-items: center; gap: 11px; font-weight: 700; color: var(--green); }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: var(--gold-soft); font-weight: 800;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq details {
  background: var(--paper); border-radius: 16px; padding: 4px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(31, 74, 55, .07);
  transition: box-shadow .25s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; font-weight: 700; color: var(--green); font-size: 1.08rem;
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.chev { width: 12px; height: 12px; border-right: 2.5px solid var(--gold-deep); border-bottom: 2.5px solid var(--gold-deep); transform: rotate(45deg); transition: transform .3s var(--ease); flex: none; }
.faq details[open] .chev { transform: rotate(-135deg); }
.faq p { color: var(--muted); padding: 0 0 20px; max-width: 64ch; }

/* ---------- Order band ---------- */
.order-band {
  position: relative; background: linear-gradient(135deg, var(--green-deep), var(--green-soft));
  color: var(--cream-soft); text-align: center; padding: 86px 0; overflow: hidden;
}
.order-band::before, .order-band::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0;
}
.order-band::before { width: 320px; height: 320px; background: radial-gradient(circle, rgba(216,168,71,.25), transparent 70%); top: -120px; right: -60px; }
.order-band::after { width: 280px; height: 280px; background: radial-gradient(circle, rgba(216,168,71,.18), transparent 70%); bottom: -120px; left: -40px; }
.order-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.steam-band { position: static; transform: none; margin: 0 auto 18px; justify-content: center; }
.steam-band span { background: linear-gradient(to top, rgba(216,168,71,0), rgba(216,168,71,.8)); }
.order-band h2 {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem); color: var(--cream-soft); line-height: 1;
}
.order-band p { margin: 16px auto 30px; font-size: 1.15rem; color: rgba(251,246,234,.88); max-width: 44ch; }
.order-note { display: block; margin-top: 18px; font-size: .9rem; color: rgba(251,246,234,.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(251,246,234,.8); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-word { color: var(--cream-soft); }
.footer-brand p { margin: 16px 0 22px; color: rgba(251,246,234,.7); line-height: 1.7; }
.footer-col h4 { color: var(--cream-soft); font-size: 1.05rem; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; padding: 6px 0; color: rgba(251,246,234,.72); transition: color .2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem; color: rgba(251,246,234,.55);
}

/* ---------- FAB ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(180deg, var(--wa), var(--wa-deep)); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(30,190,90,.5); animation: floaty 4s ease-in-out infinite;
}
.fab:hover { transform: scale(1.06); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.steps .reveal:nth-child(2), .menu-grid .reveal:nth-child(2), .plans .reveal:nth-child(2) { transition-delay: .08s; }
.steps .reveal:nth-child(3), .menu-grid .reveal:nth-child(3), .plans .reveal:nth-child(3) { transition-delay: .16s; }
.menu-grid .reveal:nth-child(4) { transition-delay: .06s; }
.menu-grid .reveal:nth-child(5) { transition-delay: .12s; }
.menu-grid .reveal:nth-child(6) { transition-delay: .18s; }
.why-grid .reveal:nth-child(2) { transition-delay: .07s; }
.why-grid .reveal:nth-child(3) { transition-delay: .14s; }
.why-grid .reveal:nth-child(4) { transition-delay: .21s; }
.reviews .reveal:nth-child(2) { transition-delay: .08s; }
.reviews .reveal:nth-child(3) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .steam span, .float-chip, .fab { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 12px; }
  .mobile-nav.open { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; }
  .hero-card { width: min(360px, 80%); }
  .hero-sub { max-width: none; }
  .steps, .menu-grid, .plans, .reviews, .dips-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plan-feature { transform: none; }
  .fab { display: flex; }
}

@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero { padding: 36px 0 52px; }
  .trust-inner { flex-wrap: wrap; gap: 18px 8px; }
  .trust-div { display: none; }
  .trust-item { flex: 1 1 40%; justify-content: flex-start; }
  .steps, .menu-grid, .plans, .reviews, .why-grid, .footer-grid, .dips-grid { grid-template-columns: 1fr; }
  .menu-cta { padding: 26px 24px; text-align: center; flex-direction: column; }
  .dozen p { margin-inline: auto; }
  .hero-actions .btn { flex: 1 1 100%; }
  .float-chip { font-size: .8rem; padding: 8px 12px; }
  .chip-1 { left: 0; } .chip-2 { right: 0; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- For business (offices / schools / conferences) ---------- */
.corp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.corp-card {
  position: relative; background: var(--paper); border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(31, 74, 55, .08);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.corp-card::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(216,168,71,.16), transparent 70%); border-radius: 50%;
}
.corp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.corp-ico {
  position: relative; width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: rgba(47, 106, 80, .1); font-size: 1.9rem; margin-bottom: 18px;
}
.corp-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.corp-card > p { color: var(--muted); font-size: .98rem; }
.corp-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.corp-list li { position: relative; padding-left: 28px; color: var(--ink); font-size: .96rem; }
.corp-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%;
  background: rgba(47,106,80,.14);
}
.corp-list li::after {
  content: ""; position: absolute; left: 5px; top: 8px; width: 6px; height: 3.5px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg);
}
.corp-quote {
  margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--green); transition: gap .2s var(--ease), color .2s;
}
.corp-quote:hover { color: var(--gold-deep); gap: 11px; }
.corp-card-feature {
  background: linear-gradient(180deg, #fffdf7, #fdf6e6);
  border: 2px solid var(--gold); box-shadow: var(--shadow-md);
}
.corp-card-feature .corp-ico { background: rgba(200,144,47,.16); }
.corp-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-deep); font-weight: 800; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.corp-cta {
  margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--green), var(--green-soft));
  color: var(--cream-soft); border-radius: var(--radius-lg); padding: 38px 44px; box-shadow: var(--shadow-md);
}
.corp-cta-copy { flex: 1 1 460px; }
.corp-cta-copy h3 { color: var(--cream-soft); font-size: 1.7rem; margin-top: 12px; max-width: 22ch; }
.corp-cta-copy > p { color: rgba(251,246,234,.85); margin-top: 8px; max-width: 50ch; }
.corp-tiers { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 16px; }
.corp-tier {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 14px;
  padding: 12px 18px; min-width: 116px;
}
.corp-tier-price { display: block; font-family: "Anton", sans-serif; font-size: 1.7rem; color: var(--gold-soft); line-height: 1; }
.corp-tier-label { display: block; margin-top: 6px; font-size: .82rem; color: rgba(251,246,234,.82); }
.corp-fineprint { color: rgba(251,246,234,.72); font-size: .9rem; max-width: 54ch; }
.corp-cta-action { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.corp-action-note { font-size: .86rem; color: rgba(251,246,234,.72); max-width: 22ch; }

@media (max-width: 940px) {
  .corp-grid { grid-template-columns: 1fr 1fr; }
  .corp-card-feature { transform: none; }
}
@media (max-width: 620px) {
  .corp-grid { grid-template-columns: 1fr; }
  .corp-cta { padding: 28px 24px; text-align: center; flex-direction: column; }
  .corp-cta-copy h3, .corp-cta-copy > p, .corp-fineprint { max-width: none; margin-inline: auto; }
  .corp-tiers { justify-content: center; }
  .corp-cta-action { align-items: stretch; width: 100%; }
  .corp-cta-action .btn { width: 100%; }
  .corp-action-note { max-width: none; text-align: center; }
}
