/* =========================================================
   MAZALA DOSA — Vibrant South Indian Street Food
   Palette inspired by the logo: teal pan, saffron, chili red
   ========================================================= */

:root {
  --saffron: #F5B82E;
  --saffron-light: #FFD23F;
  --saffron-deep: #E89A1A;
  --teal: #1F4F4A;
  --teal-dark: #0E2E2A;
  --chili: #C8341A;
  --chili-deep: #8B1E10;
  --leaf: #4A7C28;
  --cream: #FFF7E3;
  --cream-warm: #FBE9C2;
  --ink: #1A1208;
  --muted: #6B5B3A;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(26, 18, 8, 0.18);
  --shadow-soft: 0 4px 14px rgba(26, 18, 8, 0.10);
  --radius: 14px;
  --radius-lg: 28px;
  --container: 1200px;
  --font-display: 'Anton', 'Bebas Neue', 'Arial Black', Impact, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--chili);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--chili-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  color: var(--teal-dark);
  line-height: 1.05;
  margin: 0 0 .5em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { margin: 0 0 1em; }

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

.section {
  padding: 90px 0;
}

.section-tight { padding: 60px 0; }

.eyebrow {
  font-family: var(--font-script);
  color: var(--chili);
  font-size: 1.6rem;
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 6px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 3px solid var(--teal-dark);
  transition: transform .15s, box-shadow .15s, background .2s, color .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--saffron);
  color: var(--teal-dark);
  box-shadow: 4px 4px 0 var(--teal-dark);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--teal-dark);
  background: var(--saffron-light);
  color: var(--teal-dark);
}
.btn-secondary {
  background: var(--teal);
  color: var(--saffron);
  box-shadow: 4px 4px 0 var(--chili);
}
.btn-secondary:hover {
  background: var(--teal-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--chili);
  color: var(--saffron-light);
}
.btn-ghost {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn-ghost:hover {
  background: var(--teal-dark);
  color: var(--saffron);
}

/* ================= TOP STRIP ================= */
.topstrip {
  background: var(--teal-dark);
  color: var(--saffron);
  font-size: 0.85rem;
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
}
.topstrip span { color: var(--saffron-light); margin: 0 12px; }
.topstrip a { color: var(--saffron); text-decoration: underline; }

/* ================= NAV ================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 4px solid var(--teal-dark);
  box-shadow: 0 2px 0 var(--saffron);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 74px;
  width: 74px;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid var(--teal-dark);
  box-shadow: 3px 3px 0 var(--saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--chili);
  border-bottom-color: var(--saffron);
}

.nav-toggle {
  display: none;
  background: var(--teal-dark);
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--saffron);
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 4px solid var(--teal-dark);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(31, 79, 74, .15);
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
  }
  .nav-cta { margin-top: 12px; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 210, 63, .55), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 52, 26, .25), transparent 60%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(31, 79, 74, .06) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(31, 79, 74, .04) 2px, transparent 3px);
  background-size: 80px 80px, 120px 120px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  color: var(--teal-dark);
}
.hero h1 .accent {
  color: var(--chili);
  display: block;
}
.hero-tagline {
  font-family: var(--font-script);
  color: var(--chili);
  font-size: 1.8rem;
  margin-bottom: 10px;
  transform: rotate(-2deg);
  display: inline-block;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-image {
  position: relative;
  text-align: center;
}
.hero-image img {
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(8px 12px 24px rgba(31, 79, 74, .35));
  animation: float 6s ease-in-out infinite;
}

/* ============= MAZI COOKING ILLUSTRATION (About page) ============= */
.mazi-cooking-wrap {
  border-radius: var(--radius-lg);
  border: 4px solid var(--teal-dark);
  box-shadow: 10px 10px 0 var(--saffron);
  overflow: hidden;
  background: var(--cream);
}
.mazi-cooking-svg {
  width: 100%;
  height: auto;
  display: block;
}
/* Mazi himself gently bobs */
.cook-mazi {
  transform-origin: center;
  animation: cook-bob 4.5s ease-in-out infinite;
}
@keyframes cook-bob {
  0%, 100% { transform: translate(150px, 110px) rotate(-2deg); }
  50%      { transform: translate(150px, 105px) rotate(2deg); }
}
/* Eyes blink */
.cook-eyes {
  transform-box: fill-box;
  transform-origin: center;
  animation: cook-blink 5s ease-in-out infinite;
}
@keyframes cook-blink {
  0%, 93%, 100% { transform: scaleY(1); }
  95%, 97%      { transform: scaleY(0.05); }
}
/* Plate rises and falls slightly with him */
.cook-plate {
  transform-box: fill-box;
  transform-origin: 250px 340px;
  animation: cook-plate-bob 4.5s ease-in-out infinite;
}
@keyframes cook-plate-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
/* Steam wisps rise and fade */
.cook-steam path {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: cook-steam 2.4s ease-out infinite;
}
.cook-steam path:nth-child(2) { animation-delay: 0.6s; }
.cook-steam path:nth-child(3) { animation-delay: 1.2s; }
@keyframes cook-steam {
  0%   { opacity: 0;   transform: translateY(0)   scaleX(0.6); }
  30%  { opacity: 0.8; transform: translateY(-10px) scaleX(1); }
  100% { opacity: 0;   transform: translateY(-40px) scaleX(1.4); }
}
/* Sparkles twinkle in and out */
.cook-spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: cook-twinkle 2.2s ease-in-out infinite;
}
.cook-spark-2 { animation-delay: 0.7s; }
.cook-spark-3 { animation-delay: 1.4s; }
@keyframes cook-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(-10deg); }
  50%      { opacity: 1;   transform: scale(1.2) rotate(10deg); }
}
/* Speech bubble subtle wiggle */
.cook-bubble {
  transform-box: fill-box;
  transform-origin: 200px 150px;
  animation: cook-bubble-pulse 3s ease-in-out infinite;
}
@keyframes cook-bubble-pulse {
  0%, 100% { transform: scale(1) rotate(-1deg); }
  50%      { transform: scale(1.04) rotate(1deg); }
}

