/* ═══════════════════════════════════════════════════════════
   KOVALLAM RESTAURANT — MAIN STYLESHEET
   Brand: Sage Olive + Warm Gold + Cream (from real logo)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Logo circle is sage/olive-grey; dark sections use deep olive-charcoal */
  --green-deep:   #3B4A38;
  --green-mid:    #4A5C46;
  --green-light:  #7A8C75;
  --gold:         #C8922A;
  --gold-light:   #E0A93E;
  --gold-pale:    #F5E4C3;
  --cream:        #FAF7F2;
  --cream-dark:   #EEE8DE;
  --char:         #1C1C1C;
  --char-mid:     #333333;
  --char-light:   #666666;
  --terracotta:   #C2522B;
  --white:        #FFFFFF;

  --font-serif:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
  --shadow-gold:  0 4px 24px rgba(200,146,42,.25);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad:  100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--char);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--char);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--char-light);
  max-width: 520px;
}

.section-header {
  margin-bottom: 60px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-deep);
  color: var(--white);
  border: 2px solid var(--green-deep);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,146,42,.4);
}

.btn--full { width: 100%; justify-content: center; padding: 16px; }

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ─── ANIMATION CLASSES ─────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(45, 58, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-mark svg,
.nav__logo-mark img { width: 44px; height: 44px; flex-shrink: 0; }

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav__link--cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 20px;
  margin-left: 4px;
}

.nav__link--cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1668236543090-82eba5ee5976?w=1600&q=85') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 58, 40, 0.92) 0%,
    rgba(45, 58, 40, 0.75) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__kolam-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200, 146, 42, 0.03) 40px,
    rgba(200, 146, 42, 0.03) 41px
  ),
  repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(200, 146, 42, 0.03) 40px,
    rgba(200, 146, 42, 0.03) 41px
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 146, 42, 0.15);
  border: 1px solid rgba(200, 146, 42, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 44px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__services {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__service {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,146,42,0.7), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-frame {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}

.about__img {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
}

.about__img--main {
  height: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.about__img--inset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 220px;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about__kolam-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

.about__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--char-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about__body {
  color: var(--char-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about__quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-deep);
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 28px 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--char);
  margin-bottom: 2px;
}

.about__feature span {
  font-size: 0.82rem;
  color: var(--char-light);
}

/* ─── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  background: var(--green-deep);
  padding: 48px 0;
}

.stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-strip__item {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
}

.stats-strip__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-strip__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.stats-strip__divider {
  width: 1px;
  height: 50px;
  background: rgba(200,146,42,0.25);
  flex-shrink: 0;
}

/* ─── HIGHLIGHTS ─────────────────────────────────────────────── */
.highlights { background: var(--cream); }

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}

.highlight-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.highlight-card--featured {
  grid-column: span 5;
  grid-row: span 2;
}

.highlight-card:not(.highlight-card--featured) {
  grid-column: span 7;
}

.highlight-card:nth-child(3),
.highlight-card:nth-child(4) {
  grid-column: span 4;
}

.highlight-card:nth-child(5) {
  grid-column: span 4;
}

.highlight-card__img {
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.highlight-card--featured .highlight-card__img { height: 480px; }
.highlight-card:not(.highlight-card--featured) .highlight-card__img { height: 280px; }

.highlight-card:hover .highlight-card__img { transform: scale(1.05); }

.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.highlight-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 24px;
}

.highlight-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.highlight-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.highlight-card--featured .highlight-card__title { font-size: 1.7rem; }

.highlight-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin-bottom: 12px;
}

.highlight-card:not(.highlight-card--featured) .highlight-card__desc { display: none; }
.highlight-card--featured .highlight-card__desc { display: block; }

.highlight-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.highlights__cta { text-align: center; }

/* ─── MENU PREVIEW ───────────────────────────────────────────── */
.menu-preview {
  position: relative;
  padding: var(--section-pad) 0;
}

.menu-preview__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, #1C2A18 100%);
}

.menu-preview .container { position: relative; z-index: 1; }
.menu-preview .section-header { text-align: center; }
.menu-preview .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.menu-preview__tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  border-radius: 40px;
  border: 1.5px solid rgba(200,146,42,0.3);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-body);
}

