@font-face {
  font-family: 'Circular Std Book';
  src: url('../assets/fonts/CircularStd-Book.woff2') format('woff2'),
       url('../assets/fonts/CircularStd-Book.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
:root {
  --color-primary: #2F5115;
  --color-secondary: #F2BF02;
  --color-background: #FFFFFF;
  --color-accent: #1E3A0F;
  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Circular Std Book', 'Segoe UI', Arial, sans-serif;
  --font-script: 'Caveat', cursive;
  /* Brush-marker caps matching the "UNGA MANASA POAAVEY SOFT" line on the pack. */
  --font-pack: 'Kalam', 'Caveat Brush', cursive;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; }
/* Anchor jumps stop below the sticky header instead of under it. */
section[id] { scroll-margin-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--color-accent);
  background: var(--color-background);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 90px;
  background: var(--color-primary);
  overflow: visible;
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 16px;
  position: relative;
}

.call-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  flex-shrink: 0;
}
.call-badge__icon { display: flex; align-items: center; justify-content: center; }
.call-badge__text { display: flex; flex-direction: column; line-height: 1.2; }
.call-badge__label { font-size: 12px; color: #8a8a8a; }
.call-badge__number { font-size: 16px; font-weight: 700; color: var(--color-primary); white-space: nowrap; }

.main-nav {
  display: flex;
  justify-content: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}
.main-nav a:hover { opacity: 0.7; }
.logo-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  /* Header is 90px: 78px + the float lift + the hover scale still fits inside,
     so the logo is never clipped at the top of the viewport. */
  height: 78px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(30, 58, 15, 0.22));
  animation: logoFloat 4.5s ease-in-out infinite;
  transition: transform 0.25s ease, filter 0.25s ease;
  will-change: transform;
}
.logo-link:hover .logo-img {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 10px 16px rgba(30, 58, 15, 0.28));
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.nav-logo-slot {
  position: relative;
  padding: 0 8px;
  align-self: stretch;
  display: flex;
  align-items: center;
}
@media (prefers-reduced-motion: reduce) {
  .logo-img { animation: none; }
}
.logo-fallback::before {
  content: "Goodli";
  font-family: var(--font-script);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: #1E3A0F;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.header-contact-btn svg { transition: transform 0.15s ease; }
.header-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(47, 81, 21, 0.4);
}
.header-contact-btn:hover svg { transform: translateX(3px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-accent);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  width: 100%;
  min-height: min(760px, 100vh);
  background: var(--color-secondary) url('../assets/images/Banner bg.webp') center 60% / cover no-repeat;
  overflow: hidden;
}
.hero-glow,
.hero-blob,
.dot-pattern,
.deco-dot {
  display: none;
}
.hero-steam {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-steam__wisp {
  position: absolute;
  bottom: 28%;
  width: 70px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0) 75%);
  filter: blur(7px);
  opacity: 0;
  animation: heroSteamRise 7s ease-in infinite;
  transform-origin: bottom center;
}
.hero-steam__wisp--1 { left: 56%; width: 56px; height: 120px; animation-duration: 6.5s; animation-delay: 0s; }
.hero-steam__wisp--2 { left: 63%; width: 80px; height: 160px; animation-duration: 8s; animation-delay: 1.4s; }
.hero-steam__wisp--3 { left: 70%; width: 60px; height: 130px; animation-duration: 7.2s; animation-delay: 2.6s; }
.hero-steam__wisp--4 { left: 77%; width: 90px; height: 170px; animation-duration: 9s; animation-delay: 0.8s; }
.hero-steam__wisp--5 { left: 83%; width: 50px; height: 110px; animation-duration: 6s; animation-delay: 3.4s; }
@keyframes heroSteamRise {
  0% { transform: translate(0, 0) scale(0.75); opacity: 0; }
  12% { opacity: 0.55; }
  50% { transform: translate(-10px, -120px) scale(1.15); opacity: 0.35; }
  100% { transform: translate(14px, -260px) scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-steam__wisp { animation: none; opacity: 0; }
}
@media (max-width: 640px) {
  .hero-steam__wisp { width: 40px; height: 90px; filter: blur(5px); }
  .hero-steam__wisp--2, .hero-steam__wisp--4 { width: 52px; height: 110px; }
}
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  min-height: min(660px, calc(100vh - 90px));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  padding: 64px 5% 0;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
}
.hero-right {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-right__img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}
.hero-text {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}
.script-accent {
  font-family: var(--font-script);
  font-size: 46px;
  color: var(--color-accent);
  font-weight: 700;
  text-shadow: 0 2px 0 rgba(255,255,255,0.35);
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-top: 6px;
  padding-right: 14px;
  perspective: 700px;
}
.headline-line {
  display: block;
  position: relative;
  color: #fff;
  transform-style: preserve-3d;
  animation: headlineTilt 5.5s ease-in-out infinite;
  padding-bottom: 4px;
  text-shadow:
    1px 1px 0 var(--color-accent),
    2px 2px 0 var(--color-accent),
    3px 3px 0 var(--color-accent),
    4px 4px 0 var(--color-accent),
    5px 5px 0 var(--color-accent),
    6px 6px 0 var(--color-accent),
    7px 7px 0 var(--color-accent),
    8px 8px 0 var(--color-accent),
    9px 9px 0 var(--color-accent),
    10px 10px 0 var(--color-accent),
    11px 11px 10px rgba(0, 0, 0, 0.35);
}
.headline-line:nth-child(2) { animation-delay: -2.75s; }
@keyframes headlineTilt {
  0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
  50%      { transform: rotateX(8deg) rotateY(-10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .headline-line { animation: none; }
}
.script-sub {
  display: inline-block;
  font-family: var(--font-pack);
  /* Kalam 400 reads too light next to the pack lettering. */
  font-weight: 700;
  /* Permanent Marker runs wider than Caveat Brush — scale so the
     nowrap line still fits the hero column on small screens. */
  font-size: clamp(26px, 4.4vw, 46px);
  line-height: 1.2;
  color: #FFFDF5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(0, 0, 0, 0.2);
  margin-top: 0;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.jump-word {
  display: inline-block;
  white-space: nowrap;
}
.jump-letter {
  display: inline-block;
  white-space: pre;
  animation: letterJump 1.1s ease-in-out infinite;
}
@keyframes letterJump {
  0%, 100% { transform: translateY(0); }
  30%      { transform: translateY(-10px); }
  50%      { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .jump-letter { animation: none; }
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-accent);
  opacity: 0.85;
  max-width: 420px;
  margin-top: 14px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 42px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(30, 58, 15, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.cta-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 58, 15, 0.4);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.icon-btn--social { width: 44px; height: 44px; }

.sticky-social {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.sticky-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sticky-social__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}
.sticky-social__btn--facebook { background: #1877F2; }
.sticky-social__btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.sticky-social__btn--youtube { background: #FF0000; }

@media (max-width: 640px) {
  .sticky-social { top: auto; bottom: 16px; right: 10px; gap: 10px; transform: none; }
  .sticky-social__btn { width: 38px; height: 38px; }
}

.hero-image-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0;
  position: relative;
  z-index: 2;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 408 / 612;
  max-height: 520px;
  margin-inline: auto;
  /* Sits centred in the hero — the cut-out pack needs equal air above and
     below, unlike the tall idli-stack shot this slot used to hold. */
  margin-top: 0;
  perspective: 1000px;
  animation: heroImageFloat 5s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1);
  z-index: 1;
}
.hero-image-wrap:hover .hero-flip {
  transform: rotateY(180deg);
}
@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0) rotateY(-4deg) rotateX(2deg); }
  50%      { transform: translateY(-16px) rotateY(4deg) rotateX(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap { animation: none; }
  .hero-flip { transition: none; }
}
.hero-image {
  object-fit: contain;
  object-position: bottom center;
  /* Heavier, tighter contact shadow — a full pouch sits with more weight
     than the airy shadow the flat cutout had. */
  filter: drop-shadow(0 34px 26px rgba(30, 58, 15, 0.42)) drop-shadow(0 10px 10px rgba(30, 58, 15, 0.32));
}
.hero-image--front,
.hero-image--back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.hero-image--back {
  transform: rotateY(180deg);
}
/* The pack art is a flat die-cut, so it reads thin. These two passes are
   masked to the pouch's own alpha channel — the mask geometry has to track
   .hero-image's object-fit/object-position exactly or the shading drifts
   off the silhouette. Pass 1 darkens the left/right gussets and lifts the
   centre (cylinder roundness); pass 2 is the specular sheen down the face. */
.hero-image__volume {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  pointer-events: none;
  -webkit-mask-image: url('../assets/images/Goodli package front.webp');
  mask-image: url('../assets/images/Goodli package front.webp');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.05) 14%,
      rgba(0, 0, 0, 0) 52%,
      rgba(0, 0, 0, 0.20) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(255, 255, 255, 0.40) 2.5%,
      rgba(0, 0, 0, 0.20) 7%,
      rgba(0, 0, 0, 0) 25%,
      rgba(255, 255, 255, 0.30) 43%,
      rgba(255, 255, 255, 0.18) 57%,
      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, 0.20) 90%,
      rgba(255, 255, 255, 0.36) 96.5%,
      rgba(0, 0, 0, 0.42) 100%
    );
  mix-blend-mode: multiply;
  opacity: 1;
}
.hero-image__volume--back {
  transform: rotateY(180deg);
  -webkit-mask-image: url('../assets/images/Goodli-package-back.webp');
  mask-image: url('../assets/images/Goodli-package-back.webp');
  /* Back art is denser/lighter (white label panel) than the front, so the
     stock gusset shading reads too faint — push it darker/wider here so the
     pocket still looks full of batter instead of an empty flat sheet. */
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.06) 14%,
      rgba(0, 0, 0, 0) 52%,
      rgba(0, 0, 0, 0.22) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.36) 0%,
      rgba(255, 255, 255, 0.42) 2.5%,
      rgba(0, 0, 0, 0.22) 8%,
      rgba(0, 0, 0, 0) 26%,
      rgba(255, 255, 255, 0.32) 44%,
      rgba(255, 255, 255, 0.20) 58%,
      rgba(0, 0, 0, 0) 76%,
      rgba(0, 0, 0, 0.22) 91%,
      rgba(255, 255, 255, 0.38) 97%,
      rgba(0, 0, 0, 0.46) 100%
    );
  mix-blend-mode: multiply;
  opacity: 1;
}
.hero-image--placeholder {
  background: #E5E5E5;
  border-radius: 12px;
}
.hero-image__placeholder-label {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #777;
  font-weight: 700;
  font-size: 18px;
  z-index: 1;
}
.hero-image--placeholder ~ .hero-image__placeholder-label,
.hero-image-wrap:has(.hero-image--placeholder) .hero-image__placeholder-label {
  display: block;
}

