@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --forest: #2B2A29;
  --forest-light: #2a5240;
  --cream: #faf6ef;
  --cream-dark: #f0e9dc;
  --terracotta: #c4603a;
  --terracotta-dark: #a84e2e;
  --gold: #c9a227;
  --charcoal: #1c1c1c;
  --border: #e8ddd0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; }

.font-display { font-family: var(--font-display); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(30,61,47,0.3); border-radius: 3px; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.3;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }

/* Fade-up reveal (JS toggles .is-visible via IntersectionObserver) */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  padding: 0.9rem 2rem;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-terracotta { background-color: var(--terracotta); color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.btn-terracotta:hover { background-color: var(--terracotta-dark); transform: translateY(-2px); }
.btn-forest { background-color: var(--forest); color: #fff; }
.btn-forest:hover { background-color: var(--forest-light); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-white:hover { background-color: rgba(255,255,255,0.1); }
.btn-outline-white-30 { border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline-white-30:hover { background-color: rgba(255,255,255,0.1); }
.btn-outline-forest { border: 2px solid var(--forest); color: var(--forest); }
.btn-outline-forest:hover { background-color: var(--forest); color: #fff; }
.btn-whatsapp { background-color: #25D366; color: #fff; }
.btn-whatsapp:hover { opacity: 0.9; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-flex1 { flex: 1; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: var(--forest);
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 80px;
  transition: height 0.3s ease;
}
@media (min-width: 640px) { .nav-row { padding: 0 2.5rem; } }
.nav.is-scrolled .nav-row { height: 60px; }

.nav-logo { height: 56px; width: auto; transition: height 0.3s ease; }
.nav.is-scrolled .nav-logo { height: 36px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
@media (min-width: 1280px) { .nav-links { gap: 2rem; } }
.nav-links button {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links button:hover { color: #fff; }

.nav-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .nav-actions { display: flex; } }
.nav-icon-btn { color: rgba(255,255,255,0.7); padding: 0.5rem; transition: color 0.2s ease; }
.nav-icon-btn:hover { color: #fff; }
.btn-nav-outline {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}
.btn-nav-outline:hover { background-color: rgba(255,255,255,0.1); }
.btn-nav-solid {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  background-color: var(--terracotta);
  color: #fff;
  transition: background-color 0.2s ease;
}
.btn-nav-solid:hover { background-color: var(--terracotta-dark); }

.nav-burger { display: block; color: #fff; padding: 0.5rem; }
@media (min-width: 768px) { .nav-burger { display: none; } }
.nav-burger .bar { display: block; width: 20px; height: 2px; background: #fff; margin: 5px 0; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-burger.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open .bar:nth-child(2) { opacity: 0; }
.nav-burger.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  overflow: hidden;
  max-height: 0;
  background-color: #1a3527;
  transition: max-height 0.3s ease;
}
@media (min-width: 768px) { .nav-mobile { display: none; } }
.nav-mobile.is-open { max-height: 480px; }
.nav-mobile-inner { padding: 1rem; }
.nav-mobile-inner button {
  display: block;
  width: 100%;
  text-align: left;
  color: rgba(255,255,255,0.8);
  padding: 0.65rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-cta { display: flex; gap: 0.75rem; padding-top: 0.75rem; }
.nav-mobile-cta a, .nav-mobile-cta button {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  color: #fff;
}
.nav-mobile-cta a { border: 1px solid rgba(255,255,255,0.3); }
.nav-mobile-cta button { background-color: var(--terracotta); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0d1f16;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,15,0.55) 0%, rgba(10,25,15,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 6rem 1rem 0;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-title em { display: block; font-style: italic; color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.125rem; } }
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
.hero-cta .btn { width: 100%; }
@media (min-width: 640px) { .hero-cta .btn { width: auto; } }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 9999px; background-color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.6s infinite;
  color: rgba(255,255,255,0.5);
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* ─── Quick actions ──────────────────────────────────────── */
.quick-actions { position: relative; z-index: 20; padding: 1.5rem 0; background-color: #fff; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) { .quick-grid { grid-template-columns: repeat(4, 1fr); } }
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  transition: background-color 0.2s ease;
}
.quick-item:hover { background-color: var(--cream); }
.quick-item:hover .icon-box { transform: scale(1.1); }
.quick-item:nth-child(-n+3) { border-right: 1px solid var(--border); }
.quick-item:nth-child(3), .quick-item:nth-child(4) { border-top: 1px solid var(--border); }
@media (min-width: 640px) {
  .quick-item:nth-child(3), .quick-item:nth-child(4) { border-top: none; }
}
.quick-item span { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; color: var(--forest); }

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(30,61,47,0.08);
  color: var(--forest);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.icon-box.size-48 { width: 48px; height: 48px; }
.icon-box.size-60 { width: 60px; height: 60px; }
.icon-box.size-60 svg { transform: scale(1.25); }

/* ─── Grid helpers ───────────────────────────────────────── */
.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .two-col { gap: 4rem; } }

.body-text { line-height: 1.7; color: rgba(28,28,28,0.7); margin-bottom: 2rem; }

/* ─── About / Why section ────────────────────────────────── */
.about-media { position: relative; }
.about-media .frame {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background-color: rgba(30,61,47,0.1);
}
@media (min-width: 768px) { .about-media .frame { aspect-ratio: 3 / 4; } }
.about-media .frame img,
.about-media .frame video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-media .frame:hover img,
.about-media .frame:hover video { transform: scale(1.05); }
.about-badge {
  position: absolute;
  bottom: -1.25rem; right: -1rem;
  background-color: var(--forest);
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
@media (min-width: 768px) { .about-badge { right: -2rem; } }
.about-badge .year { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--gold); }
.about-badge .label { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-card {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: #fff;
  height: 100%;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover { box-shadow: 0 4px 20px rgba(30,61,47,0.1); }
.feature-card .title { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.15rem; color: var(--forest); }
.feature-card .desc { font-size: 0.75rem; line-height: 1.6; color: rgba(28,28,28,0.6); }

/* ─── Menu / dishes ──────────────────────────────────────── */
.dish-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .dish-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .dish-grid { grid-template-columns: repeat(3, 1fr); } }
.dish-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,61,47,0.15); }
.dish-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background-color: rgba(30,61,47,0.1); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-media img { transform: scale(1.1); }
.dish-body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.5rem; }
.dish-body h3 { font-family: var(--font-display); font-size: 1.625rem; color: var(--forest); margin-bottom: 0.5rem; }
.dish-body p { line-height: 1.7; color: rgba(28,28,28,0.6); font-size: 1rem; flex: 1; margin-bottom: 1rem; }
.dish-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 600; color: var(--terracotta); margin-top: auto; transition: color 0.2s ease; }
.dish-link:hover { color: var(--terracotta-dark); }

.center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.mb-lg { margin-bottom: 3.5rem; }

/* ─── Dark banner sections ───────────────────────────────── */
.banner {
  position: relative;
  overflow: hidden;
  background-color: var(--forest);
  text-align: center;
}
.banner-bg { position: absolute; inset: 0; opacity: 0.2; background-size: cover; background-position: center; }
.banner-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.banner .section-title { color: #fff; }
.banner p.lead { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1rem; }
.banner-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .banner-cta { flex-direction: row; } }
.banner-cta .btn { width: 100%; }
@media (min-width: 640px) { .banner-cta .btn { width: auto; } }
.banner .fine-print { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ─── Parties ────────────────────────────────────────────── */
.party-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .party-grid { grid-template-columns: 1fr 1fr; } }
.party-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: #fff;
  color: var(--forest);
  font-weight: 500;
  font-size: 0.875rem;
  height: 100%;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.party-tile:hover { background-color: var(--forest); color: #fff; border-color: var(--forest); }
.party-tile .icon-box { background-color: rgba(30,61,47,0.08); color: inherit; }

.party-media { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 20px 40px rgba(0,0,0,0.15); background-color: rgba(30,61,47,0.1); }
.party-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.party-media:hover img { transform: scale(1.05); }
.party-media .fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,15,0.5) 0%, transparent 50%); }
.party-media .caption { position: absolute; bottom: 1.25rem; left: 1.25rem; color: #fff; }
.party-media .caption .headline { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; }
.party-media .caption .sub { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

.party-photo { display: flex; justify-content: center; }
.party-photo img { width: 100%; height: auto; transition: transform 0.5s ease; }
.party-photo:hover img { transform: scale(1.02); }

/* ─── Pricing (Kids Birthday) ────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.price-card.featured { background-color: var(--forest); border-color: var(--forest); }
.price-card .badge-popular {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background-color: var(--gold); color: #fff;
}
.price-card .price { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--forest); margin-bottom: 0.15rem; }
.price-card.featured .price { color: var(--gold); }
.price-card .price-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(28,28,28,0.4); }
.price-card.featured .price-tag { color: rgba(255,255,255,0.5); }
.price-card .price-label { font-size: 1.125rem; font-weight: 600; margin-top: 0.5rem; color: var(--charcoal); }
.price-card.featured .price-label { color: #fff; }
.price-card ul { margin: 1.25rem 0 1.5rem; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; padding: 0.35rem 0; color: rgba(28,28,28,0.7); }
.price-card.featured li { color: rgba(255,255,255,0.8); }
.price-card li::before { content: '✓'; font-weight: 700; color: var(--terracotta); flex-shrink: 0; margin-top: 0.1rem; }
.price-card.featured li::before { color: var(--gold); }
.price-card .btn { margin-top: auto; }

.addon-box { border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); background-color: #fff; }
.addon-box h3 { font-family: var(--font-display); font-size: 1rem; color: var(--forest); margin-bottom: 1rem; }
.addon-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.addon-list span {
  padding: 0.4rem 0.9rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
  border: 1px solid var(--terracotta); color: var(--terracotta); background-color: rgba(196,96,58,0.06);
}

/* ─── Gallery ────────────────────────────────────────────── */
.gallery-section { background-color: var(--forest); }
.gallery-section .section-title { color: #fff; }
.gallery-section .lead { color: rgba(255,255,255,0.5); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { border-radius: 0.75rem; overflow: hidden; background-color: rgba(30,61,47,0.3); aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* ─── Delivery specials ──────────────────────────────────── */
.delivery-heading { text-align: center; padding: 3.5rem 1rem; }
.delivery-heading .tag { color: var(--gold); }
.delivery-heading h2 { color: var(--charcoal); }
.delivery-panels { display: flex; flex-direction: column; border-radius: 1.25rem; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
@media (min-width: 768px) { .delivery-panels { flex-direction: row; } }
.delivery-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  width: 100%;
}
@media (min-width: 768px) { .delivery-panel { width: 100%; } }
.delivery-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.delivery-panel:hover img { transform: scale(1.05); }
.delivery-panel .overlay { position: absolute; inset: 0; }
.delivery-panel .content { position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 480px; padding: 2rem 2.5rem; }
.delivery-panel .badge { align-self: flex-start; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 9999px; margin-bottom: 1.25rem; }
.delivery-panel .items { color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; margin-bottom: 0.25rem; }
.delivery-panel h3 { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 2.25rem; line-height: 1.15; margin-bottom: 0.25rem; }
.delivery-panel .sub { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 0.75rem; }
.delivery-panel .desc { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; max-width: 340px; margin-bottom: 1.75rem; }
.delivery-panel .btn { align-self: flex-start; font-size: 0.9375rem; font-weight: 700; }

.delivery-panel.veg .overlay { background: linear-gradient(to top, rgba(10,35,20,0.92) 0%, rgba(10,35,20,0.4) 55%, transparent 100%); }
.delivery-panel.veg .badge { background-color: var(--gold); color: var(--forest); }
.delivery-panel.veg .btn { background-color: var(--gold); color: var(--forest); }
.delivery-panel.veg .btn:hover { opacity: 0.9; transform: translateY(-2px); }

.delivery-panel.nonveg .overlay { background: linear-gradient(to top, rgba(60,20,10,0.92) 0%, rgba(60,20,10,0.4) 55%, transparent 100%); }
.delivery-panel.nonveg .badge { background-color: var(--terracotta); color: #fff; }
.delivery-panel.nonveg .btn { background-color: var(--terracotta); color: #fff; }
.delivery-panel.nonveg .btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ─── Testimonials ───────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial-card {
  display: flex; flex-direction: column; height: 100%;
  padding: 1.25rem; border-radius: 1rem; border: 1px solid var(--border);
  background-color: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.testimonial-card p { font-size: 0.875rem; margin: 0.75rem 0; line-height: 1.7; color: rgba(28,28,28,0.7); flex: 1; }
.testimonial-card .author { font-weight: 600; font-size: 0.875rem; color: var(--forest); }

/* ─── Location ───────────────────────────────────────────── */
.location-heading { max-width: 1280px; margin: 0 auto; padding: 4rem 1rem 2.5rem; text-align: center; }
.location-heading h2 { font-family: var(--font-display); font-weight: 700; font-size: 2.375rem; line-height: 1.3; }
.location-split { display: flex; flex-direction: column; min-height: 520px; }
@media (min-width: 768px) { .location-split { flex-direction: row; } }
.location-info { width: 100%; display: flex; flex-direction: column; justify-content: center; padding: 4rem 1.5rem; }
@media (min-width: 768px) {
  .location-info {
    width: 50%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 3rem;
    /* Left edge aligns with the shared .container gutter so this text
       lines up with the rest of the page even though this section is full-bleed. */
    padding-left: max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem));
  }
}
@media (min-width: 1024px) { .location-info { padding-right: 4rem; } }
.location-rows { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.location-row { display: flex; align-items: flex-start; gap: 1rem; }
.location-row span { line-height: 1.7; padding-top: 0.6rem; color: rgba(28,28,28,0.7); font-size: 1rem; }
.location-cta { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .location-cta { flex-direction: row; } }
.location-cta a { font-size: 0.9375rem; padding: 0.9rem 0; }
.location-map { width: 100%; min-height: 400px; }
@media (min-width: 768px) { .location-map { width: 50%; } }
.location-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ─── Final CTA ──────────────────────────────────────────── */
.final-cta { position: relative; overflow: hidden; text-align: center; padding: 6rem 0 9rem; background-color: #2B2A29; }
@media (min-width: 768px) { .final-cta { padding: 9rem 0; } }
.final-cta-bg { position: absolute; inset: 0; opacity: 0.3; background-size: cover; background-position: center; }
.final-cta-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.final-cta h2 { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 2.25rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .final-cta h2 { font-size: 3.75rem; } }
.final-cta .questions { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .final-cta .questions { font-size: 1.125rem; } }
.final-cta .questions p + p { margin-top: 0.15rem; }
.final-cta .ready { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--gold); margin-bottom: 2.5rem; }
@media (min-width: 768px) { .final-cta .ready { font-size: 1.5rem; } }
.final-cta-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .final-cta-actions { flex-direction: row; } }
.final-cta-actions .btn { width: 100%; padding: 1rem 2.5rem; }
@media (min-width: 640px) { .final-cta-actions .btn { width: auto; } }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background-color: #2B2A29; color: #fff; padding: 4rem 0 8rem; }
@media (min-width: 768px) { .footer { padding: 4rem 0 2.5rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { height: 32px; width: auto; margin-bottom: 0.75rem; }
.footer-col p { font-size: 0.75rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  padding: 0.5rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 9999px;
  color: rgba(255,255,255,0.4); transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a, .footer-col ul li button { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-col ul li a:hover, .footer-col ul li button:hover { color: #fff; }
.footer-col.services ul { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact a { transition: color 0.2s ease; }
.footer-contact a:hover { color: #fff; }
.footer-contact .fine { font-size: 0.75rem; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ─── Mobile bottom nav ──────────────────────────────────── */
.mobile-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background-color: var(--forest);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
@media (min-width: 768px) { .mobile-nav { display: none; } }
.mobile-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.25rem; padding: 0.75rem 0; color: #fff; transition: opacity 0.15s ease;
}
.mobile-nav a:active { opacity: 0.7; }
.mobile-nav a.accent { background-color: var(--terracotta); }
.mobile-nav a .ic { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; }
.mobile-nav a span { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.02em; }

@media (max-width: 767px) {
  body { padding-bottom: 68px; }
}
