/* ============================================================
   THE PUFF HOUSE — CSS Design System
   ============================================================ */

:root {
  --bg:         #1a1a1a;
  --bg-card:    #242424;
  --bg-card2:   #2c2c2c;
  --gold:       #F5A623;
  --gold-dark:  #E8960A;
  --gold-light: #FFD080;
  --warm-white: #FFF8F0;
  --text-muted: #b0a090;
  --green-veg:  #4CAF50;
  --red-spicy:  #e53935;
  --teal-new:   #00BCD4;
  --border:     rgba(245, 166, 35, 0.15);
  --shadow-gold: 0 0 30px rgba(245, 166, 35, 0.25);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.25s ease;
  --font-script: 'Pacifico', cursive;
  --font-body:   'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 90px 0; }

.gold { color: var(--gold); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1000;
}

.marquee-wrapper { display: flex; overflow: hidden; }

.marquee-content {
  display: inline-block;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
  white-space: nowrap;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}

.header.scrolled {
  background: rgba(20, 18, 16, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(245,166,35,0.6);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-white);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}

.nav-link:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

/* Bokeh background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #2a1a00 0%, #1a1a1a 60%);
  z-index: 0;
}

.bokeh-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: bokehFloat 8s ease-in-out infinite;
}

.b1 { width: 400px; height: 400px; background: var(--gold); top: -10%; left: 10%; animation-delay: 0s; }
.b2 { width: 300px; height: 300px; background: #E8960A; top: 20%; right: 5%; animation-delay: 1.5s; }
.b3 { width: 200px; height: 200px; background: var(--gold-light); bottom: 20%; left: 5%; animation-delay: 3s; }
.b4 { width: 250px; height: 250px; background: #ff6b35; bottom: 10%; right: 15%; animation-delay: 2s; }
.b5 { width: 180px; height: 180px; background: var(--gold); top: 40%; left: 40%; animation-delay: 4s; }
.b6 { width: 350px; height: 350px; background: #a0520a; top: -5%; right: 30%; animation-delay: 0.8s; }
.b7 { width: 150px; height: 150px; background: var(--gold-light); top: 60%; right: 40%; animation-delay: 2.5s; }
.b8 { width: 220px; height: 220px; background: #c06010; bottom: 30%; left: 30%; animation-delay: 1s; }

@keyframes bokehFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-25px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.veg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #81c784;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.veg-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--green-veg);
  border-radius: 50%;
  border: 2px solid rgba(76,175,80,0.5);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 10vw, 6.5rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 12px;
}

.neon-glow {
  text-shadow:
    0 0 10px rgba(245, 166, 35, 0.9),
    0 0 25px rgba(245, 166, 35, 0.7),
    0 0 50px rgba(245, 166, 35, 0.5),
    0 0 90px rgba(245, 166, 35, 0.3);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(245,166,35,0.9),
      0 0 25px rgba(245,166,35,0.7),
      0 0 50px rgba(245,166,35,0.5),
      0 0 90px rgba(245,166,35,0.3);
  }
  50% {
    text-shadow:
      0 0 15px rgba(245,166,35,1),
      0 0 35px rgba(245,166,35,0.9),
      0 0 70px rgba(245,166,35,0.7),
      0 0 120px rgba(245,166,35,0.4);
  }
}

.hero-tagline {
  font-size: clamp(1.1rem, 3.5vw, 1.7rem);
  color: var(--warm-white);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.hero-tagline em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(245,166,35,0.12);
  transform: translateY(-2px);
}

.btn-full { width: 100%; margin-top: 20px; }

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(245,166,35,0.1);
  border-radius: 50px;
  border: 1px solid rgba(245,166,35,0.2);
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--warm-white);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: #1e1e1e; }

.about-desc {
  max-width: 650px;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 56px;
  line-height: 1.8;
}

.about-desc strong { color: var(--gold); }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(245,166,35,0.4);
}

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

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--warm-white);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.menu-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* Tabs */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  white-space: nowrap;
  margin-bottom: -1px;
}

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

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(245,166,35,0.06);
}

/* Menu Panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category-header {
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.menu-category-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.menu-category-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Chalkboard style for Introducing section */
.chalkboard {
  background: #1a2a1a;
  border-left-color: var(--teal-new);
  position: relative;
}

.chalk-decoration {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--teal-new);
  margin-bottom: 8px;
  font-weight: 700;
}

