/* ============================================
   DADABHAI HOTEL & RESTAURANT
   Palette: Mustard & Mahogany
   Fonts: Playfair Display + Lora
   ============================================ */

:root {
  --gold:       #C8860A;
  --gold-light: #E8A820;
  --gold-pale:  #F0C96A;
  --mahogany:   #8B3A0F;
  --dark:       #1C0A00;
  --dark-2:     #2E1200;
  --cream:      #F5EDD6;
  --cream-2:    #FDF6E8;
  --warm-mid:   #D4A96A;
  --text-body:  #3D2000;
  --text-muted: #7A5C3A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream-2);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Grain Overlay ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(28, 10, 0, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-bengali {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.logo-bengali.large { font-size: 2.2rem; }
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { opacity: 1; color: var(--gold-pale); }
.nav-links a:hover::after { width: 100%; }
.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: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 10, 0, 0.82) 0%,
    rgba(46, 18, 0, 0.65) 50%,
    rgba(139, 58, 15, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 72px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--warm-mid);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease-out) forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(245, 237, 214, 0.4);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
  transform: translateY(-2px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-motif {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: clamp(120px, 18vw, 220px);
  opacity: 0.15;
  z-index: 2;
  animation: rotateSlow 60s linear infinite;
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

/* ── Marquee ── */
.marquee-strip {
  background: var(--dark);
  border-top: 1px solid rgba(200, 134, 10, 0.3);
  border-bottom: 1px solid rgba(200, 134, 10, 0.3);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}
.marquee-track .sep {
  color: var(--gold);
  opacity: 1;
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section Shared ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-label.light { color: var(--gold-pale); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--mahogany);
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-pale); }

/* ── About ── */
.about {
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-col {
  position: relative;
}
.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.about-img-frame:hover .about-img { transform: scale(1.04); }
.about-img-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  transform: translate(16px, 16px);
  pointer-events: none;
  z-index: -1;
}
.about-stat-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--dark);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border-left: 3px solid var(--gold);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  text-align: center;
}
.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.about-body em { color: var(--mahogany); font-style: italic; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 134, 10, 0.2);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Menu Section ── */
.menu-section {
  background: var(--dark);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.menu-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
  text-align: center;
}
.menu-subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--warm-mid);
  opacity: 0.8;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 3rem;
  border: 1px solid rgba(200, 134, 10, 0.3);
  overflow: hidden;
}
.tab-btn {
  flex: 1;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(200, 134, 10, 0.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  opacity: 0.6;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active, .tab-btn:hover {
  background: var(--gold);
  color: var(--dark);
  opacity: 1;
}
.menu-content {
  max-width: 1280px;
  margin: 0 auto;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease-out);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: var(--dark-2);
  border: 1px solid rgba(200, 134, 10, 0.15);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 134, 10, 0.5);
}
.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body {
  padding: 1.5rem;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.menu-card-body h3 span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 0.2rem;
}
.menu-card-body p {
  font-size: 0.88rem;
  color: rgba(245, 237, 214, 0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── Specialties ── */
.specialties {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}
.spec-bg {
  position: absolute;
  inset: 0;
}
.spec-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
}
.spec-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 10, 0, 0.92) 0%,
    rgba(139, 58, 15, 0.85) 100%
  );
}
.spec-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.spec-content .section-title {
  margin-bottom: 3.5rem;
}
.spec-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.spec-card {
  padding: 2rem;
  border: 1px solid rgba(200, 134, 10, 0.25);
  background: rgba(28, 10, 0, 0.5);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.spec-card:hover {
  border-color: var(--gold);
  background: rgba(28, 10, 0, 0.7);
}
.spec-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}
.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.spec-card p {
  font-size: 0.88rem;
  color: rgba(245, 237, 214, 0.6);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
  padding: 7rem 2rem;
  background: var(--cream-2);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 134, 10, 0.3), transparent);
}
.test-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.test-inner .section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.test-inner .section-label {
  text-align: center;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.test-card {
  padding: 2.5rem;
  background: white;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 30px rgba(28, 10, 0, 0.06);
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 10, 0, 0.12);
}
.test-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 0.5rem;
  font-weight: 900;
}
.test-card p {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.test-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.test-author strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.test-author span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Contact ── */
.contact {
  padding: 7rem 2rem;
  background: var(--dark);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-title { color: var(--cream); }
.contact-info .section-title em { color: var(--gold-pale); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.contact-item p {
  font-size: 0.9rem;
  color: rgba(245, 237, 214, 0.65);
  line-height: 1.7;
}
.maps-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(200, 134, 10, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.maps-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.map-frame {
  height: 450px;
  border: 1px solid rgba(200, 134, 10, 0.3);
  overflow: hidden;
  position: relative;
}
.map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(200, 134, 10, 0.15);
  pointer-events: none;
}

/* ── Footer ── */
.footer {
  background: #0E0500;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(200, 134, 10, 0.2);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 237, 214, 0.4);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.footer-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.footer-copy p {
  font-size: 0.78rem;
  color: rgba(245, 237, 214, 0.3);
}
.footer-bengali-quote {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(200, 134, 10, 0.5) !important;
  font-size: 0.85rem !important;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.about-features .feature-item:nth-child(1) { transition-delay: 0.1s; }
.about-features .feature-item:nth-child(2) { transition-delay: 0.2s; }
.about-features .feature-item:nth-child(3) { transition-delay: 0.3s; }
.spec-cards .spec-card:nth-child(1) { transition-delay: 0.05s; }
.spec-cards .spec-card:nth-child(2) { transition-delay: 0.15s; }
.spec-cards .spec-card:nth-child(3) { transition-delay: 0.25s; }
.spec-cards .spec-card:nth-child(4) { transition-delay: 0.35s; }
.test-grid .test-card:nth-child(1) { transition-delay: 0.05s; }
.test-grid .test-card:nth-child(2) { transition-delay: 0.15s; }
.test-grid .test-card:nth-child(3) { transition-delay: 0.25s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-col { max-width: 500px; margin: 0 auto; }
  .spec-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .map-frame { height: 350px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(28, 10, 0, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(200, 134, 10, 0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .spec-cards { grid-template-columns: 1fr; }
  .menu-tabs { flex-wrap: wrap; }
  .tab-btn { flex: none; width: 50%; border-right: none; border-bottom: 1px solid rgba(200, 134, 10, 0.3); }
  .about-stat-card { right: 0; bottom: -1.5rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .footer-links { gap: 1rem; }
  .about { padding: 5rem 1.5rem; }
  .menu-section, .specialties, .testimonials, .contact { padding: 5rem 1.5rem; }
}