/* =========================================================
   The Nourish Culture — stylesheet
   Palette extracted from TNC Logo.pdf + Menu.pdf
   ========================================================= */

:root {
  --forest: #013c37;
  --forest-2: #0a4a3f;
  --forest-deep: #012823;
  --lime: #8bc241;
  --lime-bright: #c0f870;
  --olive: #aaa633;
  --cream: #f8faf3;
  --white: #ffffff;
  --ink: #14241c;
  --muted: #5b6b62;
  --line: #e3e9de;
  --nonveg: #c1440e;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(1, 40, 35, 0.08);
  --shadow-md: 0 10px 30px rgba(1, 40, 35, 0.14);
  --shadow-lg: 0 24px 60px rgba(1, 40, 35, 0.22);

  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-script: "Sacramento", cursive;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-header :focus-visible,
.hero :focus-visible,
.visit :focus-visible,
.usp-card.feature :focus-visible {
  outline-color: var(--lime-bright);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.15;
  color: var(--forest);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--lime);
  background: rgba(139, 194, 65, 0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-top: 0.6rem;
}
.section-head p {
  margin-top: 0.7rem;
  font-size: 1.05rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--lime);
  color: var(--forest-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--lime-bright);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.03);
}
.btn-cta {
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.btn-cta .btn-subtext {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
}
.btn-pulse {
  position: relative;
  isolation: isolate;
  box-shadow: 0 0 18px rgba(139, 194, 65, 0.5), var(--shadow-sm);
  animation: btn-color-shift 2s ease-in-out infinite;
}
/* The expanding "radar ping" ring lives on its own pseudo-element so its
   animated transform can never fight with the button's own hover/active
   transform (an active CSS animation always wins the cascade for the
   property it drives, which would otherwise freeze the hover lift). */
.btn-pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid var(--lime-bright);
  z-index: -1;
  animation: btn-pulse-ring 1.6s ease-out infinite;
}
.btn-pulse:hover {
  animation-play-state: paused;
}
.btn-pulse:hover::before {
  animation-play-state: paused;
  opacity: 0;
}
@keyframes btn-pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes btn-color-shift {
  0%, 100% { background-color: var(--lime); }
  50% { background-color: var(--olive); }
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn-dark {
  background: var(--forest);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--forest-2);
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--lime), var(--lime-bright));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 100;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(1, 60, 55, 0.62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(1, 40, 35, 0.82);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .the {
  font-size: 0.7rem;
  color: var(--lime-bright);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-text .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--lime-bright);
  transition: width 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 600px at 85% -10%, rgba(139, 194, 65, 0.28), transparent 60%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.05;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-top {
  position: relative;
  text-align: center;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.hero-copy {
  max-width: 720px;
  margin-inline: auto;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-copy h1 span {
  background: linear-gradient(100deg, var(--lime) 10%, var(--lime-bright) 60%, #eafccb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .hindi {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.6rem;
}
.hero-copy p.lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  margin-top: 1.2rem;
  max-width: 46ch;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.2rem;
}
.hero-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.4rem;
}
.hero-tags span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}

.hero-banner {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-banner img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 40, 35, 0.4), transparent 35%);
  pointer-events: none;
}

/* ---------- USP strip ---------- */
.usp {
  background: var(--cream);
}
.usp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}
.usp-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--lime);
}
.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(139, 194, 65, 0.15);
  color: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.usp-icon svg {
  width: 24px;
  height: 24px;
}
.usp-card.feature {
  grid-column: 1;
  grid-row: 1 / span 3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.2rem;
  background: linear-gradient(155deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-color: transparent;
  color: var(--white);
}
.usp-card.feature:hover {
  border-color: var(--lime);
}
.usp-card.feature .usp-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lime-bright);
}
.usp-card.feature .usp-icon svg {
  width: 28px;
  height: 28px;
}
.usp-card.feature .usp-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.usp-card.feature .usp-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- About ---------- */
.about .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.about-art {
  position: relative;
}
.about-art::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(139, 194, 65, 0.22), transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}
.about-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 0.6rem;
}
.about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(1, 40, 35, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
}
.about-collage img:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(1, 40, 35, 0.3);
  z-index: 2;
  position: relative;
}
.about-collage img.tile-lg {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 16px;
}
.about-collage img.tile-wide {
  grid-column: span 2;
}
.about-collage img.tile-tall {
  grid-row: span 2;
}
.about-collage img:nth-child(1) { transition-delay: 0ms; }
.about-collage img:nth-child(2) { transition-delay: 60ms; }
.about-collage img:nth-child(3) { transition-delay: 120ms; }
.about-collage img:nth-child(4) { transition-delay: 180ms; }
.about-collage img:nth-child(5) { transition-delay: 240ms; }
.about-collage img:nth-child(6) { transition-delay: 300ms; }
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-stats div {
  display: flex;
  flex-direction: column;
}
.about-stats strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--lime);
}
.about-stats span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Menu section ---------- */
.menu {
  background: var(--white);
}
.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: sticky;
  top: 76px;
  z-index: 40;
  background: var(--white);
  padding: 1rem 0;
  transition: box-shadow 0.25s ease;
}
.menu-controls.stuck {
  box-shadow: 0 8px 16px -8px rgba(1, 40, 35, 0.12);
  border-bottom: 1px solid var(--line);
}
.menu-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.chip {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--forest);
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.chip:hover {
  border-color: var(--lime);
}
.chip.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.menu-tools {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.menu-search {
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  min-width: 220px;
  font-family: inherit;
}
.menu-search:focus {
  border-color: var(--lime);
}
.veg-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--forest);
}
.switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.switch .track {
  position: absolute;
  inset: 0;
  background: #d7ddd2;
  border-radius: 100px;
  transition: background 0.2s ease;
}
.switch .thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.switch input:checked ~ .track {
  background: var(--lime);
}
.switch input:checked ~ .thumb {
  transform: translateX(18px);
}