.script-label {
  position: absolute;
  top: 6%;
  left: 8%;
  font-family: var(--font-script);
  color: #fff;
  font-size: 28px;
  transform: rotate(-10deg);
  z-index: 4;
}
.steam {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 70px;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 6;
  pointer-events: none;
}
.steam-wisp {
  opacity: 0;
  filter: blur(0.6px);
  transform-origin: bottom center;
  animation: steamRise 6.5s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}
.steam-wisp--1 { animation-delay: 0s; }
.steam-wisp--2 { animation-delay: 2.1s; margin-top: 10px; }
.steam-wisp--3 { animation-delay: 4.2s; }
@keyframes steamRise {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.85) rotate(0deg); }
  12%  { opacity: 0.4; }
  35%  { opacity: 0.38; transform: translate(-6px, -22px) scale(0.98) rotate(-2deg); }
  60%  { opacity: 0.26; transform: translate(5px, -42px) scale(1.06) rotate(2deg); }
  85%  { opacity: 0.1; transform: translate(-4px, -60px) scale(1.14) rotate(-1deg); }
  100% { opacity: 0; transform: translate(0, -74px) scale(1.2) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .steam-wisp { animation: none; opacity: 0.25; }
}

.squiggle {
  position: absolute;
  top: 10%;
  right: -6px;
  z-index: 4;
}
.splash { display: none; }
.splash--1 { left: -18px; top: 42%; width: 38px; height: 38px; }
.splash--2 { left: -8px; bottom: 16%; width: 26px; height: 26px; }
.splash--3 { left: 24%; bottom: 6%; width: 20px; height: 20px; }

