/* =====================================================================
   Momo Bitez — Franchise Landing Page
   Stylesheet structure:
     1. Theme tokens (:root)        — change brand colours/fonts here
     2. Base / reset
     3. Reusable utilities          — .container, .eyebrow, .heading, .btn …
     4. Layout sections             — nav, hero, menu, why, models, roi …
     5. Scroll-reveal animations
     6. Responsive overrides
   ===================================================================== */

/* ============================ 1. THEME TOKENS ======================== */
:root {
  /* Brand colours */
  --brand:        #F04E23;   /* primary orange  */
  --brand-dark:   #CF3D27;   /* deeper orange   */
  --brand-shadow: #C03A18;   /* orange btn shadow */
  --accent:       #FFC23B;   /* yellow accent   */
  --accent-shadow:#C98A12;   /* yellow btn shadow */
  --ink:          #1E1712;   /* near-black text/bg */
  --ink-soft:     #2C211A;   /* dark surface    */

  /* Neutrals & surfaces */
  --cream:        #FFF3EA;   /* main light surface */
  --cream-light:  #FFF7F0;   /* lightest cream  */
  --halo:         #FBE9DD;   /* plate halo      */
  --chip-bg:      #FFE7DA;   /* light chip bg   */

  /* Text colours */
  --text-muted:   #5A4A40;
  --text-muted-2: #6A5849;
  --text-faint:   #9A8576;
  --on-brand:     #FFE5D6;   /* body text on orange */
  --on-brand-2:   #FFE0CF;
  --on-brand-3:   #FFD9C6;
  --on-dark:      #E9DCCF;   /* body text on ink */
  --on-dark-faint:#A89A8C;

  /* Borders */
  --border-cream: #F3DDCF;
  --border-soft:  #F0DCCF;
  --border-field: #E7D2C4;

  /* Typography */
  --font-display: 'Anton', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card:  0 10px 30px rgba(176,51,28,.10);
  --shadow-soft:  0 10px 26px rgba(176,51,28,.08);
  --shadow-deep:  0 22px 50px rgba(0,0,0,.20);

  /* Section rhythm */
  --section-pad-y: clamp(72px, 9vw, 128px);
  --section-pad-x: clamp(18px, 5vw, 64px);
  --container-max: 1180px;
}

/* ============================ 2. BASE / RESET ======================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--brand);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* ============================ 3. UTILITIES ========================== */

/* Page section wrapper */
.section { padding: var(--section-pad-y) var(--section-pad-x); }
.section--cream  { background: var(--cream); }
.section--brand  { background: var(--brand); }
.section--brand-dark { background: var(--brand-dark); }
.section--overflow { position: relative; overflow: hidden; }

.container { max-width: var(--container-max); margin: 0 auto; }

/* Small mono "kicker" label above headings */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.eyebrow--on-brand { color: var(--on-brand-2); }
.eyebrow--on-dark  { color: var(--accent); }

/* Big Anton display heading */
.heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: .92;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 12px;
}
.heading--on-brand { color: var(--cream-light); }
.heading__accent      { color: var(--brand); }
.heading__accent--yellow { color: var(--accent); }

/* Intro paragraph under a heading */
.lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 18px;
}
.lead--on-brand { color: var(--on-brand); }

/* Centered section intro block */
.section-head { text-align: center; max-width: 740px; margin: 0 auto; }

/* Buttons */
.btn {
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  font-size: 17px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 0 var(--accent-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--accent-shadow); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255,255,255,.6);
  font-size: 17px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, border-color .2s ease;
}
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* Pill CTA (nav) */
.btn--pill {
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 0 var(--accent-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn--pill:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--accent-shadow); }

/* Card lift hover (shared) */
.card-lift {
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .25s ease;
}
.card-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(176,51,28,.22);
  border-color: #F7C9B5;
}

