/* ============================================
   PATELVAADI — Garden Dining, Desi Soul
   Pure CSS — No Framework
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:     #2D5016;
  --green-mid: #3d6b1e;
  --marigold:  #F5A623;
  --terra:     #C4522A;
  --cream:     #FAF3E0;
  --cream-dark:#F0E8CE;
  --brown:     #6B3F1A;
  --brown-light:#8B5E3C;
  --offwhite:  #FFFBF2;
  --text-dark: #2a1a0a;
  --text-mid:  #4a3520;
  --text-light:#7a6048;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Nunito', 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(45,80,22,0.10);
  --shadow-md: 0 6px 24px rgba(45,80,22,0.14);
  --shadow-lg: 0 16px 48px rgba(45,80,22,0.20);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--offwhite);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: var(--ff-display); line-height: 1.2; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(196,82,42,0.10);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.02rem;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  text-align: center;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255,251,242,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-leaf { font-size: 1.3rem; }

.logo-text {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: color var(--transition);
}

.navbar.scrolled .logo-text { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--offwhite);
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--marigold); }
.navbar.scrolled .nav-links a:hover { color: var(--terra); }

.nav-cta {
  background: var(--marigold);
  color: var(--brown) !important;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--terra) !important;
  color: white !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: background var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--green); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,25,5,0.72) 0%,
    rgba(45,80,22,0.55) 40%,
    rgba(107,63,26,0.50) 80%,
    rgba(196,82,42,0.30) 100%
  );
}

/* Fairy-light shimmer overlay */
.hero-lights {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245,166,35,0.18) 0%, transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(245,166,35,0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(245,166,35,0.10) 0%, transparent 30%),
    radial-gradient(circle at 30% 80%, rgba(245,166,35,0.15) 0%, transparent 35%);
  animation: shimmer 6s ease-in-out infinite alternate;
}

@keyframes shimmer {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.20);
  border: 1px solid rgba(245,166,35,0.50);
  color: var(--marigold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  color: var(--marigold);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--marigold);
  color: var(--brown);
  border-color: var(--marigold);
}

.btn-primary:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,82,42,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: white;
  color: var(--green);
  border-color: white;
  transform: translateY(-2px);
}

/* ---------- SCROLL HINT ---------- */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 20px; }
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
  position: relative;
  text-align: center;
  line-height: 0;
}

.section-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.divider-motif {
  font-size: 1rem;
  color: var(--marigold);
  letter-spacing: 0.3em;
  padding: 10px 0 4px;
  background: var(--cream);
  line-height: 1;
}

/* ---------- ABOUT ---------- */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.about-text .section-title { margin-bottom: 16px; }

.about-body {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.stat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--offwhite);
  border: 1.5px solid var(--cream-dark);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.badge-icon { font-size: 1.2rem; }
.stat-badge small { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }

.about-img-wrap { position: relative; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-frame:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--marigold);
  color: var(--brown);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-years {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.badge-years-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ---------- MENU SECTION ---------- */
.menu-section { background: var(--offwhite); }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.tab-btn {
  background: white;
  border: 2px solid var(--cream-dark);
  color: var(--text-mid);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-card {
  background: var(--offwhite);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  /* subtle linen texture */
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(107,63,26,0.02) 0px,
      rgba(107,63,26,0.02) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(107,63,26,0.02) 0px,
      rgba(107,63,26,0.02) 1px,
      transparent 1px,
      transparent 20px
    );
}

.menu-cat-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

/* Veg dot indicator */
.veg-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22a94f;
  border: 1.5px solid #1a7d3b;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Menu table */
.menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.menu-table thead tr {
  background: var(--cream);
}

.menu-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.menu-table th:last-child { text-align: right; }

.menu-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(107,63,26,0.07);
  color: var(--text-dark);
  vertical-align: middle;
}

.menu-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--terra);
  font-size: 0.97rem;
  white-space: nowrap;
}

.menu-table tbody tr:last-child td { border-bottom: none; }
.menu-table tbody tr:hover { background: rgba(245,166,35,0.05); }

/* Gravy type tags */
.gravy-tag {
  display: inline-block;
  font-size: 0.68rem;
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(107,63,26,0.10);
  color: var(--brown-light);
  margin-left: 4px;
  vertical-align: middle;
}

.gravy-tag.red { background: rgba(196,82,42,0.12); color: var(--terra); }
.gravy-tag.green { background: rgba(45,80,22,0.10); color: var(--green-mid); }

.seasonal-tag {
  display: inline-block;
  font-size: 0.68rem;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(245,166,35,0.18);
  color: #8a6010;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: middle;
}

/* Sub-accordion for main course */
.main-course-card { max-width: 900px; }

.sub-accordion { display: flex; flex-direction: column; gap: 0; }

.sub-group { border-bottom: 1.5px solid var(--cream-dark); }
.sub-group:last-child { border-bottom: none; }

.sub-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 4px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.sub-toggle:hover, .sub-toggle.active { color: var(--green); }

.toggle-icon {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: transform var(--transition);
}

.sub-body {
  display: none;
  padding-bottom: 8px;
}

.sub-body.open { display: block; }

.menu-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ---------- GALLERY ---------- */
.gallery-section {
  background: var(--green);
  color: white;
}

.gallery-section .section-label { background: rgba(245,166,35,0.2); color: var(--marigold); }
.gallery-section .section-title { color: white; }
.gallery-section .section-sub { color: rgba(255,255,255,0.75); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.5s ease;
}

.gallery-item.large img { min-height: 400px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(10,25,5,0.80));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- FEATURES ---------- */
.features-section { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.feature-card {
  background: var(--offwhite);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  color: var(--green);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---------- VISIT ---------- */
.visit-section { background: var(--offwhite); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.visit-info { display: flex; flex-direction: column; gap: 22px; }

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.info-block h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 4px;
}

.info-block p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.small-note { font-size: 0.82rem; color: var(--text-light); }

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }

.tag {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.info-link {
  color: var(--terra);
  text-decoration: none;
  font-weight: 600;
}

.info-link:hover { text-decoration: underline; }

.visit-map { display: flex; flex-direction: column; gap: 16px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 340px;
  border: 2px solid var(--cream-dark);
}

.map-btn { align-self: flex-start; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: white;
  display: block;
}

.footer-tagline {
  font-style: italic;
  color: var(--marigold);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--marigold); }

.footer-social { display: flex; gap: 14px; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.social-link:hover { background: var(--marigold); color: var(--brown); transform: scale(1.1); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  padding-top: 20px;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--terra);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  animation: fadeIn 0.9s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(2)  { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(3)  { transition-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(4)  { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(5)  { transition-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(6)  { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-frame img { height: 300px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .gallery-item.large img { min-height: 260px; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--offwhite);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 12px 24px;
    color: var(--text-mid) !important;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav-cta {
    margin: 8px 24px 0;
    border-radius: 999px;
    text-align: center;
  }

  .hero-title { font-size: clamp(2.8rem, 15vw, 4.5rem); }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }

  .menu-card { padding: 24px 18px; }

  .menu-tabs { gap: 8px; }
  .tab-btn { padding: 9px 16px; font-size: 0.85rem; }

  .stat-badges { gap: 8px; }
  .stat-badge { font-size: 0.8rem; padding: 8px 12px; }

  .footer-nav { gap: 18px; }

  .map-wrap { height: 260px; }
}

@media (max-width: 420px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}