.veg-badge {
  position: absolute;
  /* Kept fully inside the pack frame — a negative top clipped the seal
     against the hero's overflow while the float animation ran. */
  top: 4px;
  right: -8px;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(60, 6, 4, 0.35));
  z-index: 5;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fffdf5;
  opacity: 0.4;
  font-size: 24px;
  z-index: 3;
  pointer-events: none;
}
.hero-arrow--left { left: 24px; }
.hero-arrow--right { right: 24px; }

.dot-pattern {
  position: absolute;
  width: 176px;
  height: 96px;
  background-image: radial-gradient(circle, #fff 3px, transparent 3.5px);
  background-size: 16px 16px;
  opacity: 0.15;
  z-index: 1;
}
.dot-pattern--bl { bottom: 0; left: 0; }

.hero-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transform-origin: center bottom;
  opacity: 0.9;
}
.hero-leaf--tl {
  top: -18px;
  left: -18px;
  width: 130px;
  height: 130px;
  transform-origin: top left;
  animation: leafSwayTL 6s ease-in-out infinite;
}
.hero-leaf--br {
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  transform-origin: bottom right;
  animation: leafSwayBR 7s ease-in-out infinite;
}
.hero-leaf--tr {
  top: -10px;
  right: 40px;
  width: 90px;
  height: 90px;
  transform-origin: top right;
  animation: leafSwayTR 5.5s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes leafSwayTL {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(6deg); }
}
@keyframes leafSwayBR {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-6deg); }
}
@keyframes leafSwayTR {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-leaf { animation: none; }
}
@media (max-width: 768px) {
  .hero-leaf--tl { width: 90px; height: 90px; }
  .hero-leaf--br { width: 100px; height: 100px; }
  .hero-leaf--tr { display: none; }
}
.dot-pattern--tr { top: 0; right: 0; }

.deco-dot {
  position: absolute;
  border-radius: 50%;
  background: #D89E00;
  opacity: 0.25;
  z-index: 1;
}
.deco-dot--sm { width: 22px; height: 22px; top: 24%; left: 47%; opacity: 0.32; animation: dotFloatA 4s ease-in-out infinite; }
.deco-dot--lg { width: 30px; height: 30px; top: 66%; left: 45%; opacity: 0.26; animation: dotFloatB 5.2s ease-in-out infinite; animation-delay: -1.5s; }
.deco-dot--md { width: 16px; height: 16px; top: 44%; left: 52%; opacity: 0.3; animation: dotFloatC 3.6s ease-in-out infinite; animation-delay: -2.2s; }
.deco-dot--xs { width: 11px; height: 11px; top: 80%; left: 49%; opacity: 0.35; animation: dotFloatA 4.4s ease-in-out infinite; animation-delay: -3s; }
.deco-dot--xl { width: 20px; height: 20px; top: 14%; left: 58%; opacity: 0.26; animation: dotFloatB 5.6s ease-in-out infinite; animation-delay: -0.8s; }
.deco-dot--sm2 { width: 13px; height: 13px; top: 54%; left: 46%; opacity: 0.35; animation: dotFloatC 4.2s ease-in-out infinite; animation-delay: -3.6s; }
@keyframes dotFloatA {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(20px, -26px); }
  66%      { transform: translate(-14px, -14px); }
}
@keyframes dotFloatB {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-24px, 20px); }
}
@keyframes dotFloatC {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(18px, 18px); }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 60%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 216, 77, 0.6) 0%, rgba(255, 216, 77, 0) 60%);
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 0.85; }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: #E0A800;
}
.hero-blob--1 {
  width: 460px;
  height: 460px;
  top: -200px;
  left: -220px;
  opacity: 0.3;
  animation: blobDrift1 12s ease-in-out infinite;
}
.hero-blob--2 {
  width: 320px;
  height: 340px;
  bottom: -160px;
  left: -140px;
  opacity: 0.28;
  border-radius: 48% 52% 55% 45% / 50% 45% 55% 50%;
  animation: blobDrift2 14s ease-in-out infinite;
}
.hero-blob--3 {
  width: 220px;
  height: 220px;
  top: 30%;
  left: -120px;
  opacity: 0.25;
  animation: blobDrift3 10s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(18px, 14px); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-14px, -12px) rotate(4deg); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(12px, -16px); }
}
@media (prefers-reduced-motion: reduce) {
  .deco-dot, .hero-glow, .hero-blob { animation: none; }
}

.hero-eyebrow {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30, 58, 15, 0.55);
  z-index: 1;
}
.hero-eyebrow span {
  width: 28px;
  height: 1px;
  background: rgba(30, 58, 15, 0.35);
}

/* ===================== WHY CHOOSE GOODLI ===================== */
.why-choose {
  background: var(--color-background);
  padding: 100px 0;
  overflow: hidden;
}
.why-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  /* fr tracks so the gap is subtracted from the columns instead of
     overflowing them, and the copy column gets the extra room. */
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.why-text { max-width: 460px; }
.why-script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 44px;
  color: var(--color-primary);
}
.why-headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 20px;
}
.why-desc {
  font-family: var(--font-body);
  color: #6B6B6B;
  font-size: 15.5px;
  line-height: 1.62;
  max-width: 440px;
  margin-bottom: 26px;
}
.why-maker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 81, 21, 0.12);
}
.why-maker__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30, 58, 15, 0.5);
  white-space: nowrap;
}
.why-maker__logo {
  height: 34px;
  width: auto;
}

.why-cta { margin-top: 0; padding: 16px 36px; font-size: 15px; }

.why-photos {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
}
.why-photo {
  position: absolute;
}
/* The photo is a cut-out PNG, so it sits straight on the page: no card,
   no backdrop, no shadow, and never cropped. */
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.why-photo__img--placeholder { display: none; }
.why-photo__placeholder-label {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #777;
  font-weight: 700;
  font-size: 15px;
}
.why-photo:has(.why-photo__img--placeholder) .why-photo__placeholder-label { display: block; }