/* ============================ 4. NAVBAR ============================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--section-pad-x);
  background: var(--brand-dark);
  box-shadow: 0 4px 0 rgba(0,0,0,.12);
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo { height: 54px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-weight: 700;
  font-size: 15px;
  color: #FFF3EA;
  text-decoration: none;
  letter-spacing: .2px;
  transition: color .18s ease, transform .18s ease;
}
.nav__link:hover { color: #fff; transform: translateY(-1px); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: #FFF3EA;
  text-decoration: none;
  white-space: nowrap;
}

/* Hamburger button (mobile) */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 11px;
  background: var(--brand);
  cursor: pointer;
}
.nav__toggle-bar { width: 18px; height: 2.5px; background: #fff; border-radius: 2px; }

/* Mobile dropdown */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--brand-dark);
  flex-direction: column;
  padding: 6px 18px 18px;
  gap: 2px;
  box-shadow: 0 14px 22px rgba(0,0,0,.22);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  font-weight: 700;
  font-size: 16px;
  color: #FFF3EA;
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav__mobile-cta {
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  background: var(--accent);
  text-align: center;
  text-decoration: none;
  padding: 13px 4px;
  border-radius: 10px;
  margin-top: 8px;
}
.nav__mobile-phone {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  text-decoration: none;
  padding: 12px 4px;
}

/* ============================ 5. HERO ============================== */
.hero {
  position: relative;
  background: var(--brand);
  padding: clamp(48px, 7vw, 92px) var(--section-pad-x) 0;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 34vw;
  line-height: .8;
  color: #D8401F;
  opacity: .55;
  white-space: nowrap;
  top: 34%;
  left: -4%;
  letter-spacing: -.02em;
}
.hero__inner { position: relative; max-width: var(--container-max); margin: 0 auto; text-align: center; }

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-dark);
  color: #FFE9D8;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  color: var(--cream-light);
  font-size: clamp(58px, 13vw, 128px);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 22px 0 0;
  text-shadow: 0 6px 0 rgba(0,0,0,.10);
}
.hero__title-mark {
  display: inline-block;
  background: var(--accent);
  color: #B5331C;
  padding: 0 .16em;
  transform: rotate(-1.4deg);
  border-radius: 8px;
  margin-top: .06em;
}

/* Tag chips */
.hero__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(15px, 2.3vw, 22px);
}
.tag { padding: 7px 16px; border-radius: 9px; }
.tag--dark  { background: var(--ink); color: var(--accent); }
.tag--light { background: var(--cream-light); color: #B5331C; }

.hero__lead {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: var(--on-brand);
  font-weight: 500;
}
.hero__lead strong { color: #fff; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

/* Stats row */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 64px);
  justify-content: center;
  margin-top: 42px;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  color: #fff;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-brand-3);
  margin-top: 4px;
}
.stat__divider { width: 2px; background: rgba(255,255,255,.22); }

/* Floating plates */
.hero__plates {
  position: relative;
  max-width: 1240px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.plate-float { position: relative; flex: 1; min-width: 0; }
.plate-float--lift-sm { transform: translateY(10px); }
.plate-float--lift-md { transform: translateY(-18px); }
.plate-float--lift-lg { transform: translateY(-40px); }
.plate-float__inner {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  aspect-ratio: 1;
  animation: floaty 5.5s ease-in-out infinite;
}
.plate-float__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.32));
}
.hero__spacer { height: clamp(20px, 4vw, 48px); }

/* ============================ 6. MENU ============================== */
.menu__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.menu__head .heading { margin-top: 12px; }
.menu__head-text {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 500;
}
.menu__subhead { margin-top: clamp(40px, 5vw, 60px); }

/* Signature flavours grid */
.flavours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 18px;
}
.flavour {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 16px 22px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border-cream);
  text-align: center;
}
.flavour__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flavour__halo {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--halo);
}
.flavour__img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.18));
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.flavour:hover .flavour__img { transform: scale(1.09) rotate(-6deg); }
.flavour__name {
  font-family: var(--font-display);
  font-size: 23px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 8px;
}
.flavour__desc { font-size: 14px; line-height: 1.5; color: var(--text-muted-2); margin-top: 6px; }

.menu__note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 14px;
  letter-spacing: .03em;
}
.menu__note--center { text-align: center; margin-top: 24px; letter-spacing: .04em; }

