/* ========== CSS VARIABLES ========== */
:root {
  --crimson: #8B1A1A;
  --crimson-dark: #6B1010;
  --gold: #C9A84C;
  --gold-light: #D4B965;
  --gold-glow: #E8D49070;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --dark-bg: #111111;
  --off-white: #F5F0E8;
  --cream: #FAF6EF;
  --text-light: #E8E2D6;
  --text-muted: #9A9488;
  --overlay: rgba(10,10,10,0.65);
  --font-display: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 4px; }

/* ========== POPUP OVERLAY ========== */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.popup-modal {
  background: var(--cream);
  color: var(--charcoal);
  border-radius: 6px;
  max-width: 480px;
  width: 92%;
  position: relative;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.popup-overlay.active .popup-modal {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #555;
  z-index: 2;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(0,0,0,0.12); }
.popup-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.popup-body {
  padding: 28px 32px 32px;
  text-align: center;
}
.popup-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--crimson);
  margin-bottom: 8px;
}
.popup-body p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 22px;
  line-height: 1.5;
}
.popup-btn {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  padding: 14px 40px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.popup-btn:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}
/* Popup navigation dots */
.popup-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.popup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.popup-dot.active { background: var(--crimson); transform: scale(1.25); }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--crimson);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  font-weight: 500;
  z-index: 1001;
  position: relative;
}
.top-bar a { color: var(--gold-light); text-decoration: underline; }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 9000;
  transition: background 0.4s, padding 0.3s, box-shadow 0.4s;
  padding: 16px 0;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 52px;
  transition: height 0.3s;
  filter: brightness(0) invert(1);
}
.navbar.scrolled .nav-logo-img { height: 40px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.nav-logo-text span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a, .nav-links > li > .nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.nav-links > li > a:hover, .nav-links > li > .nav-trigger:hover { color: var(--gold); }
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown arrow */
.nav-arrow {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform 0.3s;
}
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 4px;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(-6px);
}
/* Invisible bridge that covers the gap between trigger and dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-dropdown a:first-child { border-radius: 4px 4px 0 0; }
.nav-dropdown a:last-child { border-radius: 0 0 4px 4px; }
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 13px 22px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #f0ebe3;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: var(--crimson);
  color: #fff;
}
.nav-dropdown .dd-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 2px;
}

/* Social links in nav */
.nav-social {
  display: flex;
  gap: 12px;
  margin-left: 12px;
}
.nav-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.nav-social a:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-social svg { width: 14px; height: 14px; fill: #fff; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrap {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
.hero-video-wrap video,
.hero-video-wrap .hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fallback {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 40%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-fallback-inner {
  text-align: center;
  opacity: 0.15;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--crimson);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.6) 80%, rgba(10,10,10,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  margin-bottom: 24px;
  font-weight: 500;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 36px;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.9s both;
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  padding: 16px 42px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,26,26,0.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 16px 42px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ========== SECTION GLOBALS ========== */
.section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-dark { background: var(--black); }
.section-charcoal { background: var(--charcoal); }
.section-cream { background: var(--cream); color: var(--charcoal); }

.section-tag {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 300;
}

/* Decorative divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.gold-divider.center { margin: 20px auto; }

/* ========== INTRO / WELCOME ========== */
.intro-section {
  padding: 110px 40px;
  background: var(--black);
}
.intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-left .section-title { color: #fff; }
.intro-left .section-desc { margin-bottom: 32px; }
.intro-image-wrap {
  position: relative;
}
.intro-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.intro-image-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

/* ========== FEATURED DISHES ========== */
.featured-section {
  padding: 100px 40px;
  background: var(--charcoal);
}
.featured-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.featured-header {
  text-align: center;
  margin-bottom: 60px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dish-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  group: true;
  aspect-ratio: 3/4;
}
.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.dish-card:hover img { transform: scale(1.08); }
.dish-card-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  transition: padding-bottom 0.3s;
}
.dish-card:hover .dish-card-overlay { padding-bottom: 28px; }
.dish-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}
.dish-card p {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ========== SIGNATURE BEIJING DUCK ========== */
.signature-section {
  padding: 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.signature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.signature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}
.signature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
}
.signature-content .section-title {
  color: #fff;
  font-size: 2.6rem;
}
.signature-content .section-desc { margin-bottom: 32px; }

/* ========== MENU PREVIEW ========== */
.menu-section {
  padding: 100px 40px;
  background: var(--cream);
  color: var(--charcoal);
}
.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.menu-header {
  text-align: center;
  margin-bottom: 50px;
}
.menu-header .section-title { color: var(--charcoal); }
.menu-header .section-desc { color: #777; margin: 0 auto; }
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.menu-cat-btn {
  padding: 10px 28px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #ddd;
  background: transparent;
  color: #666;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-cat-btn.active, .menu-cat-btn:hover {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.menu-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.menu-item-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.menu-item-info h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.menu-item-info p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}
.menu-cta {
  text-align: center;
  margin-top: 50px;
}

/* ========== CATERING ========== */
.catering-section {
  position: relative;
  padding: 120px 40px;
  background: var(--charcoal);
  overflow: hidden;
}
.catering-bg-pattern {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
}
.catering-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.catering-inner .section-title { color: #fff; }
.catering-inner .section-desc {
  margin: 0 auto 40px;
  max-width: 650px;
}
.catering-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.catering-feature {
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.catering-feature:hover { border-color: var(--gold); }
.catering-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.catering-feature h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}
.catering-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== RESERVATION BANNER ========== */
.reserve-banner {
  padding: 80px 40px;
  background: var(--crimson);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reserve-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.reserve-banner .section-title { color: #fff; font-size: 2.2rem; }
.reserve-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 32px;
  font-weight: 300;
}
.reserve-banner .btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 16px 48px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.reserve-banner .btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 100px 40px;
  background: var(--black);
}
.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.testimonial-src {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ========== GALLERY PREVIEW ========== */
.gallery-section {
  padding: 0;
  background: var(--charcoal);
}
.gallery-header-area {
  text-align: center;
  padding: 80px 40px 50px;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.gallery-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s;
  cursor: pointer;
}
.gallery-mosaic img:hover { opacity: 0.75; }

/* ========== HOURS & LOCATION ========== */
.info-section {
  padding: 100px 40px;
  background: var(--black);
}
.info-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 24px;
}
.info-hours-table {
  width: 100%;
  border-collapse: collapse;
}
.info-hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-hours-table td {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.info-hours-table td:last-child { text-align: right; color: #fff; }
.info-hours-table tr.closed td { color: var(--crimson); }
.info-map-wrap {
  width: 100%;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.info-map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.7) invert(0.92) contrast(0.9); }
.info-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.info-contact a:hover { color: var(--gold); }
.info-contact svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .nav-logo-text { font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}
.footer-col h6 {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-social svg { width: 15px; height: 15px; fill: var(--text-muted); }
.footer-social a:hover svg { fill: var(--gold); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .nav-toggle { display: flex; }
  
  /* Mobile menu */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 9999;
  }
  .nav-links.mobile-open > li > a,
  .nav-links.mobile-open > li > .nav-trigger {
    font-size: 1rem;
    padding: 14px 20px;
  }
  .nav-links.mobile-open .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: transparent;
    box-shadow: none;
    min-width: auto;
  }
  .nav-links.mobile-open .nav-dropdown a {
    color: var(--text-muted);
    border-bottom: none;
    padding: 8px 20px;
    font-size: 0.82rem;
  }
  
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-image-wrap { order: -1; }
  .signature-inner { grid-template-columns: 1fr; }
  .signature-content { padding: 60px 30px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .catering-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .info-inner { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .section { padding: 70px 24px; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
}