.why-photo--single {
  position: relative;
  width: 420px;
  max-width: 100%;
  height: 500px;
}

.why-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(47, 81, 21, 0.08);
}
.why-benefit h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.why-benefit p {
  font-family: var(--font-body);
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.6;
  max-width: 220px;
}

.why-benefit--compact {
  align-items: center;
  gap: 12px;
}
.why-benefit__icon--check {
  width: 28px;
  height: 28px;
  background: rgba(47, 81, 21, 0.1);
}
.why-benefit--compact h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ===================== PACK SPOTLIGHT (MAIN PRODUCT) ===================== */
.pack {
  position: relative;
  isolation: isolate;
  padding: 110px 0 120px;
  overflow: hidden;
  /* Warm kitchen light that carries the pack shot's own backdrop into the page. */
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(90% 70% at 88% 92%, rgba(47, 81, 21, 0.10) 0%, rgba(47, 81, 21, 0) 60%),
    linear-gradient(165deg, #FFFCF2 0%, #FBF4DF 46%, #F4EBD2 100%);
}
.pack-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}
.pack-blob--leaf {
  width: 460px;
  height: 460px;
  top: -140px;
  left: -120px;
  background: rgba(122, 168, 68, 0.30);
}
.pack-blob--sun {
  width: 520px;
  height: 520px;
  bottom: -180px;
  right: -140px;
  background: rgba(242, 191, 2, 0.26);
}
/* Faint woven texture so the light reads as a surface, not flat paint. */
.pack-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(115deg, rgba(140, 106, 63, 0.05) 0 1px, rgba(140, 106, 63, 0) 1px 7px),
    repeating-linear-gradient(25deg, rgba(140, 106, 63, 0.04) 0 1px, rgba(140, 106, 63, 0) 1px 9px);
}

.pack-inner {
  position: relative;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Pack stage: the photo lit and seated on the section surface ---- */
.pack-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding-bottom: 34px;
}
.pack-stage__glow {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 2%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%, rgba(242, 191, 2, 0.55) 0%, rgba(242, 191, 2, 0) 68%);
  filter: blur(46px);
  z-index: 0;
}
.pack-stage__img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 18px;
  transform: rotate(-1.6deg);
  box-shadow:
    0 2px 4px rgba(74, 55, 16, 0.10),
    0 18px 30px rgba(74, 55, 16, 0.16),
    0 44px 80px rgba(74, 55, 16, 0.22);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.6s ease;
}
.pack-stage:hover .pack-stage__img {
  transform: rotate(0deg) translateY(-10px);
  box-shadow:
    0 2px 4px rgba(74, 55, 16, 0.10),
    0 24px 40px rgba(74, 55, 16, 0.18),
    0 60px 100px rgba(74, 55, 16, 0.26);
}
/* Contact shadow on the surface, so the pack sits rather than floats. */
.pack-stage__shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8px;
  height: 44px;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(60, 44, 12, 0.34) 0%, rgba(60, 44, 12, 0) 72%);
  filter: blur(10px);
}
.pack-stage__badge {
  position: absolute;
  z-index: 3;
  top: -26px;
  right: -26px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 30px rgba(30, 58, 15, 0.32);
  transform: rotate(-8deg);
}
.pack-stage__badge strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
}
.pack-stage__badge span {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

/* ---- Copy column ---- */
.pack-text { max-width: 500px; }
.pack-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C6841F;
  font-size: 13px;
  margin-bottom: 6px;
}
.pack-script { color: var(--color-primary); }
.pack-headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 44px;
  line-height: 1.12;
  margin-top: 4px;
  margin-bottom: 18px;
}
.pack-desc {
  font-family: var(--font-body);
  color: #6B6B6B;
  font-size: 17px;
  line-height: 1.75;
  max-width: 460px;
}

.pack-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.pack-fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 81, 21, 0.10);
  box-shadow: 0 6px 18px rgba(74, 55, 16, 0.06);
}
.pack-fact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(47, 81, 21, 0.09);
}
.pack-fact__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #6B6B6B;
}
.pack-fact__text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.pack-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}
.pack-cta { margin-top: 0; }
.pack-call {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid rgba(47, 81, 21, 0.35);
  padding-bottom: 2px;
}
.pack-call:hover { border-bottom-color: var(--color-primary); }

@media (prefers-reduced-motion: reduce) {
  .pack-stage__img,
  .pack-stage:hover .pack-stage__img { transition: none; transform: rotate(-1.6deg); }
}

/* ===================== IDLI SHOWCASE ===================== */
.idli-showcase {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 72px;
  background-color: #FFF3D6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.idli-showcase__dot {
  display: none;
}
.idli-showcase__dot--1 { width: 90px; height: 90px; top: -30px; left: -30px; }
.idli-showcase__dot--2 { width: 50px; height: 50px; bottom: 30px; right: 6%; background: var(--color-primary); opacity: 0.15; }
.idli-showcase__dot--3 { width: 26px; height: 26px; top: 20%; right: 12%; background: var(--color-primary); opacity: 0.2; }

.idli-showcase__script {
  margin-bottom: 4px;
}
.idli-showcase__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-accent);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.idli-showcase__inner {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  z-index: 1;
}
.idli-showcase__glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}
.idli-showcase__img {
  max-width: 620px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  filter: drop-shadow(0 24px 34px rgba(30, 58, 15, 0.25));
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.45s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.idli-showcase__inner:hover .idli-showcase__img {
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg) scale(1.04) translateZ(20px);
  filter: drop-shadow(0 34px 44px rgba(30, 58, 15, 0.35));
}
@media (prefers-reduced-motion: reduce) {
  .idli-showcase__img { transition: none; }
  .idli-showcase__inner:hover .idli-showcase__img { transform: none; }
}