/* ============= MEET MAZI SECTION ============= */
.mazi-section {
  position: relative;
  overflow: hidden;
}
.mazi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 184, 46, .15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 52, 26, .15), transparent 50%);
  pointer-events: none;
}
.mazi-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mazi-section-art {
  text-align: center;
}
.mazi-section-art svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.4));
  animation: mazi-float 5s ease-in-out infinite;
}
.mazi-section-copy h2 { color: var(--saffron); }
.mazi-section-copy p {
  color: var(--cream);
  font-size: 1.05rem;
}
.mazi-job-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.mazi-job-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 247, 227, 0.06);
  padding: 14px 18px;
  border-radius: var(--radius);
  border-left: 3px solid var(--saffron);
}
.mazi-job-list li span {
  font-size: 1.8rem;
  line-height: 1;
}
.mazi-job-list li div { color: var(--cream); font-size: 0.95rem; }
.mazi-job-list li strong {
  display: block;
  color: var(--saffron);
  font-family: var(--font-display);
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .mazi-section-grid { grid-template-columns: 1fr; gap: 30px; }
  .mazi-section-art svg { max-width: 220px; }
}

/* ============= FLOATING MAZI MASCOT ============= */
.mazi-bot {
  position: fixed;
  right: 24px;
  bottom: 20px;
  width: 120px;
  z-index: 90;
  text-decoration: none;
  display: block;
  animation: mazi-float 5s ease-in-out infinite;
  filter: drop-shadow(0 18px 22px rgba(14, 46, 42, .25));
  cursor: pointer;
  transition: transform .25s ease;
  background: transparent;
  border: none;
  padding: 0;
}
.mazi-bot:hover {
  transform: scale(1.06) translateY(-4px);
}
.mazi-svg {
  width: 100%;
  height: auto;
  display: block;
  animation: mazi-sway 7s ease-in-out infinite;
  transform-origin: 50% 90%;
  overflow: visible;
}

/* Big head wobble — main cuteness driver */
.mazi-head {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: mazi-head-wobble 3.6s ease-in-out infinite;
}
@keyframes mazi-head-wobble {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}

/* Antennae wiggle independently */
.mazi-antenna-l {
  transform-box: fill-box;
  transform-origin: 78px 40px;
  animation: mazi-ant-wiggle 1.8s ease-in-out infinite;
}
.mazi-antenna-r {
  transform-box: fill-box;
  transform-origin: 162px 40px;
  animation: mazi-ant-wiggle 2.1s ease-in-out infinite reverse;
}
@keyframes mazi-ant-wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

/* Sparkles twinkle in and out */
.mazi-sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: mazi-twinkle 2.2s ease-in-out infinite;
}
.mazi-sparkle-2 { animation-delay: 1.1s; animation-duration: 1.9s; }
@keyframes mazi-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.7) rotate(-15deg); }
  50%      { opacity: 1;   transform: scale(1.1) rotate(15deg); }
}

/* The whole bot hovers up and down */
@keyframes mazi-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
/* And sways gently side to side */
@keyframes mazi-sway {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}

/* Eyes blink */
.mazi-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: mazi-blink 4.5s ease-in-out infinite;
}
@keyframes mazi-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  94%, 96%      { transform: scaleY(0.05); }
}

/* The two side trays bob with their own subtle rhythm */
.mazi-tray {
  transform-box: fill-box;
  transform-origin: center;
}
.mazi-tray-left  { animation: mazi-tray-l 3.5s ease-in-out infinite; }
.mazi-tray-right { animation: mazi-tray-r 3.8s ease-in-out infinite; }
@keyframes mazi-tray-l {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-3px) rotate(1deg); }
}
@keyframes mazi-tray-r {
  0%, 100% { transform: translateY(-1px) rotate(1deg); }
  50%      { transform: translateY(2px) rotate(-1deg); }
}