.menu-tab:hover { border-color: var(--gold); color: var(--gold); }

.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.menu-item:hover { background: rgba(255,255,255,0.04); }

.menu-item__name {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  flex-shrink: 0;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(200,146,42,0.2);
  margin: 0 8px;
  min-width: 20px;
}

.menu-item__price {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.menu-preview__cta {
  text-align: center;
  margin-top: 48px;
}

.menu-preview__note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery .section-header { text-align: center; }
.gallery .section-sub { margin: 0 auto; }

.gallery__filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 9px 22px;
  border-radius: 40px;
  border: 1.5px solid var(--cream-dark);
  color: var(--char-light);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.gallery-filter-btn:hover { border-color: var(--green-deep); color: var(--green-deep); }

.gallery-filter-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), opacity var(--transition);
  cursor: pointer;
}

.gallery-item:hover { transform: scale(1.03); }
.gallery-item.hidden { opacity: 0; pointer-events: none; display: none; }

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

.gallery__instagram {
  margin-top: 40px;
  text-align: center;
}

.gallery__insta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--char-mid);
  transition: var(--transition);
}

.gallery__insta-link:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.gallery__insta-count {
  font-size: 0.75rem;
  color: var(--char-light);
  font-weight: 400;
  padding-left: 8px;
  border-left: 1px solid var(--cream-dark);
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  position: relative;
  padding: var(--section-pad) 0;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1C2A18 0%, var(--green-deep) 60%, #203020 100%);
}

.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-header { text-align: center; }
.testimonials .section-label { color: var(--gold); }

.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

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

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,146,42,0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,146,42,0.3);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 22px;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 24px;
  margin-top: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

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

/* ─── LOCATIONS ──────────────────────────────────────────────── */
.locations { background: var(--cream); }

.locations__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-card--featured {
  border-top: 4px solid var(--gold);
}

.location-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin: 20px 20px 0;
  border-radius: 3px;
}

.location-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--char);
  padding: 12px 20px 0;
}

.location-card__address {
  font-size: 0.875rem;
  color: var(--char-light);
  line-height: 1.7;
  padding: 12px 20px;
}

.location-card__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--green-mid);
  font-weight: 500;
  padding: 0 20px 12px;
}

.location-card__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  padding: 12px 20px;
  border-top: 1px solid var(--cream-dark);
  transition: color var(--transition);
}

.location-card__phone:hover { color: var(--gold); }

.location-card__map {
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.location-card__map iframe { display: block; }

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

.branch-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.branch-card:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.branch-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--char);
  margin-bottom: 2px;
}

.branch-card__area {
  font-size: 0.8rem;
  color: var(--char-light);
  margin-bottom: 2px;
}

.branch-card__hours {
  font-size: 0.75rem;
  color: var(--green-mid);
  font-weight: 500;
}

.locations__phone-cta {
  padding: 24px;
  background: var(--green-deep);
  border-radius: var(--radius-md);
  text-align: center;
}

.locations__phone-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 14px;
}

/* ─── RESERVE ────────────────────────────────────────────────── */
.reserve {
  position: relative;
  padding: var(--section-pad) 0;
}

.reserve__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400&q=80') center/cover no-repeat fixed;
}

.reserve__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,58,40,0.97) 0%, rgba(45,58,40,0.88) 100%);
}

.reserve .container { position: relative; z-index: 1; }

.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.reserve__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.reserve__hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.reserve__time-block {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.7);
}

.reserve__time-block svg { color: var(--gold); flex-shrink: 0; }

.reserve__time-block strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.reserve__time-block span { font-size: 0.82rem; }

.reserve__zomato { width: fit-content; }

.reserve__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.reserve__form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--char);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group:last-child:not(:first-child) { margin-bottom: 16px; }
.form-group:not(:last-child):not(.form-row .form-group) { margin-bottom: 16px; }
.reserve__form > .form-group { margin-bottom: 16px; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--char-mid);
  letter-spacing: 0.3px;
}

label span { color: var(--terracotta); }

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E5E0D8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--char);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(45,58,40,0.08);
  background: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 80px; }