.showcase-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 920px;
  margin-inline: auto;
}
.showcase-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 28px 12px 22px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF7EA 100%);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(30, 58, 15, 0.08), inset 0 0 0 1px rgba(30, 58, 15, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.showcase-point__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-accent);
  position: relative;
  padding-top: 12px;
}
.showcase-point__label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-secondary);
}
.showcase-point__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(160deg, #FFFFFF 0%, #F5F0DC 100%);
  box-shadow: 0 10px 22px rgba(30, 58, 15, 0.14), 0 1px 0 rgba(255, 255, 255, 0.6) inset, inset 0 0 0 1.5px rgba(242, 191, 2, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.showcase-point__icon svg {
  width: 36px;
  height: 36px;
}
.showcase-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(30, 58, 15, 0.14), inset 0 0 0 1px rgba(30, 58, 15, 0.08);
}
.showcase-point:hover .showcase-point__icon {
  transform: scale(1.08);
  box-shadow: 0 16px 28px rgba(30, 58, 15, 0.24), 0 1px 0 rgba(255, 255, 255, 0.7) inset, inset 0 0 0 1.5px rgba(242, 191, 2, 0.55);
}
@media (max-width: 640px) {
  .idli-showcase__headline { font-size: 24px; }
  .idli-showcase__img { max-width: 320px; }
  .showcase-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 340px;
    margin-inline: auto;
  }
  .showcase-point { padding: 22px 8px 18px; border-radius: 16px; gap: 10px; }
  .showcase-point__icon { width: 64px; height: 64px; }
  .showcase-point__icon svg { width: 30px; height: 30px; }
  .showcase-point__label { font-size: 12.5px; }
}

/* ===================== SECTION DIVIDER ===================== */
.section-divider {
  width: 100%;
  background-color: #FFF3D6;
  position: relative;
  z-index: 1;
}
.section-divider__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 340px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 15, 0.28), transparent);
}
.section-divider__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-divider__icon svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 640px) {
  .section-divider__row { max-width: 220px; gap: 12px; }
  .section-divider__icon { width: 28px; height: 28px; }
  .section-divider__icon svg { width: 15px; height: 15px; }
}

/* ===================== PHOTO COLLAGE ===================== */
.collage {
  position: relative;
  background-color: #FFF3D6;
  padding: 64px 0 72px;
  overflow: hidden;
}
.collage-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.collage-header {
  text-align: center;
  margin-bottom: 34px;
}
/* Same script-over-display pairing as "Who we are", tuned for the dark band. */
.collage-script {
  color: var(--color-secondary);
  font-size: 44px;
  text-shadow: none;
}
.collage-headline {
  font-family: var(--font-display);
  font-weight: 800;
  /* Matches .why-headline / .highlights-headline — the three section
     headings run at one size and all-caps together. */
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--color-accent);
}

/* Traced from the reference band: four unequal columns and a 115-row
   ladder, so every tile keeps the exact size and offset of the original.
   aspect-ratio drives the height, so the whole thing scales as one piece. */
.collage-grid {
  display: grid;
  grid-template-columns: 357fr 242fr 234fr 358fr;
  grid-template-rows: repeat(115, 1fr);
  column-gap: 2.5%;
  row-gap: 0;
  aspect-ratio: 1287 / 575;
}
.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.collage-item:hover img { transform: scale(1.06); }
.collage-item__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px 14px 11px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}
/* Until a photo is dropped in, the slot stays a labelled empty frame
   instead of a broken image. */
.collage-item.is-empty::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.collage-item--1 { grid-column: 1;          grid-row: 4 / span 35; }
.collage-item--2 { grid-column: 1;          grid-row: 45 / span 48; margin-left: 27%; }
.collage-item--3 { grid-column: 2 / span 2; grid-row: 15 / span 49; }
.collage-item--4 { grid-column: 2;          grid-row: 68 / span 47; }
.collage-item--5 { grid-column: 3;          grid-row: 68 / span 26; }
.collage-item--6 { grid-column: 4;          grid-row: 1 / span 46;  margin-right: 33%; }
.collage-item--7 { grid-column: 4;          grid-row: 52 / span 46; }

/* ===================== HIGHLIGHTS TILES ===================== */
.highlights {
  background: var(--color-background);
  padding: 84px 0 80px;
}
.highlights-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.highlights-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 16px;
}
/* Same pairing as the "Who we are" block: script accent over an
   all-caps display headline. */
.highlights-script {
  color: var(--color-primary);
  font-size: 44px;
}
.highlights-headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 6px;
}
.tile {
  position: relative;
  height: 340px;
  border-radius: 16px;
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tile--stoneground { background: #EAF2E1; }
.tile--whatsapp { background: #FBF6E9; }
.tile--vegcert { background: #FDF0BE; }
.tile--idlicount { background: #F6E3CC; }

.tile__wordmark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 140px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.tile__content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}
.tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 58, 15, 0.08);
  margin-bottom: 14px;
}
.tile__heading {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.tile__desc {
  font-family: var(--font-body);
  color: rgba(30, 58, 15, 0.75);
  font-size: 15px;
  line-height: 1.5;
  max-width: 280px;
}
.tile__cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--color-secondary);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
}
.tile__cta:hover { opacity: 0.9; }

.tile__badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 15, 0.12);
  box-shadow: 0 2px 8px rgba(30, 58, 15, 0.08);
  z-index: 3;
}
.tile__badge--stamp {
  background: var(--color-accent);
  color: #fff;
}

.tile__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 220px;
  z-index: 1;
}
.tile__image--vector svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tile__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}
.tile__image-el--placeholder {
  display: none;
}
.tile__image-placeholder-label {
  display: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: rgba(30, 58, 15, 0.5);
  font-weight: 700;
  font-size: 12px;
}
.tile__image:has(.tile__image-el--placeholder) .tile__image-placeholder-label {
  display: block;
}
.tile__image:has(.tile__image-el--placeholder) {
  background: rgba(30, 58, 15, 0.06);
  border-radius: 12px;
}