/* Speech bubble (shown on hover) */
.mazi-speech {
  position: absolute;
  right: 100%;
  top: 30%;
  margin-right: 12px;
  background: var(--saffron);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2.5px solid var(--teal-dark);
  box-shadow: 3px 3px 0 var(--teal-dark);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px) scale(0.92);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.mazi-speech::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--teal-dark);
}
.mazi-speech span {
  color: var(--chili);
  margin-left: 4px;
}
.mazi-bot:hover .mazi-speech {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Reduced motion: park Mazi, no animations */
@media (prefers-reduced-motion: reduce) {
  .mazi-bot,
  .mazi-svg,
  .mazi-eye,
  .mazi-tray-left,
  .mazi-tray-right { animation: none; }
}

/* Smaller on mobile, tuck into corner */
@media (max-width: 600px) {
  .mazi-bot { width: 88px; right: 12px; bottom: 12px; }
  .mazi-speech { font-size: 0.7rem; padding: 7px 12px; }
}

/* ============= MAZI CHAT PANEL ============= */
.mazi-chat {
  position: fixed;
  right: 24px;
  bottom: 160px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 200px);
  background: var(--cream);
  border: 3px solid var(--teal-dark);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(14, 46, 42, .35), 6px 6px 0 var(--saffron);
  z-index: 95;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mazi-chat.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mazi-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--teal-dark);
  color: var(--cream);
  border-bottom: 3px solid var(--saffron);
}
.mazi-chat-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.mazi-chat-avatar svg { width: 100%; height: 100%; }
.mazi-chat-header strong {
  display: block;
  font-family: var(--font-display);
  color: var(--saffron);
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
}
.mazi-chat-header span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 247, 227, 0.85);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.mazi-chat-header em {
  color: #7FE6E0;
  font-style: normal;
  font-weight: 700;
}
.mazi-chat-header em::before {
  content: '●';
  margin-right: 4px;
  animation: mazi-pulse 1.4s ease-in-out infinite;
}
@keyframes mazi-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.mazi-chat-close {
  margin-left: auto;
  background: var(--saffron);
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .15s;
}
.mazi-chat-close:hover { transform: rotate(90deg); }

.mazi-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.mazi-chat-body::-webkit-scrollbar { width: 6px; }
.mazi-chat-body::-webkit-scrollbar-thumb {
  background: var(--saffron-deep);
  border-radius: 3px;
}

.mazi-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
  word-wrap: break-word;
  animation: mazi-msg-in .25s ease;
}
@keyframes mazi-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mazi-msg-bot {
  background: var(--white);
  border: 2px solid var(--teal-dark);
  border-bottom-left-radius: 4px;
  color: var(--ink);
  align-self: flex-start;
}
.mazi-msg-user {
  background: var(--chili);
  color: var(--saffron);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.mazi-msg a {
  color: var(--chili);
  text-decoration: underline;
  font-weight: 600;
}
.mazi-msg-bot a:hover { color: var(--chili-deep); }
.mazi-msg ul {
  margin: 6px 0 2px;
  padding-left: 18px;
}
.mazi-msg ul li { margin-bottom: 3px; }
.mazi-msg strong { color: var(--teal-dark); }
.mazi-msg-bot .price-pill {
  display: inline-block;
  background: var(--saffron);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 0.8rem;
  padding: 1px 8px;
  border-radius: 999px;
  margin-left: 6px;
}
.mazi-msg-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--saffron);
  color: var(--teal-dark) !important;
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--teal-dark);
  text-decoration: none !important;
  letter-spacing: 1px;
  box-shadow: 2px 2px 0 var(--teal-dark);
}
.mazi-msg-cta:hover {
  background: var(--saffron-light);
  transform: translate(-1px,-1px);
  box-shadow: 3px 3px 0 var(--teal-dark);
}

.mazi-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
}
.mazi-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: mazi-dots 1s infinite ease-in-out;
}
.mazi-typing span:nth-child(2) { animation-delay: 0.15s; }
.mazi-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes mazi-dots {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1; }
}

.mazi-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 4px;
  border-top: 1px dashed rgba(31, 79, 74, 0.3);
}
.mazi-chip {
  background: var(--cream-warm);
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.mazi-chip:hover {
  background: var(--saffron);
  transform: translateY(-1px);
}

.mazi-chat-input {
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 2px solid var(--teal-dark);
  background: var(--white);
}
.mazi-chat-input input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.mazi-chat-input input:focus { border-color: var(--chili); }
.mazi-chat-input button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--chili);
  color: var(--saffron);
  border: 2px solid var(--teal-dark);
  cursor: pointer;
  font-size: 1.05rem;
  transition: transform .15s, background .15s;
}
.mazi-chat-input button:hover {
  background: var(--chili-deep);
  transform: scale(1.06);
}

/* Mobile: fullscreen-ish chat */
@media (max-width: 600px) {
  .mazi-chat {
    right: 8px;
    left: 8px;
    bottom: 110px;
    width: auto;
    height: calc(100vh - 140px);
    max-height: none;
  }
}

/* ============= PATROLLING TUK-TUK ============= */
.tuk-tuk {
  position: absolute;
  /* Sits in the lower-middle of the hero so it drives across BOTH the text
     on the left and the polaroid stack on the right. */
  bottom: 30%;
  left: 0;
  width: 155px;
  /* Above polaroids (z-index 1-4), badges, sparks, and hero text */
  z-index: 50;
  pointer-events: none;
  /* OUTER wrapper handles the horizontal travel */
  animation: tuk-patrol 22s ease-in-out infinite;
  will-change: transform;
}
/* INNER wrapper handles the facing-direction flip */
.tuk-tuk-inner {
  width: 100%;
  height: 100%;
  animation: tuk-flip 22s ease-in-out infinite;
  transform-origin: center;
}
.tuk-tuk-svg {
  width: 100%;
  height: auto;
  display: block;
  animation: tuk-bounce 0.42s ease-in-out infinite;
  filter: drop-shadow(3px 8px 10px rgba(14, 46, 42, .3));
}

