:root {
  --maroon: #5A0A0A;
  --maroon-dark: #3d0707;
  --maroon-light: #7a1515;
  --gold: #D4AF37;
  --gold-light: #e8cc6a;
  --gold-pale: #f5e9b5;
  --cream: #FDF6E3;
  --dark: #1a0505;
  --text-light: #e8d5b0;
  --text-muted: #b8986a;
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(90,10,10,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img, iframe { max-width: 100%; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}
body.mobile-nav-open { overflow: hidden; }

/* ═══════════════════════════════════════
   LOADER
═══════════════════════════════════════ */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  animation: logoPulse 1.5s ease-in-out infinite;
}
.loader-logo-img {
  height: 90px; /* Larger for loader */
  width: auto;
  max-width: 320px;
  object-fit: contain;
  animation: logoPulse 1.5s ease-in-out infinite;
}
.loader-tagline {
  font-size: 0.8rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.5rem;
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(212,175,55,0.2);
  margin-top: 2rem; border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--gold);
  animation: loadFill 1.8s ease forwards;
}
.loader-mandala {
  position: absolute;
  width: 300px; height: 300px;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.loader-mandala::before {
  content: '';
  position: absolute; inset: 20px;
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: 50%;
}

@keyframes logoPulse { 0%,100%{opacity:1} 50%{opacity:0.6} }
@keyframes loadFill { 0%{width:0} 100%{width:100%} }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ═══════════════════════════════════════
   ORNAMENTAL PATTERNS
═══════════════════════════════════════ */
.mandala-bg {
  position: absolute;
  width: 600px; height: 600px;
  border: 1px solid rgba(212,175,55,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.mandala-bg::before {
  content: '';
  position: absolute; inset: 30px;
  border: 1px solid rgba(212,175,55,0.04);
  border-radius: 50%;
}
.mandala-bg::after {
  content: '';
  position: absolute; inset: 60px;
  border: 1px solid rgba(212,175,55,0.03);
  border-radius: 50%;
}

.ornament {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.6;
  display: inline-block;
  margin: 0 0.8rem;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
  gap: 1.25rem;
}
nav.scrolled {
  background: rgba(26,5,5,0.97);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.nav-logo span { color: var(--text-light); font-weight: 300; font-size: 1.2rem; }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
  min-width: 0;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover,
.nav-cta.active {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.35), 0 8px 24px rgba(212,175,55,0.18);
}

/* Mobile menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.65rem;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(26,5,5,0.74);
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 999px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: flex; position: fixed; inset: 0;
  width: 100%; min-height: 100svh;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,0.12), transparent 32rem),
    rgba(13,2,2,0.98);
  z-index: 1200; flex-direction: column;
  align-items: center; justify-content: center; gap: clamp(0.9rem, 2.5vh, 1.7rem);
  padding: 5.5rem 1.25rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 8vw, 2.55rem); color: var(--text-light);
  text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.3s;
  line-height: 1.05;
  text-align: center;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}
.mobile-menu a.active::after {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  margin: 0.4rem auto 0;
}
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem; cursor: pointer; color: var(--gold);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 999px;
}

/* ═══════════════════════════════════════
   PAGE SECTIONS (router)
═══════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,5,5,0.5) 0%, rgba(26,5,5,0.2) 40%, rgba(26,5,5,0.7) 100%),
    url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1600&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,175,55,0.4);
  padding: 0.4rem 1.5rem; margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
  animation: fadeInUp 1s ease 0.5s both;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1rem; color: var(--text-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin: 1.5rem 0 2.5rem;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(212,175,55,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; border: 1px solid rgba(255,255,255,0.5); cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bounce 2s ease infinite;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--text-muted); }
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.2;
  color: var(--white);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-line {
  width: 60px; height: 1px; background: var(--gold);
  margin: 1.5rem auto 0; position: relative;
}
.section-line::before, .section-line::after {
  content: '◆';
  position: absolute; top: -7px;
  color: var(--gold); font-size: 8px;
}
.section-line::before { left: -15px; }
.section-line::after { right: -15px; }
.container { width: min(100%, 1200px); margin: 0 auto; }

/* ═══════════════════════════════════════
   ABOUT PREVIEW (HOME)
═══════════════════════════════════════ */
.about-preview {
  background: linear-gradient(135deg, #200808 0%, #1a0505 100%);
  position: relative; overflow: hidden;
}
.about-preview .mandala-bg { right: -200px; top: -100px; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-img-stack { position: relative; height: 500px; }
.about-img-main {
  position: absolute;
  width: 75%; height: 80%;
  object-fit: cover;
  top: 0; left: 0;
  border: 3px solid rgba(212,175,55,0.3);
}
.about-img-accent {
  position: absolute;
  width: 55%; height: 55%;
  object-fit: cover;
  bottom: 0; right: 0;
  border: 3px solid rgba(212,175,55,0.3);
  box-shadow: var(--shadow);
}
.about-text p {
  font-size: 1rem; line-height: 1.9;
  color: var(--text-muted); margin: 1.5rem 0;
}
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

/* ═══════════════════════════════════════
   FEATURED DISHES
═══════════════════════════════════════ */
.featured-dishes { background: var(--dark); }
.dishes-carousel { position: relative; }
.dishes-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.dish-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(145deg, rgba(34,10,10,0.98), rgba(18,5,5,0.98));
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 16px;
  padding: 1.35rem;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}
.dish-card:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.24);
}
.dish-img-wrap {
  position: relative;
  overflow: visible;
  height: auto;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.65rem;
}
.dish-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.1); }
.dish-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,5,5,0.9) 0%, transparent 60%);
}
.dish-badge {
  position: static;
  background: var(--gold); color: var(--dark);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  font-weight: 600; letter-spacing: 0.05em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}