.tile__lineart {
  position: absolute;
  top: 0;
  right: -40px;
  height: 100%;
  width: 260px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.tile__arrow-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* ===================== HOW IT WORKS / WHAT'S INSIDE ===================== */
.how-it-works {
  position: relative;
  background: #FBF6E9;
  padding: 100px 0;
  overflow: hidden;
}
/* Two large idli-on-a-plate motifs, one per opposite corner */
.how-it-works::before,
.how-it-works::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 260' fill='none' stroke='%232F5115' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M92 62c-9-15 9-26 0-41'/%3E%3Cpath d='M120 52c-9-15 9-26 0-41'/%3E%3Cpath d='M148 62c-9-15 9-26 0-41'/%3E%3Cpath d='M45 176a75 62 0 0 1 150 0'/%3E%3Cellipse cx='120' cy='176' rx='95' ry='24'/%3E%3Cpath d='M74 168a46 38 0 0 1 92 0' stroke-width='1.8'/%3E%3C/svg%3E");
}
.how-it-works::before {
  width: 320px;
  height: 346px;
  top: 34px;
  left: -70px;
  transform: rotate(-9deg);
}
.how-it-works::after {
  width: 300px;
  height: 325px;
  bottom: 24px;
  right: -66px;
  transform: rotate(8deg);
}
.how-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 72px;
}
.how-script {
  font-size: 44px;
  color: var(--color-primary);
  transform: rotate(-4deg);
}
.how-headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 40px;
  line-height: 1.15;
  margin-top: 6px;
}
.how-subtext {
  font-family: var(--font-body);
  color: #6B6B6B;
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin: 16px auto 0;
}

.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step {
  text-align: center;
}
.how-step__icon-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
}
.how-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 16px;
  border: 1.5px solid rgba(30, 58, 15, 0.35);
  background: #FBF6E9;
}
.how-step__dot {
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
}
.how-step__heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 19px;
  margin-bottom: 8px;
}
.how-step__desc {
  font-family: var(--font-body);
  color: #6B6B6B;
  font-size: 14px;
  line-height: 1.5;
}

/* ===================== FAQ ===================== */
.faq {
  background: var(--color-background);
  padding: 100px 0;
}
.faq-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.faq-header {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
}
.faq-script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 44px;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}
.faq-headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 40px;
  margin-top: 6px;
  position: relative;
  z-index: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 0 4%;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item__q { margin: 0; }
.faq-item__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--color-secondary);
  color: var(--color-accent);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item__btn span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 18px;
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 250ms ease, opacity 250ms ease, margin-top 250ms ease;
  margin-top: 0;
  padding-left: 52px;
}
.faq-item__a > p {
  overflow: hidden;
  font-family: var(--font-body);
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  min-height: 0;
}
.faq-item:not(.is-collapsed) .faq-item__a {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 16px;
}
.faq-item__a > p {
  display: block;
}
.faq-item.is-collapsed .faq-item__a > p { padding-bottom: 0; }

/* ===================== FIND US / MAP ===================== */
.find-us {
  position: relative;
  background: var(--color-background);
  padding-bottom: 100px;
}
.find-us__banner {
  position: relative;
  width: 100%;
  height: 420px;
  /* The banner photo was removed with the Find Us section; colour only. */
  background: #2A2A2A;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 120px;
}
.find-us__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.62) 55%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}
.find-us__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.find-us__script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 44px;
  color: #fff;
}
.find-us__headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
  margin-top: 6px;
  max-width: 700px;
}
.find-us__subtext {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  margin-top: 14px;
}

.find-us__map-wrap {
  position: relative;
  max-width: 1300px;
  width: 90%;
  margin: -120px auto 0;
  height: 440px;
  z-index: 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.find-us__map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ===================== FOOTER ===================== */
.site-footer {
  position: relative;
  background: #FBF6E9;
  border-radius: 32px 32px 0 0;
  padding: 64px 0 48px;
  overflow: hidden;
}
.footer-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.footer-blob--1 {
  width: 380px;
  height: 380px;
  top: -160px;
  left: -140px;
  background: #E0A800;
  opacity: 0.12;
  animation: blobDrift1 12s ease-in-out infinite;
}
.footer-blob--2 {
  width: 300px;
  height: 320px;
  bottom: -140px;
  right: -120px;
  background: var(--color-primary);
  opacity: 0.08;
  border-radius: 48% 52% 55% 45% / 50% 45% 55% 50%;
  animation: blobDrift2 14s ease-in-out infinite;
}
.footer-blob--3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 8%;
  background: #E0A800;
  opacity: 0.1;
  animation: blobDrift3 10s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .footer-blob { animation: none; }
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 260px;
}
.footer-badge__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.footer-badge:hover .footer-badge__icon { transform: scale(1.06); }
.footer-badge__text { display: flex; flex-direction: column; line-height: 1.3; }
.footer-badge__label { font-family: var(--font-body); font-size: 13px; color: rgba(30,58,15,0.6); }
.footer-badge__value { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--color-accent); }
.footer-top .footer-badge:last-child { justify-content: flex-end; text-align: right; }
.footer-top .footer-badge:last-child .footer-badge__text { align-items: flex-end; }

.footer-logo-link { flex-shrink: 0; }
.footer-logo { height: 64px; width: auto; object-fit: contain; }