/* Patrol path: drive right → pause → drive back → pause. Loops forever. */
@keyframes tuk-patrol {
  0%   { transform: translateX(-220px); }        /* off-screen left */
  35%  { transform: translateX(calc(100vw - 240px)); }  /* right edge */
  45%  { transform: translateX(calc(100vw - 240px)); }  /* pause */
  55%  { transform: translateX(calc(100vw - 240px)); }  /* still pausing (flip happens here) */
  90%  { transform: translateX(-200px); }        /* back to left */
  95%  { transform: translateX(-200px); }        /* pause */
  100% { transform: translateX(-200px); }        /* still pausing (flip back) */
}

/* Flip facing direction synchronously with the patrol */
@keyframes tuk-flip {
  0%, 47%  { transform: scaleX(1); }   /* facing right */
  48%      { transform: scaleX(0); }   /* squash to flip */
  53%, 92% { transform: scaleX(-1); }  /* facing left */
  93%      { transform: scaleX(0); }   /* squash to flip back */
  98%, 100% { transform: scaleX(1); }  /* facing right again */
}

/* Suspension bounce */
@keyframes tuk-bounce {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50%      { transform: translateY(-2.5px) rotate(0.4deg); }
}

/* Wheels spin (always clockwise — the body flips, wheels still roll forward visually) */
.tuk-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: tuk-spin 0.5s linear infinite;
}
@keyframes tuk-spin { to { transform: rotate(360deg); } }

/* Exhaust puff clouds (sit at the back-wheel area on the left side of the SVG) */
.tuk-puff {
  position: absolute;
  bottom: 22px;
  left: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(31, 79, 74, 0.22);
  opacity: 0;
  animation: tuk-puff 1.5s ease-out infinite;
}
.tuk-puff-1 { animation-delay: 0s; }
.tuk-puff-2 { animation-delay: 0.5s; left: -22px; }
.tuk-puff-3 { animation-delay: 1s;  left: -34px; }
@keyframes tuk-puff {
  0%   { transform: translate(0,0) scale(0.5); opacity: 0.5; }
  100% { transform: translate(-30px, -28px) scale(1.7); opacity: 0; }
}

/* Reduced-motion users get a parked tuk-tuk */
@media (prefers-reduced-motion: reduce) {
  .tuk-tuk,
  .tuk-tuk-inner,
  .tuk-tuk-svg,
  .tuk-wheel,
  .tuk-puff { animation: none; }
  .tuk-tuk { transform: translateX(15vw); }
}

/* Smaller on mobile, lower position so it doesn't obscure the hero text */
@media (max-width: 900px) {
  .tuk-tuk { width: 130px; bottom: 20%; }
}
@media (max-width: 600px) {
  .tuk-tuk { width: 105px; bottom: 14%; }
}

/* ============= HERO COLLAGE (polaroid stack) ============= */
.hero-collage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  perspective: 1200px;
}

.polaroid {
  position: absolute;
  background: #FFFCF2;
  padding: 14px 14px 18px;
  border-radius: 6px;
  box-shadow:
    0 18px 40px -10px rgba(14, 46, 42, .45),
    0 6px 14px rgba(14, 46, 42, .2);
  border: 1px solid rgba(31, 79, 74, .15);
  transition: transform .35s ease;
}
.polaroid img,
.polaroid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  background: var(--cream-warm);
  /* the magic: makes any food photo look professionally edited */
  filter: saturate(1.15) contrast(1.08) brightness(1.02);
}

/* Front, main hero card */
.polaroid-front {
  top: 8%;
  left: 12%;
  width: 70%;
  aspect-ratio: 4 / 5;
  transform: rotate(-3deg);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.polaroid-front img,
.polaroid-front video {
  aspect-ratio: 4 / 5;
}
.polaroid-front:hover {
  transform: rotate(-1deg) scale(1.02);
}
.polaroid-caption {
  margin-top: 12px;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--teal-dark);
  text-align: center;
  line-height: 1;
}
.polaroid-caption span {
  display: inline-block;
  margin-left: 8px;
  background: var(--chili);
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  transform: translateY(-3px);
}

/* Back-left smaller card */
.polaroid-back-left {
  top: 2%;
  left: -4%;
  width: 42%;
  aspect-ratio: 1 / 1;
  transform: rotate(-12deg);
  z-index: 1;
}
.polaroid-back-left img { aspect-ratio: 1 / 1; }

/* Back-right smaller card */
.polaroid-back-right {
  bottom: 4%;
  right: -2%;
  width: 38%;
  aspect-ratio: 1 / 1;
  transform: rotate(10deg);
  z-index: 2;
}
.polaroid-back-right img { aspect-ratio: 1 / 1; }