/* Menu detail cards */
.menu__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
}
.menu-card { border-radius: var(--radius-lg); }
.menu-card--classics { background: var(--brand); color: #fff; padding: clamp(24px, 3vw, 34px); }
.menu-card__title-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.menu-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  text-transform: uppercase;
  line-height: 1;
}
.menu-card__title--ink  { color: var(--ink); }
.menu-card__title--white { color: #fff; }
.badge-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
}
.badge-tag--yellow { background: var(--accent); color: var(--ink); }
.badge-tag--peach  { background: var(--chip-bg); color: var(--brand-dark); }
.menu-card__note {
  font-size: 14px;
  color: var(--on-brand-2);
  margin-top: 6px;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

.menu-card__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.menu-col__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.menu-col__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 9px;
  font-size: 14.5px;
  color: #fff;
  font-weight: 500;
}

.menu__cards-stack { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 24px); }
.menu-card--kurkure {
  background: #fff;
  padding: clamp(22px, 3vw, 30px);
  border: 1.5px solid var(--border-cream);
  box-shadow: var(--shadow-soft);
  flex: 1;
}
.menu-card--platters {
  background: var(--ink);
  padding: clamp(22px, 3vw, 30px);
  flex: 1;
}
.menu-card__desc { font-size: 14.5px; line-height: 1.5; margin-top: 8px; }
.menu-card__desc--ink  { color: var(--text-muted-2); }
.menu-card__desc--dark { color: var(--on-dark); }

.chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.chip--outline { color: var(--ink); background: var(--cream); border: 1.5px solid var(--border-soft); }
.chip--dark    { color: var(--accent); background: var(--ink-soft); }

/* ============================ 7. WHY ============================== */
.why__blob {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--brand-dark);
  opacity: .5;
}
.why__inner { position: relative; }

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  margin-top: clamp(34px, 4vw, 48px);
  background: var(--brand-dark);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px) clamp(20px, 4vw, 44px);
}
.why-stat { text-align: center; }
.why-stat__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--accent);
  line-height: 1;
}
.why-stat__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-brand-3);
  margin-top: 6px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 3vw, 40px);
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border-bottom: 5px solid var(--accent);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .2s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
  border-bottom-color: var(--brand);
}
.why-card__num { font-family: var(--font-display); font-size: 22px; color: var(--brand); }
.why-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.05;
}
.why-card__desc { font-size: 14.5px; line-height: 1.5; color: var(--text-muted-2); margin-top: 10px; }

/* ============================ 8. FRANCHISE MODEL ================== */
.model-card {
  max-width: 840px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.model-card__top { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 3vw, 32px); }
.model-ring {
  position: relative;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 100%, #3a2c22 0);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-ring__inner {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.model-ring__value { font-family: var(--font-display); font-size: 30px; color: var(--accent); line-height: 1; }
.model-ring__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .06em;
  color: var(--on-dark-faint);
  text-transform: uppercase;
}
.model-card__head { flex: 1; min-width: 220px; }
.model-card__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.model-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-top: 4px;
}
.model-card__sub { font-size: 16px; color: var(--on-brand); margin-top: 12px; font-weight: 600; }

.model-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 12px;
  margin-top: 24px;
}
.model-point { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #F0E3D8; }
.model-point__check { color: var(--accent); font-weight: 800; }
.model-card__best {
  margin-top: 22px;
  background: var(--ink-soft);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-size: 14.5px;
  color: var(--on-dark);
}
.model-card__best strong { color: var(--accent); }

/* Kiosk cards */
.kiosks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(20px, 2.5vw, 26px);
}
.kiosk {
  border-radius: 20px;
  padding: 28px 26px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease;
}
.kiosk:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,.22); }
.kiosk--brand { background: var(--brand); }
.kiosk--dark  { background: var(--brand-dark); }
.kiosk__name { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.kiosk__desc { font-size: 14px; color: var(--on-brand-2); margin-top: 6px; }
.kiosk__price {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}

/* ============================ 9. ROI CALCULATOR ================== */
.roi-panel {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3.2vw, 42px);
  margin-top: clamp(34px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 288px), 1fr));
  gap: clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow-deep);
}
.roi-controls { min-width: 0; }
.roi-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.roi-sales-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  color: var(--brand);
  line-height: 1;
  margin-top: 6px;
}
.roi-slider { width: 100%; margin-top: 14px; accent-color: var(--brand); height: 6px; cursor: pointer; }
.roi-slider-scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 4px;
}