.menu-panels {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.menu-panel.hidden {
  display: none;
}
.menu-panel-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--forest), var(--forest-2));
  min-height: 130px;
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
}
.menu-panel-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.menu-panel-heading {
  position: relative;
  z-index: 2;
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
}
.menu-panel-heading .script {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--lime-bright);
  line-height: 1;
}
.menu-panel-heading .tagline {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1.5rem;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.6rem;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-item:hover {
  background: var(--cream);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.menu-item.hidden {
  display: none;
}
.menu-item-media {
  position: relative;
  flex-shrink: 0;
}
.menu-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(1, 40, 35, 0.18);
}
.veg-dot {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 1.6px solid var(--lime);
  border-radius: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.veg-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.veg-dot.nonveg {
  border-color: var(--nonveg);
}
.veg-dot.nonveg::after {
  background: var(--nonveg);
}
.menu-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.menu-item-name {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.98rem;
}
.menu-item-protein {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  white-space: nowrap;
}
.no-results {
  color: var(--muted);
  font-style: italic;
  padding: 0.6rem 0 0;
}

/* Quantity stepper */
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 0.2rem;
  flex-shrink: 0;
}
.qty-stepper.has-qty {
  border-color: var(--lime);
  background: rgba(139, 194, 65, 0.08);
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--forest);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.qty-btn:hover {
  background: var(--lime);
  color: var(--forest-deep);
}
.qty-btn:active {
  transform: scale(0.9);
}
.qty-btn svg {
  width: 13px;
  height: 13px;
}
.qty-value {
  min-width: 1.1rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--forest);
}
.qty-value.bump {
  animation: qty-bump 0.35s ease;
}
@keyframes qty-bump {
  0% { transform: scale(1); }
  45% { transform: scale(1.35); color: var(--lime); }
  100% { transform: scale(1); }
}

/* ---------- Combos ---------- */
.combos {
  background: var(--cream);
}
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.combo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.combo-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow-md);
  border-color: var(--lime);
}
.combo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}
.combo-card h3 {
  font-size: 1.12rem;
}
.price-badge {
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}
.combo-card p {
  font-size: 0.92rem;
  flex: 1;
}
.combo-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.combo-add-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.86rem;
}
.combo-in-cart-badge {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--forest);
  background: rgba(139, 194, 65, 0.18);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* ---------- Visit / Contact ---------- */
.visit {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.visit::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(170, 166, 51, 0.18), transparent 70%);
  top: -200px;
  right: -150px;
}
.visit::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.visit .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
}
.visit .section-head h2 {
  color: var(--white);
}
.visit .section-head p {
  color: rgba(255, 255, 255, 0.75);
}
.visit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.visit-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.visit-list .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(139, 194, 65, 0.18);
  color: var(--lime-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.visit-list .ico svg {
  width: 20px;
  height: 20px;
}
.visit-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.visit-list span.label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}
.visit-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.6rem;
  padding: 0.8rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-row a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
}
.social-row svg {
  width: 18px;
  height: 18px;
}

.visit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(6px);
}
.visit-card h3 {
  color: var(--white);
  font-size: 1.3rem;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}