/* Floating chili-red stamp */
.hero-stamp {
  position: absolute;
  bottom: 6%;
  left: -6%;
  background: var(--chili);
  color: var(--saffron);
  padding: 12px 22px;
  border-radius: 999px;
  border: 3px solid var(--teal-dark);
  box-shadow: 5px 5px 0 var(--teal-dark);
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-align: center;
  z-index: 4;
  line-height: 1.1;
  transform: rotate(-8deg);
}
.hero-stamp span {
  display: block;
  font-size: 0.62rem;
  color: var(--saffron-light);
  font-weight: 400;
  letter-spacing: 3px;
}
.hero-stamp strong {
  display: block;
  font-size: 1.05rem;
  color: var(--saffron);
}

/* Sparks */
.hero-spark {
  position: absolute;
  color: var(--chili);
  font-size: 1.8rem;
  z-index: 4;
  animation: sparkle 2.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-spark-1 { top: -2%; right: 8%; animation-delay: 0s; }
.hero-spark-2 { bottom: 30%; right: -4%; color: var(--saffron-deep); animation-delay: .8s; }
.hero-spark-3 { top: 38%; left: -8%; color: var(--teal-dark); animation-delay: 1.6s; }
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .9; }
  50% { transform: scale(1.4) rotate(15deg); opacity: 1; }
}

@media (max-width: 900px) {
  .hero-collage { max-width: 420px; }
  .hero-stamp { left: 0; bottom: 0; }
}
@media (max-width: 480px) {
  .hero-collage { max-width: 340px; }
  .polaroid-caption { font-size: 1.2rem; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px dashed var(--teal);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--chili);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-tagline { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
}

/* ================= MARQUEE / SPICE STRIP ================= */
.spice-strip {
  background: var(--chili);
  color: var(--saffron);
  padding: 18px 0;
  overflow: hidden;
  font-family: var(--font-display);
  letter-spacing: 4px;
  font-size: 1.3rem;
  border-top: 4px solid var(--teal-dark);
  border-bottom: 4px solid var(--teal-dark);
}
.spice-strip-track {
  display: flex;
  gap: 50px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.spice-strip-track span::after {
  content: '\2726';
  color: var(--saffron-light);
  margin-left: 50px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= SECTION HEADERS ================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ================= CARDS / GRIDS ================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 3px solid var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--saffron);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--saffron);
}
.feature-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  border: 3px solid var(--teal-dark);
}

/* Dish card for "featured" sections */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--teal-dark);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s;
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card-img {
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.dish-card-img img,
.dish-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--cream-warm);
}
.card-video {
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
}
.dish-card-img .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--chili);
  color: var(--saffron);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--teal-dark);
  box-shadow: 2px 2px 0 var(--teal-dark);
}
.dish-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.dish-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.dish-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px dashed var(--saffron);
}
.dish-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--chili);
}

/* ================= MENU ================= */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.menu-filter {
  background: var(--white);
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .2s;
}
.menu-filter:hover { background: var(--cream-warm); }
.menu-filter.active {
  background: var(--teal-dark);
  color: var(--saffron);
}

.menu-section {
  margin-bottom: 60px;
}
.menu-section-head {
  text-align: center;
  margin-bottom: 36px;
}
.menu-section-head h2 {
  color: var(--chili);
  position: relative;
  display: inline-block;
  padding: 0 30px;
}
.menu-section-head h2::before,
.menu-section-head h2::after {
  content: '\2726';
  color: var(--saffron-deep);
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.menu-section-head h2::before { left: 0; }
.menu-section-head h2::after { right: 0; }
.menu-section-head .desc {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 22px 36px;
}

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 2px dotted var(--saffron-deep);
}
.menu-item .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--teal-dark);
}
.menu-item-body { min-width: 0; }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 6px;
}
.menu-item-head h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  letter-spacing: .5px;
  color: var(--teal-dark);
}
.menu-item-head .price {
  font-family: var(--font-display);
  color: var(--chili);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.menu-item-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.tag-veg { background: rgba(74, 124, 40, .15); color: var(--leaf); border: 1px solid var(--leaf); }
.tag-vegan { background: rgba(74, 124, 40, .25); color: var(--leaf); border: 1px solid var(--leaf); }
.tag-gf { background: rgba(245, 184, 46, .25); color: var(--saffron-deep); border: 1px solid var(--saffron-deep); }
.tag-spicy { background: rgba(200, 52, 26, .15); color: var(--chili-deep); border: 1px solid var(--chili); }

/* Menu note (small note under section) */
.menu-note {
  background: rgba(245, 184, 46, .2);
  border: 2px dashed var(--saffron-deep);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* ================= ABOUT ================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius-lg);
  border: 4px solid var(--teal-dark);
  box-shadow: 10px 10px 0 var(--saffron);
}
.about-grid.flip { direction: rtl; }
.about-grid.flip > * { direction: ltr; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 4px solid var(--saffron);
  box-shadow: var(--shadow-soft);
}
.team-card h4 {
  font-family: var(--font-display);
  margin: 0 0 4px;
  color: var(--teal-dark);
}
.team-card span {
  font-family: var(--font-script);
  color: var(--chili);
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-grid.flip { direction: ltr; }
}