.dish-overlay { display: none; }
.dish-info { padding: 0.6rem 0 0; }
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--white); font-weight: 600;
  margin-bottom: 0.5rem;
}
.dish-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.dish-desc { max-width: 36ch; }
.dish-price { color: var(--gold); font-weight: 600; font-size: 1.1rem; }

/* ═══════════════════════════════════════
   EVENTS STRIP
═══════════════════════════════════════ */
.events-strip {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.events-strip .mandala-bg { left: 50%; top: 50%; transform: translate(-50%,-50%); opacity: 0.5; }
.events-strip .section-title { color: var(--gold-pale); }
.events-strip p { max-width: 600px; margin: 1.5rem auto; color: var(--text-light); line-height: 1.8; }
.events-cards {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin: 2.5rem 0;
}
.event-pill {
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.7rem 1.5rem;
  color: var(--gold-light);
  font-size: 0.85rem; letter-spacing: 0.1em;
  transition: all 0.3s;
}
.event-pill:hover { background: rgba(212,175,55,0.25); }

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-us { background: #160404; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.why-card {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.08);
  transition: all 0.3s;
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.why-card:hover { border-color: rgba(212,175,55,0.2); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.8rem; }
.why-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  background: linear-gradient(135deg, #200808 0%, #1a0505 100%);
  position: relative; overflow: hidden;
}
.testimonials-slider { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-slide { display: none; text-align: center; }
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic;
  color: var(--text-light); line-height: 1.7;
  margin-bottom: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-author { color: var(--gold); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.1em; }
.testimonial-location { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.3rem; }
.testimonial-dots {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem;
}
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(212,175,55,0.3); cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════ */
.cta-strip {
  background: var(--gold);
  padding: 3rem 2rem;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--dark); font-weight: 700;
}
.cta-strip p { color: rgba(26,5,5,0.7); margin: 0.8rem 0 1.8rem; }
.btn-dark {
  background: var(--dark); color: var(--gold);
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s;
}
.btn-dark:hover { background: var(--maroon); color: var(--gold-light); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #0d0202;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(212,175,55,0.1);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; text-decoration: none; }
.footer-logo-img {
  height: 30px; /* Smaller for footer */
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a, .footer-col p {
  color: var(--text-muted); font-size: 0.88rem; text-decoration: none; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { line-height: 1.8; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.1); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.float-call,
.float-whatsapp {
  position: fixed; right: 2rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 1.5rem;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  z-index: 800;
  display: flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s;
  animation: floatPulse 2s ease-in-out infinite;
}
.float-call { bottom: 2rem; }
.float-call:hover { background: var(--gold-light); box-shadow: 0 6px 30px rgba(212,175,55,0.6); }
.float-whatsapp {
  bottom: 6rem;
  background: #25D366;
  color: #071f10;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.float-whatsapp:hover {
  background: #46e27f;
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}
.float-call i,
.float-whatsapp i { font-size: 1rem; }
@keyframes floatPulse { 0%,100%{box-shadow:0 4px 20px rgba(212,175,55,0.4)} 50%{box-shadow:0 4px 30px rgba(212,175,55,0.7)} }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.page-hero {
  height: 50vh; min-height: 400px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4);
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700;
  color: var(--white);
}
.page-hero p { color: var(--text-muted); margin-top: 1rem; letter-spacing: 0.2em; }

.story-section {
  background: linear-gradient(135deg, #200808 0%, #1a0505 100%);
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--white); margin-bottom: 1.5rem;
}
.story-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem; }
.story-img img { width: 100%; object-fit: cover; border: 2px solid rgba(212,175,55,0.2); }

.values-section { background: var(--dark); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  padding: 2.5rem; border: 1px solid rgba(212,175,55,0.1);
  background: #1e0808;
  transition: all 0.3s;
}
.value-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-5px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.8rem; }
.value-text { color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; }

.counters-section {
  background: var(--maroon);
  padding: 4rem 2rem;
  text-align: center;
}
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.counter-item {}
.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.counter-label { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-light); margin-top: 0.5rem; }

/* ═══════════════════════════════════════
   MENU PAGE
═══════════════════════════════════════ */
.menu-page { background: var(--dark); }
.menu-tabs-wrap {
  position: sticky;
  top: 76px;
  z-index: 20;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0.35rem;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(37,8,8,0.96), rgba(13,2,2,0.94));
  box-shadow: 0 22px 60px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05);
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.75) rgba(255,255,255,0.06);
}
.menu-tabs-wrap::-webkit-scrollbar { height: 6px; }
.menu-tabs-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 999px; }
.menu-tabs-wrap::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.75); border-radius: 999px; }
.menu-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  min-height: 48px;
  border: 0;
  max-width: none;
  margin: 0;
}
.menu-tab {
  flex: 0 0 auto;
  min-width: max-content;
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(212,175,55,0.08);
  cursor: pointer;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.menu-tab:hover {
  color: var(--gold-light);
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.1);
}
.menu-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.menu-tab.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-weight: 700;
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 10px 28px rgba(212,175,55,0.22), inset 0 -2px 0 rgba(61,7,7,0.55);
  position: relative;
  transform: translateY(-1px);
}
.menu-tab.active::after {
  display: none;
}
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0.9rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(34,10,10,0.98), rgba(18,5,5,0.98));
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-item:hover { border-color: rgba(212,175,55,0.45); transform: translateY(-3px); box-shadow: 0 24px 56px rgba(0,0,0,0.24); }
.menu-item-img {
  display: none;
}
.menu-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--white); font-weight: 700;
  margin-bottom: 0.45rem;
}
.menu-item-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; max-width: 52ch; }
.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.menu-item-price { color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.veg-badge, .non-veg-badge {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
}
.veg-badge { color: #4caf50; border: 1px solid #4caf50; }
.non-veg-badge { color: #ef5350; border: 1px solid #ef5350; }
.menu-item-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  justify-content: flex-start;
}
.menu-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  min-width: 130px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.menu-action:hover { transform: translateY(-1px); }
.menu-action-call {
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 24px rgba(212,175,55,0.18);
}
.menu-action-call:hover { box-shadow: 0 12px 30px rgba(212,175,55,0.28); }
.menu-action-whatsapp {
  color: #05190b;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.16);
}
.menu-action-whatsapp:hover {
  background: #46e27f;
  box-shadow: 0 12px 30px rgba(37,211,102,0.24);
}
.menu-action i { font-size: 0.96rem; }

/* ── LIQUOR MENU ── */
.liquor-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.liquor-full { grid-column: 1 / -1; }
.liquor-category {
  background: #1e0808;
  border: 1px solid rgba(212,175,55,0.12);
  padding: 1.8rem;
}
.liquor-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--gold);
  font-weight: 700; margin-bottom: 0.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.liquor-cat-note {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.05em; margin-bottom: 1rem; font-style: italic;
}
.liquor-items { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.liquor-item {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  min-width: 0;
  font-size: 0.9rem; color: var(--text-light);
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted rgba(212,175,55,0.08);
}
.liquor-item:last-child { border-bottom: none; }
.liquor-sub { color: var(--text-muted); font-size: 0.78rem; }
.liquor-price {
  color: var(--gold); font-weight: 600;
  font-size: 0.9rem; white-space: nowrap; flex-shrink: 0;
}
.liquor-cocktail { flex-direction: row; align-items: flex-start; gap: 1rem; }
.liquor-cocktail-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--white); font-weight: 600;
}
.liquor-cocktail-desc {
  display: block;
  font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem;
}
@media(max-width:900px) {
  .liquor-menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:600px) {
  .liquor-menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  nav { padding: 1.15rem 2rem; background: rgba(26,5,5,0.9); border-bottom: 1px solid rgba(212,175,55,0.12); }
  nav.scrolled { padding: 0.9rem 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 44px; max-width: 220px; }
}