.roi-invest { margin-top: 24px; }
.roi-invest__buttons { display: flex; gap: 10px; margin-top: 8px; }
.invest-btn {
  flex: 1;
  cursor: pointer;
  border: 2px solid var(--border-field);
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 10px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  text-align: center;
  line-height: 1.1;
}
.invest-btn:hover { border-color: #F7C9B5; }
.invest-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 5px 0 var(--brand-shadow);
  transform: translateY(-1px);
}
.invest-btn__size {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .72;
  text-transform: uppercase;
}
.invest-btn__price { display: block; font-family: var(--font-display); font-size: 21px; margin-top: 3px; }

/* Running-costs box */
.roi-costs {
  margin-top: 20px;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 15px;
}
.roi-costs__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.roi-costs__hint { font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; color: #C4AB99; }
.roi-costs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 84px), 1fr));
  gap: 9px;
  margin-top: 11px;
}
.cost-field { display: flex; flex-direction: column; gap: 4px; }
.cost-field__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.cost-field__input-wrap {
  display: flex;
  align-items: center;
  gap: 1px;
  border: 1.5px solid #ECD9CB;
  border-radius: 9px;
  padding: 7px 8px;
  background: #FFFAF6;
}
.cost-field__prefix { font-family: var(--font-mono); font-size: 13px; color: #C2A78F; }
.cost-field__input {
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  padding: 0;
}
.roi-costs__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px dashed #ECD9CB;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted-2);
}
.roi-costs__total strong { color: var(--brand); font-size: 15px; }

/* Results panel */
.roi-results {
  background: var(--ink);
  border-radius: 20px;
  padding: clamp(22px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.roi-result__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.roi-result__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1;
  margin-top: 4px;
}
.roi-result__value--accent { color: var(--accent); }
.roi-result__value--white  { color: #fff; }
.roi-result__unit { font-size: .5em; color: var(--on-dark-faint); }
.roi-divider { height: 1px; background: #3a2c22; }
.roi-disclaimer {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-brand-2);
  text-align: center;
  margin-top: 18px;
  letter-spacing: .03em;
}

/* ROI projection table */
.roi-table { background: var(--brand-dark); border-radius: var(--radius-lg); margin-top: 24px; overflow: hidden; }
.roi-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px clamp(18px, 2.5vw, 30px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-brand-3);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.roi-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px clamp(18px, 2.5vw, 30px);
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.roi-table__sales { font-weight: 800; color: #fff; font-size: 16px; }
.roi-table__profit { font-family: var(--font-display); color: var(--accent); font-size: 20px; }
.roi-table__foot { padding: 16px clamp(18px, 2.5vw, 30px); font-size: 14px; color: var(--on-brand); }
.roi-table__foot strong { color: #fff; font-family: var(--font-mono); }

/* ============================ 10. SUPPORT ======================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(36px, 5vw, 56px);
}
.support-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  border: 1.5px solid var(--border-cream);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.support-card__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.support-card__head { display: flex; align-items: center; gap: 14px; }
.support-card__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 0 var(--brand-shadow);
}
.support-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}
.support-card__rule { height: 1px; background: var(--border-soft); margin: 18px 0 16px; }
.support-card__items { display: flex; flex-direction: column; gap: 11px; }
.support-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #4D3D32; }
.support-item__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--chip-bg);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.advantages { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: clamp(28px, 3vw, 40px); }
.advantage-chip {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  background: var(--chip-bg);
  border: 1.5px solid #F7C9B5;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
}

/* ============================ 11. LOCATIONS ===================== */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.locations__media { position: relative; }
.locations__halo { position: absolute; inset: 6% 10%; background: var(--brand-dark); border-radius: 50%; }
.locations__img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  animation: floaty 7s ease-in-out infinite;
}
.location-chips { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.location-chip {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  background: var(--accent);
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 0 var(--accent-shadow);
}

/* ============================ 12. TESTIMONIALS ================== */
.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(36px, 5vw, 56px);
}
.story {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1.5px solid var(--border-cream);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.story__quote-mark { font-family: var(--font-display); font-size: 54px; color: var(--accent); line-height: .6; height: 30px; }
.story__quote { font-size: 16.5px; line-height: 1.55; color: #3D2F26; font-weight: 500; flex: 1; }
.story__author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.story__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: #fff;
  font-size: 18px;
}
.story__name { font-weight: 800; font-size: 15px; color: var(--ink); }
.story__role { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); }

/* ============================ 13. ENQUIRE ====================== */
.enquire {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.enquire__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--on-brand);
  font-weight: 500;
  margin-top: 18px;
  max-width: 420px;
}
.enquire__contacts { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.enquire__contact { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.enquire__contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--ink);
}
.enquire__contact-text { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: #fff; }
.enquire__contact-text--sm { font-size: 16px; }

.enquire__card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}

/* Form */
.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 14px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.field {
  border: 2px solid var(--border-field);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease;
}
.field:focus { border-color: var(--brand); }
.field--textarea { resize: vertical; }
.submit-btn {
  margin-top: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--brand-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--brand-shadow); }
.form__fineprint { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); text-align: center; }