.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--char-light);
  margin-top: 10px;
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: 14px;
  text-align: center;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: #1A2416; }

.footer__kolam-divider {
  overflow: hidden;
  height: 40px;
  background: var(--green-deep);
}

.footer__kolam-divider svg { width: 100%; height: 100%; }

.footer__main {
  padding: 64px 0 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer__logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo-tagline {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gold);
  transition: opacity var(--transition);
}

.footer__social:hover { opacity: 0.8; }

.footer__col-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,146,42,0.2);
}

.footer__links li + li { margin-top: 10px; }

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

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

.footer__shift strong {
  display: block;
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 3px;
}

.footer__shift span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer__days {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.footer__contact { display: flex; flex-direction: column; gap: 14px; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__contact-item:hover { color: var(--gold); }
.footer__contact-item svg { color: var(--gold); flex-shrink: 0; }

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__credit { color: rgba(255,255,255,0.2) !important; }

/* ═══════════════════════════════════════════════════════════
   MENU PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════ */

.menu-page { background: var(--cream); }

.menu-page-hero {
  background: linear-gradient(135deg, var(--green-deep), #1C2A18);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.menu-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 60px,
    rgba(200,146,42,0.04) 60px, rgba(200,146,42,0.04) 61px
  ),
  repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(200,146,42,0.04) 60px, rgba(200,146,42,0.04) 61px
  );
}

.menu-page-hero .container { position: relative; z-index: 1; text-align: center; }

.menu-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.menu-page-hero h1 em { font-style: italic; color: var(--gold-light); }

.menu-page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.menu-page-nav {
  background: var(--white);
  position: sticky;
  top: 60px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--cream-dark);
}

.menu-page-nav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-page-nav .container::-webkit-scrollbar { display: none; }

.menu-cat-link {
  flex-shrink: 0;
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--char-light);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.menu-cat-link:hover { color: var(--green-deep); }
.menu-cat-link.active { color: var(--green-deep); border-bottom-color: var(--gold); }

.menu-page-body { padding: 60px 0; }

.menu-category {
  margin-bottom: 64px;
  scroll-margin-top: 110px;
}

.menu-category__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-category__icon {
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.menu-category__name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--char);
}

.menu-category__badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.menu-card:hover {
  border-color: rgba(200,146,42,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.menu-card__name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--char);
  line-height: 1.4;
}

.menu-card__sub {
  font-size: 0.75rem;
  color: var(--char-light);
  margin-top: 3px;
}

.menu-card__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .highlights__grid { grid-template-columns: 1fr 1fr; }
  .highlight-card--featured { grid-column: span 2; grid-row: span 1; }
  .highlight-card--featured .highlight-card__img { height: 340px; }
  .highlight-card:not(.highlight-card--featured) { grid-column: span 1; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img--main { height: 380px; }

  .locations__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav__links.open { right: 0; }

  .nav__link {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
  }

  .nav__link--cta { margin-left: 0; margin-top: 8px; }

  .nav__toggle { display: flex; z-index: 1000; }

  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__ctas { flex-direction: column; align-items: center; }

  .about__features { grid-template-columns: 1fr; }
  .about__img--inset { display: none; }

  .stats-strip__grid { flex-wrap: wrap; }
  .stats-strip__item { flex: 0 0 50%; }
  .stats-strip__divider:nth-child(4) { display: none; }

  .highlights__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .highlight-card--featured,
  .highlight-card { grid-column: span 1 !important; }
  .highlight-card--featured .highlight-card__img { height: 280px; }
  .highlight-card:not(.highlight-card--featured) .highlight-card__img { height: 220px; }
  .highlight-card:not(.highlight-card--featured) .highlight-card__desc { display: block; }

  .menu-grid { grid-template-columns: 1fr; }

  .gallery__masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .reserve__grid { grid-template-columns: 1fr; gap: 40px; }
  .reserve__form-wrap { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .testimonials__track { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .menu-items-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__services { flex-direction: column; align-items: center; gap: 12px; }

  .stats-strip__item { flex: 0 0 100%; }
  .stats-strip__divider { display: none; }

  .gallery__masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .reserve__form-wrap { padding: 24px 16px; }

  .nav__logo-sub { display: none; }
}