/* ================= GALLERY ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 3px solid var(--teal-dark);
  cursor: pointer;
  background: var(--cream-warm);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
  background: var(--cream-warm);
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-video {
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
}
/* Video gallery items don't open the lightbox — hide the magnifier */
.gallery-item-video { cursor: default; }
.gallery-item-video::after { display: none !important; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item::after {
  content: '\2316';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31, 79, 74, .85);
  color: var(--saffron);
  display: grid;
  place-items: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity .2s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 46, 42, .94);
  display: none;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border: 4px solid var(--saffron);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--saffron);
  color: var(--teal-dark);
  border: 3px solid var(--teal-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--saffron-light);
}

/* ================= FORMS ================= */
.form-card {
  background: var(--white);
  border: 4px solid var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 10px 10px 0 var(--saffron);
}
.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--teal-dark);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--teal);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--chili);
  box-shadow: 0 0 0 3px rgba(200, 52, 26, .2);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Tabs (order/reserve) */
.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--teal-dark);
}
.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 6px solid transparent;
  margin-bottom: -3px;
  transition: color .2s, border-color .2s, background .2s;
}
.tab-btn.active {
  color: var(--teal-dark);
  border-bottom-color: var(--chili);
  background: var(--cream-warm);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Order item picker */
.order-item-list {
  background: var(--cream-warm);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 16px;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 18px;
}
.order-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--teal);
}
.order-item-row:last-child { border-bottom: none; }
.order-item-row strong { font-family: var(--font-display); }
.order-item-row .price { color: var(--chili); font-weight: 600; }
.qty-input {
  width: 60px !important;
  text-align: center;
  padding: 6px !important;
}
.order-summary {
  background: var(--teal-dark);
  color: var(--saffron);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* ================= INFO CARDS (CONTACT) ================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--teal-dark);
  text-align: center;
}
.info-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--chili);
  color: var(--saffron);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.info-card h4 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  color: var(--teal-dark);
  letter-spacing: 1px;
}
.info-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.info-card a { color: var(--chili); font-weight: 600; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--teal-dark);
  box-shadow: 10px 10px 0 var(--saffron);
  aspect-ratio: 16 / 9;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= CTA BANNER ================= */
.cta-banner {
  background:
    radial-gradient(ellipse at top, rgba(255,210,63,.25), transparent 60%),
    var(--teal-dark);
  color: var(--saffron);
  padding: 80px 0;
  text-align: center;
  border-top: 4px solid var(--saffron);
  border-bottom: 4px solid var(--saffron);
}
.cta-banner h2 { color: var(--saffron); }
.cta-banner p { color: var(--cream); max-width: 600px; margin: 0 auto 28px; }

/* ================= TESTIMONIALS ================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--teal-dark);
  box-shadow: 6px 6px 0 var(--chili);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -28px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--saffron);
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
}
.testimonial cite {
  font-family: var(--font-display);
  color: var(--chili);
  font-style: normal;
  letter-spacing: 1px;
  font-size: 1.05rem;
}
.stars {
  color: var(--saffron-deep);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 70px 0 20px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--saffron) 0 20px,
    var(--chili) 20px 40px
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--saffron);
  font-family: var(--font-display);
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.footer a { color: var(--cream); }
.footer a:hover { color: var(--saffron-light); }
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li { margin-bottom: 10px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid var(--saffron);
  box-shadow: 3px 3px 0 var(--chili);
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--saffron);
  display: grid;
  place-items: center;
  color: var(--saffron);
  transition: background .2s, transform .2s;
}
.socials a:hover {
  background: var(--saffron);
  color: var(--teal-dark);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(245, 184, 46, .25);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 247, 227, .7);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================= PAGE HEADER (for inner pages) ================= */
.page-header {
  background:
    radial-gradient(ellipse at center, rgba(255,210,63,.4), transparent 60%),
    var(--cream-warm);
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: 4px solid var(--teal-dark);
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--chili) 0 20px,
    var(--saffron) 20px 40px
  );
}
.page-header h1 {
  margin-bottom: 6px;
}
.page-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.crumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ================= UTILITY ================= */
.text-center { text-align: center; }
.mt-4 { margin-top: 28px; }
.divider {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--saffron) 0 12px, transparent 12px 24px);
  margin: 30px 0;
}
.bg-cream-warm { background: var(--cream-warm); }
.bg-teal { background: var(--teal-dark); color: var(--cream); }
.bg-teal h2, .bg-teal h3 { color: var(--saffron); }

/* Menu page quick links to drinks + allergens */
.menu-quicklinks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.menu-quicklinks .btn { padding: 12px 22px; font-size: .95rem; }

/* =========================================================
   ALLERGENS PAGE
   ========================================================= */

.allergen-alert {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff8e1 0%, #fbe9c2 100%);
  border-left: 6px solid var(--chili);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-soft);
}
.allergen-alert-icon {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--chili);
}
.allergen-alert h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--chili-deep);
  margin: 0 0 8px;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.allergen-alert p { margin: 0 0 18px; color: var(--ink); line-height: 1.55; }
.allergen-alert-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all .2s;
}
.btn-outline:hover { background: var(--teal); color: var(--cream); }