/* Thank-you state */
.thankyou { display: none; text-align: center; padding: 30px 10px; }
.thankyou__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 38px;
  color: #fff;
}
.thankyou__title { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; color: var(--ink); margin-top: 18px; }
.thankyou__text { font-size: 16px; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }
.thankyou__reset {
  margin-top: 22px;
  background: none;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-weight: 800;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

/* ============================ 14. FOOTER ====================== */
.footer { background: var(--ink); padding: clamp(56px, 7vw, 90px) var(--section-pad-x) 34px; }
.footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.footer__logo { height: 64px; width: auto; display: block; }
.footer__about { font-size: 15px; line-height: 1.55; color: #B8A99B; margin-top: 18px; max-width: 300px; }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7D6F62;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.footer__link { color: var(--on-dark); text-decoration: none; font-size: 15px; font-weight: 600; }
.footer__link--accent { color: var(--accent); font-weight: 700; }
.footer__bar {
  max-width: var(--container-max);
  margin: 40px auto 0;
  border-top: 1px solid #34281F;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #7D6F62;
}

/* ============================ 15. ANIMATIONS ================== */
@keyframes floaty   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulseDot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.45); opacity: .55; } }
@keyframes revUp    { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes revUpS   { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@supports (animation-timeline: view()) {
  [data-reveal] {
    animation: revUp 1ms linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
  [data-stagger] > * {
    animation: revUpS 1ms linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }
  [data-stagger] > *:nth-child(2) { animation-range: entry 4%  entry 32%; }
  [data-stagger] > *:nth-child(3) { animation-range: entry 8%  entry 36%; }
  [data-stagger] > *:nth-child(4) { animation-range: entry 12% entry 40%; }
  [data-stagger] > *:nth-child(5) { animation-range: entry 16% entry 44%; }
  [data-stagger] > *:nth-child(6) { animation-range: entry 20% entry 48%; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  [style*="animation"] { animation: none !important; }
  .plate-float__inner, .locations__img, .badge__dot { animation: none !important; }
}

/* ============================ 16. RESPONSIVE ================= */
/* Navbar: collapse to hamburger below 1024px */
.nav__mobile { display: none; }
@media (max-width: 1024px) {
  .nav__links,
  .nav__phone,
  .nav__cta { display: none !important; }
  .nav__toggle { display: flex !important; }
}
@media (min-width: 1025px) {
  .nav__mobile { display: none !important; }
}

/* Hero plates: hide outer two on very small screens */
@media (max-width: 600px) {
  .plate-float--edge { display: none !important; }
}

/* Why stats: stack on small screens */
@media (max-width: 560px) {
  .why-stats { grid-template-columns: 1fr; gap: 18px; }
}

/* Stories: stack on small screens */
@media (max-width: 720px) {
  .stories { grid-template-columns: 1fr; }
}

/* Flavours: 4 → 2 columns, then horizontal scroll */
@media (max-width: 980px) {
  .flavours { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .flavours {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .flavours::-webkit-scrollbar { display: none; }
  .flavours > .flavour { flex: 0 0 78%; scroll-snap-align: center; }
}