.footer-divider {
  border: none;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.15;
  margin: 32px 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px 64px;
  align-items: start;
}
.footer-col__heading {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li { list-style: none; line-height: 1.5; }
.footer-links a {
  font-family: var(--font-body);
  color: rgba(30,58,15,0.75);
  font-size: 15px;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
}

.footer-about-desc {
  font-family: var(--font-body);
  color: rgba(30,58,15,0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 14px;
}
.footer-badge-line {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 13px;
}

.footer-touch-line {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.footer-address {
  font-family: var(--font-body);
  color: rgba(30,58,15,0.65);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 16px;
}
.footer-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.footer-map-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30, 58, 15, 0.25);
}
.footer-map-btn svg { transition: transform 0.15s ease; }
.footer-map-btn:hover svg { transform: translateX(3px); }
.footer-email {
  display: block;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.footer-phone {
  display: block;
  font-family: var(--font-body);
  color: rgba(30,58,15,0.75);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.footer-hours {
  font-family: var(--font-body);
  color: rgba(30,58,15,0.55);
  font-size: 13px;
  margin-bottom: 14px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30,58,15,0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-copyright {
  font-family: var(--font-body);
  color: rgba(30,58,15,0.55);
  font-size: 13px;
  text-align: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(30,58,15,0.12);
}
.footer-credit {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s ease;
}
.footer-credit:hover { text-decoration-color: var(--color-primary); }

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===================== MOTION: SCROLL REVEAL ===================== */
/* Hidden state is scoped to .js so content stays visible without JavaScript. */
.js [data-reveal],
.js [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal="left"]  { transform: translateX(-44px); }
.js [data-reveal="right"] { transform: translateX(44px); }
.js [data-reveal="zoom"]  { transform: scale(0.93); }
.js [data-reveal="fade"]  { transform: none; }

.js [data-reveal].is-revealed,
.js [data-reveal-group] > .is-revealed {
  opacity: 1;
  transform: none;
}

/* Grows noticeably as it scrolls into view, rather than the subtle
   site-wide zoom reveal — this image should read small, then big. */
.js .idli-showcase__inner[data-reveal="zoom"] {
  transform: scale(0.6);
  transition-duration: 1.1s;
}
.js .idli-showcase__inner[data-reveal="zoom"].is-revealed {
  transform: none;
}

/* ===================== MOTION: HERO ENTRANCE ===================== */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}
/* Transform-only variant, for elements that already own an opacity animation. */
@keyframes heroRiseSlide {
  from { transform: translateY(34px); }
  to   { transform: none; }
}
@keyframes heroImageIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
/* .hero-eyebrow is centred with translateX(-50%), so its entrance has to carry
   that across — a plain translateY would knock it off-centre. */
@keyframes heroEyebrowIn {
  from { opacity: 0; transform: translate(-50%, 34px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.js .hero-text > .script-accent,
.js .hero-headline,
.js .hero-desc,
.js .hero-text > .cta-btn,
.js .social-row {
  animation: heroRise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.js .hero-eyebrow                { animation-delay: 0.05s; }
.js .hero-text > .script-accent  { animation-delay: 0.18s; }
.js .hero-headline               { animation-delay: 0.30s; }
.js .hero-desc                   { animation-delay: 0.54s; }
.js .hero-text > .cta-btn        { animation-delay: 0.66s; }
.js .social-row                  { animation-delay: 0.78s; }

.js .script-sub {
  animation: heroRiseSlide 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.42s both;
}
.js .hero-image-col {
  animation: heroImageIn 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s both;
}

/* ===================== MOTION: HEADER ON SCROLL ===================== */
.site-header {
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(30, 58, 15, 0.18);
}
.logo-img { transition: height 0.3s ease; }

/* The logo sits in the nav as an <a href="#home"> too, so every underline rule
   below excludes it — otherwise it picks up a bar across the whole logo. */
.main-nav a:not(.logo-link) {
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.main-nav a:not(.logo-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:not(.logo-link):hover::after,
.main-nav a:not(.logo-link).is-active::after { transform: scaleX(1); }
.main-nav a:not(.logo-link).is-active { color: var(--color-primary); }

/* ===================== MOTION: HOVER MICRO-INTERACTIONS ===================== */
.tile {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}
/* `.js .tile:hover` is needed to outrank the reveal rule's `transform: none`;
   the bare selector keeps the lift working when JavaScript is unavailable. */
.tile:hover,
.js .tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(30, 58, 15, 0.16);
}
.tile__image { transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1); }
.tile:hover .tile__image { transform: scale(1.06) rotate(-2deg); }

.why-benefit__icon { transition: transform 0.3s ease; }
.why-benefit:hover .why-benefit__icon { transform: scale(1.12) rotate(-6deg); }

.how-step__icon { transition: transform 0.3s ease, border-color 0.3s ease; }
.how-step:hover .how-step__icon {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.why-photo img { transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); }
.why-photo:hover img { transform: scale(1.06); }

.cta-btn { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(30, 58, 15, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js .hero-eyebrow,
  .js .hero-text > .script-accent,
  .js .hero-headline,
  .js .hero-desc,
  .js .hero-text > .cta-btn,
  .js .social-row,
  .js .script-sub,
  .js .hero-image-col { animation: none; }
  .js .script-sub { opacity: 0.92; }
  .site-header,
  .tile,
  .tile__image,
  .why-photo img,
  .cta-btn { transition: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .tile { height: 300px; padding: 32px; }
  .how-steps { gap: 40px; }
  .find-us__banner { height: 360px; }
  .find-us__headline { font-size: 32px; }
  .footer-cols { gap: 32px 40px; }
  .find-us__map-wrap { height: 380px; }
  .faq-grid { gap: 0 24px; }

  .why-inner {
    grid-template-columns: 55% 40%;
    grid-template-areas:
      "why-text why-text"
      "why-photos why-benefits";
    row-gap: 48px;
  }
  .why-text { max-width: 100%; grid-area: why-text; }
  .why-photos { grid-area: why-photos; }
  .why-benefits { grid-area: why-benefits; }

  .collage { padding: 56px 0 64px; }
  /* The three section headings stay locked to each other at every width. */
  .why-headline,
  .highlights-headline,
  .collage-headline { font-size: 32px; }
  .collage-item { border-radius: 12px; }

  .pack { padding: 80px 0 90px; }
  .pack-inner { grid-template-columns: 46% 1fr; gap: 44px; }
  .pack-headline { font-size: 34px; }
  .pack-desc { font-size: 16px; }
  .pack-stage { max-width: 380px; }
  .pack-stage__badge { width: 96px; height: 96px; top: -18px; right: -14px; }
  .pack-stage__badge strong { font-size: 32px; }
  .highlights { padding: 64px 0 80px; }

  .header-inner { padding: 0 16px; gap: 8px; }
  .main-nav ul { gap: 18px; }
  .main-nav a { font-size: 12px; }
  .hero-image-wrap { max-width: 380px; max-height: 480px; }
  .script-accent { font-size: 38px; }
}

@media (max-width: 768px) {
  .header-inner { position: relative; }
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    flex-direction: column;
    display: none;
    z-index: 50;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
  }
  .nav-logo-slot {
    order: -1;
    margin-bottom: 8px;
    align-self: center;
    justify-content: center;
    width: 100%;
  }
  .call-badge__label { display: none; }

  .hero { min-height: 0; }
  .hero-eyebrow { display: none; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 40px 4% 32px;
    gap: 8px;
  }
  .hero-left { width: 52%; }
  .hero-right { width: 44%; margin-top: 0; }
  .hero-right__img { max-width: 100%; margin: 0 auto; }
  .hero-text {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .hero-headline { font-size: 32px; }
  .script-sub { font-size: 18px; white-space: normal; }
  .social-row { justify-content: center; }
  .hero-image-col {
    width: 100%;
    justify-content: center;
    /* The desktop rule keeps a 14% right pad; stacked, that pushes the pack
       off the viewport centre. */
    padding-right: 0;
    margin-top: 0;
  }
  /* Dropped clear of the social row — the badge used to ride up beside it. */
  .hero-image-wrap { max-width: 170px; max-height: 220px; margin: 0 auto; }
  /* A full-size seal on a 300px pack swallows the label — scale it down. */
  .veg-badge { width: 48px; height: 48px; top: 2px; right: -2px; }
  .script-label { font-size: 24px; }
  .hero-arrow { display: none; }

  .why-choose { padding: 64px 0; }
  .why-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "why-text"
      "why-photos"
      "why-benefits";
    row-gap: 48px;
    padding: 0 24px;
  }
  .why-text { text-align: center; margin: 0 auto; }
  .why-desc { margin-left: auto; margin-right: auto; }
  .why-maker { justify-content: center; }
  .why-script { margin-left: 0; }
  .why-cta { display: inline-flex; }
  .why-photos { height: 420px; max-width: 500px; margin: 0 auto; width: 100%; }
  .why-photo--single { width: 300px; height: 420px; }
  /* Centring each row individually left the tick icons on a ragged edge.
     Centre the list as one block instead and keep the rows left-aligned. */
  .why-benefits {
    align-items: stretch;
    text-align: left;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .why-benefit p { margin: 0; }
  .why-benefit--compact { justify-content: flex-start; text-align: left; }

  /* Two even columns on small screens — the scattered offsets only read as
     intentional when there is room for them. */
  .collage { padding: 56px 0 64px; }
  .collage-header { margin-bottom: 32px; }
  .why-headline,
  .highlights-headline,
  .collage-headline { font-size: 28px; }
  .collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    aspect-ratio: auto;
    gap: 12px;
  }
  .collage-grid .collage-item {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
    margin-right: 0;
    aspect-ratio: 4 / 3;
  }
  .collage-grid .collage-item--3 { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .collage-item__name { padding: 20px 10px 8px; font-size: 12px; letter-spacing: 0.03em; }

  .pack { padding: 64px 0 72px; }
  .pack-inner {
    grid-template-columns: 1fr;
    row-gap: 48px;
    padding: 0 24px;
    justify-items: center;
  }
  .pack-stage { max-width: 340px; }
  .pack-stage__badge { width: 92px; height: 92px; top: -16px; right: -12px; }
  .pack-stage__badge strong { font-size: 30px; }
  .pack-text { max-width: 520px; text-align: center; }
  .pack-desc { margin-left: auto; margin-right: auto; }
  .pack-fact { text-align: left; }
  .pack-actions { justify-content: center; }
  .pack-cta { display: inline-flex; }
  .highlights { padding: 56px 0 64px; }

  .highlights-inner { grid-template-columns: 1fr; gap: 16px; }
  /* Let tiles grow with their copy instead of clipping it. */
  .tile { height: auto; min-height: 260px; padding-bottom: 32px; }
  .tile__content { max-width: 100%; }
  .tile__desc { max-width: 60%; }
  .tile__image { width: 150px; height: 150px; }

  .how-it-works { padding: 64px 0; }
  .how-it-works::before { width: 200px; height: 216px; top: 12px; left: -84px; }
  .how-it-works::after { width: 190px; height: 206px; bottom: 12px; right: -80px; }
  .how-headline { font-size: 32px; }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq { padding: 64px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .faq-col { gap: 28px; }

  .find-us__banner { height: 300px; padding-bottom: 0; }
  .find-us__headline { font-size: 26px; }
  .find-us__map-wrap { height: 320px; margin-top: 0; }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-top .footer-badge,
  .footer-top .footer-badge:last-child {
    justify-content: center;
    text-align: center;
    max-width: 100%;
  }
  .footer-top .footer-badge__text,
  .footer-top .footer-badge:last-child .footer-badge__text { align-items: center; }
  .footer-logo-link { order: -1; }
  .footer-cols {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 32px;
  }
  .footer-about-desc { margin-left: auto; margin-right: auto; }
  .footer-address { margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 390px) {
  .call-badge { padding: 10px; }
  .call-badge__text { display: none; }
  .hero-headline { font-size: 28px; }
  .cta-btn { display: block; max-width: 320px; text-align: center; margin-left: auto; margin-right: auto; }
  .script-accent { font-size: 32px; }

  .why-headline,
  .highlights-headline,
  .collage-headline { font-size: 25px; }
  .why-benefits { gap: 32px; }

  .pack-headline { font-size: 28px; }
  .pack-fact { padding: 14px 16px; gap: 12px; }
  .pack-fact__text strong { font-size: 16px; }

  .tile { height: auto; min-height: 220px; padding: 24px 24px 28px; }
  .tile__heading { font-size: 24px; }
  .tile__content { max-width: 100%; }
  .tile__desc { max-width: 62%; }
  .tile__wordmark { font-size: 90px; }
  .tile__image { width: 130px; height: 130px; }
  .tile__badge { top: 24px; right: 24px; }
  .tile__arrow-btn { bottom: 16px; right: 16px; width: 36px; height: 36px; }
  .why-photos { max-width: 320px; height: 340px; }
  .why-photo--single { width: 240px; height: 320px; }

  .how-it-works { padding: 40px 0; }
  .how-script { font-size: 36px; }
  .how-headline { font-size: 26px; }

  .faq-headline { font-size: 28px; }
  .faq-script { font-size: 36px; }
  .faq-item__btn span:last-child { font-size: 16px; }
  .faq-item__a > p { font-size: 14px; }
  .faq-col { gap: 28px; }

  .find-us__banner { height: 260px; }
  .find-us__headline { font-size: 22px; }
  .find-us__map-wrap { height: 280px; }

  .site-footer { padding: 40px 0; }
  .footer-logo { height: 48px; }
  .back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}