/* Filter chips */
.diet-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.diet-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.diet-chip {
  border: 2px solid var(--teal);
  background: var(--white);
  color: var(--teal-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.diet-chip:hover { background: var(--cream-warm); }
.diet-chip.active { background: var(--teal); color: var(--saffron); border-color: var(--teal); }
.diet-chip.active .chip-count { background: var(--saffron); color: var(--teal-dark); }
.chip-count {
  background: var(--cream-warm);
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: .8rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}
.diet-search {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
}
.diet-search input {
  width: 100%;
  border: 2px solid var(--cream-warm);
  background: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s;
}
.diet-search input:focus {
  outline: none;
  border-color: var(--saffron);
}
.diet-result {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
  font-size: .95rem;
}

/* Allergen cards (grouped by category) */
.allergen-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--cream-warm);
}
.allergen-cat-head h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.5rem;
}
.allergen-cat-head span {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.allergen-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
}
.allergen-card {
  background: var(--white);
  border: 1px solid rgba(31, 79, 74, 0.10);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.allergen-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.allergen-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.allergen-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--teal-dark);
  font-family: var(--font-display);
  letter-spacing: .5px;
}
.allergen-card .ingredients {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}
.allergen-card .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .8px;
  line-height: 1;
}
.tag-ve { background: #e6f4d8; color: #356b1f; }
.tag-gf { background: #fff0d0; color: #8d5b00; }
.tag-df { background: #d9efef; color: #14524e; }

.allergens-list { display: flex; flex-wrap: wrap; gap: 6px; }
.allergen-badge {
  display: inline-flex;
  align-items: center;
  font-size: .73rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: #f8edd9;
  color: var(--ink);
  border: 1px solid rgba(232, 154, 26, 0.30);
}
.allergen-badge.a-none {
  background: #e6f4d8;
  color: #356b1f;
  border-color: rgba(53, 107, 31, 0.30);
}
.allergen-badge.a-milk    { background:#e6f0ff; color:#1a3d72; border-color:#b8cfee; }
.allergen-badge.a-gluten  { background:#fdebd0; color:#8d4a00; border-color:#f0c896; }
.allergen-badge.a-eggs    { background:#fffae0; color:#8a6700; border-color:#f5e2a0; }
.allergen-badge.a-fish, .allergen-badge.a-crustaceans, .allergen-badge.a-molluscs {
  background:#dff4f7; color:#0d4a55; border-color:#a7d5dd;
}
.allergen-badge.a-mustard { background:#fff2e1; color:#8a4a00; border-color:#f0c694; }
.allergen-badge.a-sesame  { background:#f3e8d0; color:#6e4a00; border-color:#d8bf8a; }
.allergen-badge.a-soya    { background:#e7f0e0; color:#365b13; border-color:#bcd2a8; }
.allergen-badge.a-sulphites { background:#f0e0f0; color:#5c1b5e; border-color:#cda3cf; }
.allergen-badge.a-peanuts, .allergen-badge.a-treenuts {
  background:#f4e0d2; color:#7a3b14; border-color:#daa987;
}
.allergen-badge.a-celery, .allergen-badge.a-lupin {
  background:#e6e9d8; color:#4a5223; border-color:#bdc398;
}

.diet-empty {
  padding: 60px 24px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  color: var(--muted);
  font-style: italic;
}

/* The 14-allergen matrix table */
.matrix-scroll {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.allergen-matrix {
  border-collapse: collapse;
  width: 100%;
  min-width: 920px;
  font-size: .85rem;
}
.allergen-matrix thead th {
  background: var(--teal-dark);
  color: var(--saffron);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 8px;
  text-align: center;
  font-size: .8rem;
  position: sticky;
  top: 0;
}
.allergen-matrix thead th.sticky-col {
  text-align: left;
  padding-left: 18px;
  z-index: 3;
}
.allergen-matrix td {
  padding: 11px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(31, 79, 74, 0.08);
  color: var(--ink);
}
.allergen-matrix tbody tr:nth-child(even) { background: rgba(255, 247, 227, 0.55); }
.allergen-matrix tbody tr:hover { background: rgba(245, 184, 46, 0.18); }
.allergen-matrix td.sticky-col {
  text-align: left;
  padding-left: 18px;
  position: sticky;
  left: 0;
  background: inherit;
  z-index: 2;
}
.allergen-matrix tbody tr:nth-child(odd)  td.sticky-col { background: var(--white); }
.allergen-matrix tbody tr:nth-child(even) td.sticky-col { background: #fffbe9; }
.allergen-matrix td.yes {
  color: var(--chili);
  font-weight: 800;
  font-size: 1.05rem;
}
.t-mini {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.t-mini.t-ve { background:#e6f4d8; color:#356b1f; }
.t-mini.t-gf { background:#fff0d0; color:#8d5b00; }

.matrix-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--muted);
}
.legend-pill { display: inline-flex; align-items: center; gap: 8px; }
.dot { display:inline-block; width:14px; height:14px; border-radius:50%; }
.dot-yes { background: var(--chili); }
.dot-no  { background: var(--cream-warm); border:1px solid rgba(31,79,74,.15); }
.matrix-note {
  margin-top: 16px;
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* FAQ accordion */
.faq {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--teal-dark);
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--saffron);
  transition: transform .2s;
  font-weight: 300;
  line-height: 1;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   DRINKS PAGE
   ========================================================= */

.drinks-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #144840 100%);
  color: var(--cream);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.drinks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245,184,46,0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200,52,26,0.20), transparent 55%);
  pointer-events: none;
}
.drinks-hero .container { position: relative; z-index: 1; }
.drinks-hero .crumbs { color: var(--saffron); }
.drinks-hero h1 { color: var(--saffron); }
.drinks-hero p { color: var(--cream); max-width: 620px; font-size: 1.1rem; }

.drinks-bogo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(245, 184, 46, 0.15);
  border: 2px solid var(--saffron);
  border-radius: 999px;
  padding: 12px 22px 12px 12px;
  margin-top: 14px;
  backdrop-filter: blur(4px);
}
.drinks-bogo strong { display: block; color: var(--saffron); font-family: var(--font-display); letter-spacing: 1px; font-size: 1.05rem; }
.drinks-bogo span { display: block; color: var(--cream); font-size: .9rem; }
.bogo-badge {
  background: var(--chili);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
}

/* Sticky tab nav */
.drinks-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(31,79,74,.12);
  box-shadow: 0 4px 14px rgba(26,18,8,0.06);
}
.drinks-tabs {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.d-tab {
  flex-shrink: 0;
  background: var(--white);
  border: 2px solid transparent;
  color: var(--teal-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.d-tab:hover { background: var(--cream-warm); }
.d-tab.active {
  background: var(--teal-dark);
  color: var(--saffron);
  border-color: var(--teal-dark);
}

/* Show only the active panel */
.drinks-panel { display: none; }
.drinks-panel.active { display: block; }

.drinks-subhead {
  font-family: var(--font-display);
  color: var(--teal-dark);
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 30px 0 24px;
  border-bottom: 3px solid var(--saffron);
  padding-bottom: 10px;
  display: inline-block;
}

/* Drink card grid */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.drink-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(31,79,74,.08);
}
.drink-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.drink-card.signature {
  background: linear-gradient(180deg, #fff 0%, #fff8e6 100%);
  border-left: 4px solid var(--chili);
}
.drink-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.drink-head h4 {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.drink-head .price {
  font-family: var(--font-display);
  color: var(--chili);
  font-size: 1.15rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
.drink-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
.drink-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dtag {
  background: var(--cream-warm);
  color: var(--teal-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* Wine pairing guide */
.pairing-guide {
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 50px;
  color: var(--cream);
}
.pairing-guide h3 {
  color: var(--saffron);
  font-size: 1.6rem;
  margin: 0 0 24px;
  text-align: center;
}
.pairing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.pair-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(245, 184, 46, 0.20);
  transition: all .2s;
}
.pair-card:hover { background: rgba(245,184,46,0.10); transform: translateY(-2px); }
.pair-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 8px; }
.pair-card h4 {
  font-family: var(--font-display);
  color: var(--saffron);
  font-size: 1rem;
  margin: 0 0 6px;
  letter-spacing: .5px;
}
.pair-card strong {
  display: block;
  color: var(--cream);
  font-size: .9rem;
  margin-bottom: 6px;
}
.pair-card p {
  margin: 0;
  color: rgba(255,247,227,0.75);
  font-size: .8rem;
  line-height: 1.4;
}

/* Wine card */
.wine-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--saffron);
}
.wine-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.wine-head h4 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  color: var(--teal-dark);
  font-family: var(--font-display);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.wine-meta {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}
.wine-price {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: baseline;
}
.wine-price span {
  font-family: var(--font-display);
  color: var(--chili);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.wine-price small {
  display: block;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.wine-notes {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.6;
}
.wine-pairs {
  background: rgba(245,184,46,0.10);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--teal-dark);
  line-height: 1.5;
}
.wine-pairs strong { color: var(--chili); }

/* Spirits */
.spirits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.spirits-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 26px;
}
.spirits-table tr {
  border-bottom: 1px solid rgba(31,79,74,0.08);
}
.spirits-table tr:last-child { border-bottom: none; }
.spirits-table tr:hover { background: rgba(245,184,46,0.08); }
.spirits-table td {
  padding: 14px 22px;
  color: var(--ink);
  font-size: 1rem;
}
.spirits-table td.p {
  text-align: right;
  font-family: var(--font-display);
  color: var(--chili);
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .spirits-grid { grid-template-columns: 1fr; gap: 0; }
}

/* Soft drinks */
.soft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
.soft-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid rgba(31,79,74,.06);
  transition: transform .15s, background .2s;
}
.soft-item:hover { transform: translateY(-2px); background: #fffdf4; }
.soft-item.highlight {
  background: linear-gradient(135deg, #fffae8 0%, #fbe9c2 100%);
  border-color: rgba(245,184,46,0.40);
  font-weight: 600;
}
.soft-item .p {
  font-family: var(--font-display);
  color: var(--chili);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 720px) {
  .allergen-alert { flex-direction: column; padding: 26px 24px; }
  .allergen-alert-icon { font-size: 2rem; }
  .diet-toolbar { flex-direction: column; align-items: stretch; gap: 14px; }
  .diet-search { max-width: 100%; }
  .wine-head { flex-direction: column; gap: 12px; }
  .wine-price { gap: 14px; }
  .drinks-hero { padding: 50px 0 40px; }
  .drinks-bogo { flex-direction: column; align-items: flex-start; border-radius: var(--radius); padding: 18px; gap: 10px; }
}