.hours-list li strong {
  color: var(--lime-bright);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  height: 44px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
  max-width: 34ch;
  font-size: 0.9rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--lime-bright);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
}
.footer-credit {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Cart FAB + Drawer ---------- */
.cart-fab {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 70;
  background: var(--lime);
  color: var(--forest-deep);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
}
.cart-fab.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.cart-fab:hover {
  background: var(--lime-bright);
}
.cart-fab svg {
  width: 24px;
  height: 24px;
}
.cart-fab .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.cart-fab.pulse {
  animation: pulse 0.4s ease;
}
@keyframes pulse {
  50% { transform: scale(1.15); }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 40, 35, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 80;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 92vw);
  background: var(--white);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.4rem;
  background: var(--forest);
  color: var(--white);
}
.cart-drawer-head h3 {
  color: var(--white);
  font-size: 1.1rem;
}
.cart-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.cart-close svg {
  width: 16px;
  height: 16px;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cart-empty {
  color: var(--muted);
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.cart-line .qty-stepper,
.cart-line-price {
  margin-top: 0.1rem;
}
.cart-line-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
}
.cart-line-combo {
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cart-line-combo li {
  font-size: 0.78rem;
  color: var(--muted);
  padding-left: 0.85rem;
  position: relative;
}
.cart-line-combo li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lime);
}
.cart-line-price {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}
.cart-drawer-foot {
  padding: 1.2rem 1.4rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  color: var(--forest);
  font-size: 1.05rem;
}
.cart-drawer-actions {
  display: flex;
  gap: 0.6rem;
}
.cart-whatsapp {
  flex: 1;
  background: #25d366;
  color: var(--white);
}
.cart-whatsapp:hover {
  background: #1ebe5b;
}
.cart-clear {
  background: none;
  border: 1.5px solid var(--line);
  color: var(--muted);
  border-radius: 100px;
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.cart-clear:hover {
  border-color: var(--nonveg);
  color: var(--nonveg);
}

/* ---------- Combo builder modal ---------- */
.combo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 40, 35, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 95;
}
.combo-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.combo-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  width: min(480px, 92vw);
  max-height: 82vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.combo-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.combo-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1.1rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.combo-modal-head h3 {
  font-size: 1.25rem;
}
.combo-modal-price {
  display: inline-block;
  margin-top: 0.3rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--lime);
}
.combo-modal-close {
  background: var(--cream);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  flex-shrink: 0;
}
.combo-modal-close:hover {
  background: var(--lime);
  color: var(--forest-deep);
}
.combo-modal-close svg {
  width: 16px;
  height: 16px;
}
.combo-modal-body {
  padding: 1.2rem 1.4rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.combo-slot h4 {
  font-size: 0.92rem;
  color: var(--forest);
  margin-bottom: 0.65rem;
}
.combo-slot-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.combo-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.combo-option:hover {
  border-color: var(--lime);
}
.combo-option.selected {
  border-color: var(--lime);
  background: rgba(139, 194, 65, 0.08);
}
.combo-option input {
  accent-color: var(--lime);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.combo-option-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
  flex: 1;
}
.combo-option-protein {
  font-size: 0.76rem;
  color: var(--muted);
  white-space: nowrap;
}
.combo-modal-foot {
  padding: 1rem 1.4rem 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}
.combo-modal-hint {
  font-size: 0.78rem;
  color: var(--muted);
}
.combo-modal-confirm:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--forest);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal timing for grids of repeating cards */
.usp-grid .usp-card:nth-child(1) { transition-delay: 0ms; }
.usp-grid .usp-card:nth-child(2) { transition-delay: 90ms; }
.usp-grid .usp-card:nth-child(3) { transition-delay: 180ms; }
.usp-grid .usp-card:nth-child(4) { transition-delay: 270ms; }

.combo-grid .combo-card:nth-child(1) { transition-delay: 0ms; }
.combo-grid .combo-card:nth-child(2) { transition-delay: 60ms; }
.combo-grid .combo-card:nth-child(3) { transition-delay: 120ms; }
.combo-grid .combo-card:nth-child(4) { transition-delay: 180ms; }
.combo-grid .combo-card:nth-child(5) { transition-delay: 240ms; }
.combo-grid .combo-card:nth-child(6) { transition-delay: 300ms; }
.combo-grid .combo-card:nth-child(n+7) { transition-delay: 360ms; }

.menu-list .menu-item:nth-child(1),
.menu-list .menu-item:nth-child(2) { transition-delay: 0ms; }
.menu-list .menu-item:nth-child(3),
.menu-list .menu-item:nth-child(4) { transition-delay: 70ms; }
.menu-list .menu-item:nth-child(5),
.menu-list .menu-item:nth-child(6) { transition-delay: 140ms; }
.menu-list .menu-item:nth-child(n+7) { transition-delay: 210ms; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-art {
    max-width: 520px;
    margin-inline: auto;
  }
  .visit .container {
    grid-template-columns: 1fr;
  }
  .combo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .usp-card.feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 1rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-cta .btn-outline {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .menu-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.65rem 0;
  }
  .menu-chips {
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .menu-chips::-webkit-scrollbar {
    display: none;
  }
  .chip {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .menu-tools {
    flex-wrap: nowrap;
    gap: 0.7rem;
    width: 100%;
    min-width: 0;
  }
  .menu-search {
    flex: 1;
    min-width: 0;
  }
  .veg-filter {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.8rem;
  }
  .menu-list {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-collage {
    grid-auto-rows: 85px;
  }
  .combo-grid {
    grid-template-columns: 1fr;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .menu-panel-heading .script {
    font-size: 2.2rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-pulse {
    animation: none;
  }
  .btn-pulse::before {
    display: none;
  }
  .scroll-progress,
  .menu-controls,
  .combo-modal,
  .combo-modal-overlay {
    transition: none;
  }
}