@media (max-width: 980px) {
  .about-grid,
  .story-grid,
  .reservation-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dishes-track,
  .event-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ═══════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════ */
.events-page { background: var(--dark); }
.events-hero {
  background: linear-gradient(135deg, rgba(90,10,10,0.95), rgba(26,5,5,0.98)),
    url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?w=1600') center/cover;
  text-align: center; padding: 6rem 2rem;
}
.event-types { background: #160404; }
.event-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.event-type-card {
  position: relative; overflow: hidden; height: 300px; cursor: pointer;
}
.event-type-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.event-type-card:hover img { transform: scale(1.1); }
.event-type-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,5,5,0.95) 30%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.event-type-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); }
.event-type-overlay p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }

.catering-form-section { background: linear-gradient(135deg, #200808 0%, #1a0505 100%); }
.inquiry-form { max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 0.9rem 1.2rem;
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(212,175,55,0.6);
}
.form-group select option { background: #1a0505; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold-light);
  background: rgba(212,175,55,0.08);
  font-size: 0.88rem;
  line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.error {
  border-color: rgba(239,83,80,0.45);
  color: #ffb3b0;
  background: rgba(239,83,80,0.08);
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-full { grid-column: 1 / -1; }

/* ═══════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════ */
.gallery-page { background: var(--dark); }
.gallery-tabs {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.gallery-tab {
  padding: 0.6rem 1.5rem;
  background: transparent; border: 1px solid rgba(212,175,55,0.3); cursor: pointer;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s;
}
.gallery-tab.active, .gallery-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 600; }
.gallery-masonry {
  columns: 3; column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(212,175,55,0.0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(212,175,55,0.2); }
.gallery-item-overlay span { font-size: 2rem; color: white; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay span { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 5000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 2rem; color: white; cursor: pointer; background: none; border: none;
}

/* ═══════════════════════════════════════
   RESERVATION PAGE
═══════════════════════════════════════ */
.reservation-page { background: var(--dark); }
.reservation-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
  max-width: 1000px; margin: 0 auto;
}
.reservation-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--white); margin-bottom: 2rem;
}
.res-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.res-info-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.res-info-text p:first-child { color: var(--white); font-weight: 500; margin-bottom: 0.3rem; }
.res-info-text p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.hours-table { margin-top: 2rem; }
.hours-table h4 { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(212,175,55,0.1); font-size: 0.88rem; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { color: var(--text-light); }

.confirmation-overlay {
  display: none; text-align: center;
  background: linear-gradient(135deg, #200808, #1a0505);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 3rem;
}
.confirmation-overlay.show { display: block; }
.conf-icon { font-size: 4rem; color: var(--gold); margin-bottom: 1rem; }
.conf-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.conf-text { color: var(--text-muted); line-height: 1.8; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page { background: var(--dark); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info-card {
  background: linear-gradient(145deg, rgba(30,8,8,0.98), rgba(15,3,3,0.98));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before,
.contact-form-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--gold); margin-bottom: 2rem;
}
.contact-detail { display: flex; gap: 1.2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(212,175,55,0.1); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 999px;
  background: rgba(212,175,55,0.08);
}
.contact-detail-text h4 { color: var(--white); font-weight: 500; margin-bottom: 0.3rem; }
.contact-detail-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.contact-detail-text a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.contact-detail-text a:hover { color: var(--gold); }
.contact-form-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(30,8,8,0.98), rgba(15,3,3,0.98));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  padding: 2.5rem;
}
.map-embed {
  margin-top: 2rem;
  height: 250px; background: #2a0a0a;
  border: 1px solid rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0.85rem 1rem; }
  nav.scrolled { padding: 0.75rem 1rem; }
  .nav-logo { font-size: 1.55rem; }
  .nav-logo-img { height: 44px; max-width: 200px; }
  .footer-logo-img { height: 34px; max-width: 160px; }
  .nav-logo span { display: none; }
  .loader-logo { font-size: 2.8rem; }
  .loader-logo-img { height: 70px; max-width: 270px; }
  .loader-tagline { max-width: 280px; text-align: center; line-height: 1.8; }
  .loader-mandala { width: 240px; height: 240px; }
  .hero { min-height: 560px; height: 100svh; }
  .hero-content { padding: 0 1rem; }
  .hero-badge {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    padding: 0.4rem 0.8rem;
  }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .hero-sub { font-size: 0.82rem; letter-spacing: 0.12em; line-height: 1.7; }
  .hero-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 0.9rem 1.35rem; letter-spacing: 0.14em; }
  .hero-scroll { display: none; }
  .page-hero { min-height: 320px; height: 42vh; }
  .page-hero-content { padding: 0 1rem; }
  .page-hero h1 { font-size: clamp(2.45rem, 11vw, 4rem); }
  .page-hero p,
  .section-label { letter-spacing: 0.16em !important; line-height: 1.7; }
  .about-grid, .story-grid, .reservation-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .dishes-track { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .event-types-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .menu-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-img-stack { height: 350px; }
  .about-stats { gap: 1.25rem; justify-content: center; }
  .stat-num { font-size: 2.35rem; }
  .event-pill { width: 100%; max-width: 320px; }
  .testimonial-quote { font-size: 1.2rem; }
  .reservation-info,
  .contact-info-card,
  .contact-form-card,
  .inquiry-form {
    padding: 1.5rem !important;
  }
  .hours-row { gap: 0.75rem; flex-wrap: wrap; }
  .contact-detail { gap: 0.9rem; margin-bottom: 1.35rem; padding-bottom: 1.35rem; }
  .map-embed { height: 220px; }
  .gallery-tabs { overflow-x: auto; justify-content: flex-start; padding-bottom: 0.35rem; }
  .gallery-tab { flex: 0 0 auto; }
  .float-call, .float-whatsapp { right: 1rem; padding: 0.7rem 1.2rem; font-size: 0.8rem; }
  .float-call { bottom: 1rem; }
  .float-whatsapp { bottom: 4.8rem; }
  section { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
  nav { padding: 0.75rem 0.8rem; }
  .nav-logo { font-size: 1.35rem; max-width: calc(100vw - 76px); overflow: hidden; text-overflow: ellipsis; }
  .nav-logo-img { height: 42px; max-width: calc(100vw - 76px); }
  .footer-logo-img { height: 34px; max-width: calc(100vw - 76px); }
  .loader-logo-img { height: 64px; max-width: 240px; }
  .hamburger, .mobile-close { width: 42px; height: 42px; }
  .mobile-menu { justify-content: flex-start; padding-top: 5.25rem; }
  .mobile-menu a { font-size: clamp(1.6rem, 8.2vw, 2.15rem); }
  .mobile-menu a.active::after { margin-top: 0.3rem; }
  section { padding: 3.25rem 1rem; }
  .container { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-tabs-wrap { top: 64px; margin-bottom: 2rem; border-radius: 0; margin-left: -1.5rem; margin-right: -1.5rem; }
  .menu-tabs { padding: 0.1rem; }
  .menu-tab { padding: 0.72rem 0.9rem; font-size: 0.7rem; min-height: 42px; }
  .hero h1 { font-size: clamp(2.3rem, 13vw, 3.2rem); }
  .menu-item { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .menu-item-img { width: 100%; height: 150px; }
  .menu-item-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .menu-action { width: 100%; padding: 0.62rem 0.5rem; font-size: 0.7rem; }
  .dish-img-wrap { height: auto; }
  .about-img-stack { height: 300px; }
  .about-img-main { width: 82%; height: 74%; }
  .about-img-accent { width: 58%; height: 46%; }
  .counters-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .counter-num { font-size: 3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-call,
  .float-whatsapp {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }
  .float-call span,
  .float-whatsapp span { display: none; }
  .float-whatsapp { bottom: 4.35rem; }
}

@media (max-width: 360px) {
  .hero-badge { letter-spacing: 0.12em; }
  .hero h1 { font-size: 2.1rem; }
  .section-title { font-size: 2rem; }
  .mobile-menu { gap: 0.8rem; }
  .mobile-menu a { font-size: 1.55rem; }
  .contact-info-card,
  .contact-form-card,
  .reservation-info,
  .inquiry-form {
    padding: 1.1rem !important;
  }
}