/* Dual-price header row */
.menu-price-header {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  gap: 12px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.menu-price-header span:not(:first-child) { text-align: right; }

/* Menu Grid */
.menu-grid { display: flex; flex-direction: column; gap: 10px; }

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: all var(--transition);
  cursor: default;
}

.menu-card:hover {
  background: var(--bg-card2);
  border-color: rgba(245,166,35,0.35);
  transform: translateX(4px);
}

/* Dual price layout */
.dual-price .menu-card {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  align-items: center;
  gap: 12px;
}

/* Single price layout */
.single-price .menu-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-card-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.menu-card-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warm-white);
}

.item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  width: 100%;
  line-height: 1.5;
}

.item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  flex-shrink: 0;
}

.price-special {
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* Badges */
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-bestseller {
  background: rgba(245,166,35,0.2);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.4);
}

.badge-special {
  background: rgba(229, 57, 53, 0.2);
  color: #ef9a9a;
  border: 1px solid rgba(229,57,53,0.4);
}

.badge-spicy {
  background: rgba(229,57,53,0.1);
  color: #ff8a80;
  padding: 2px 6px;
}

.badge-new {
  background: rgba(0,188,212,0.15);
  color: var(--teal-new);
  border: 1px solid rgba(0,188,212,0.3);
}

/* Veg dot - small */
.veg-dot-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 2px solid var(--green-veg);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}

.veg-dot-sm::after {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green-veg);
  border-radius: 50%;
  display: block;
}

/* Highlight card (The Puff House Special) */
.highlight-card {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(232,150,10,0.06));
  border-color: rgba(245,166,35,0.4);
}

/* Menu CTA bar */
.menu-cta-bar {
  margin-top: 48px;
  text-align: center;
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.menu-cta-bar p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: #1e1e1e; }

.gallery-caption {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.ig-link { color: var(--gold); font-weight: 600; }
.ig-link:hover { text-decoration: underline; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

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

/* Dark gradient overlay so the label is always readable */
.gallery-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--warm-white);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245,166,35,0.25);
}

.gallery-ig-cta {
  margin-top: 36px;
  text-align: center;
}

.ig-btn {
  gap: 10px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--bg); }

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

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

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--warm-white);
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold); }

.contact-map iframe {
  border-radius: var(--radius);
  display: block;
  filter: grayscale(30%) brightness(0.85);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111;
  border-top: 1px solid rgba(245,166,35,0.1);
  padding: 56px 0 24px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(245,166,35,0.5);
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

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

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #1a1a1a;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(245,166,35,0.45);
  transition: all var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.float-call:hover {
  background: var(--gold-dark);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(245,166,35,0.6);
  animation: none;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(245,166,35,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(245,166,35,0.7); }
}

/* ============================================================
   FADE-IN ANIMATION (scroll-triggered via JS)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children in grids */
.feature-cards .fade-in:nth-child(2) { transition-delay: 0.1s; }
.feature-cards .fade-in:nth-child(3) { transition-delay: 0.2s; }
.feature-cards .fade-in:nth-child(4) { transition-delay: 0.3s; }

.menu-grid .fade-in:nth-child(even) { transition-delay: 0.05s; }

.gallery-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .fade-in:nth-child(4) { transition-delay: 0.15s; }
.gallery-grid .fade-in:nth-child(5) { transition-delay: 0.25s; }
.gallery-grid .fade-in:nth-child(6) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }

  .footer-top {
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .header-inner { height: 56px; }

  /* Mobile nav */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20,18,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 850;
  }

  .nav.open { transform: translateX(0); }

  .nav-link { font-size: 1.3rem; }

  .nav-cta {
    font-size: 1.1rem;
    padding: 14px 36px;
  }

  .hamburger { display: flex; z-index: 860; position: relative; }

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

  .btn { padding: 13px 28px; font-size: 0.9rem; }

  .menu-tabs {
    gap: 6px;
  }

  .tab-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .dual-price .menu-card {
    grid-template-columns: 1fr 70px 70px;
    gap: 8px;
  }

  .menu-price-header {
    grid-template-columns: 1fr 70px 70px;
    gap: 8px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .float-call span { display: none; }
  .float-call { padding: 16px; border-radius: 50%; }

  .contact-card { padding: 24px; }

  .feature-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .feature-cards { grid-template-columns: 1fr; }

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

  .g-wide { grid-column: span 1; }
}
