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

:root {
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --ivory: #F5EFE6;
  --ivory-light: #FDF8F0;
  --gold: #D4AF37;
  --gold-light: #E0C45A;
  --gold-dark: #B8962E;
  --text-dark: #1A1A1A;
  --shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
  --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--ivory-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.script {
  font-family: 'Dancing Script', cursive;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.3);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  line-height: 1.7;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto;
  border-radius: 2px;
}

.divider-left {
  margin: 16px 0;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

#preloader .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 4px;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-brand .brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--charcoal);
}

.nav-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ivory);
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-brand .brand-tag {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.zoom {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245, 239, 230, 0.04) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4.5rem;
  color: var(--ivory);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245, 239, 230, 0.8);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero slider controls */
.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}

.hero-arrow {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 239, 230, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 239, 230, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--ivory-light);
  box-shadow: var(--shadow);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
}

.about-badge span {
  font-size: 1.8rem;
  display: block;
  font-family: 'Playfair Display', serif;
}

.about-badge small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text .section-title {
  font-size: 2.6rem;
}

.about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
}

.about-feature h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.about-feature p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: #666;
}

/* ===== SIGNATURE DISHES ===== */
#signature {
  background: var(--charcoal);
}

#signature .section-title {
  color: var(--ivory);
}

#signature .section-subtitle {
  color: rgba(245, 239, 230, 0.7);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dish-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(245, 239, 230, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.dish-img {
  height: 220px;
  overflow: hidden;
}

.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.dish-card:hover .dish-img img {
  transform: scale(1.08);
}

.dish-info {
  padding: 20px;
}

.dish-info h3 {
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 6px;
}

.dish-info p {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.6);
  line-height: 1.6;
  margin-bottom: 12px;
}

.dish-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.dish-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ===== MENU ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menu-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.menu-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.menu-item-img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-body {
  flex: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.menu-item-header h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
}

.menu-item-header .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.menu-item-diet {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--charcoal);
  margin-top: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--charcoal);
}

#gallery .section-title {
  color: var(--ivory);
}

#gallery .section-subtitle {
  color: rgba(245, 239, 230, 0.7);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--ivory);
  font-size: 2rem;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ===== REVIEWS ===== */
.reviews-carousel {
  overflow: hidden;
  position: relative;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
}

.review-name small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: #666;
  font-family: 'Montserrat', sans-serif;
}

.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ===== OFFERS ===== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offer-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.offer-img {
  height: 200px;
  overflow: hidden;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.offer-card:hover .offer-img img {
  transform: scale(1.05);
}

.offer-body {
  padding: 28px;
}

.offer-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--charcoal);
  color: white;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 700;
}

.offer-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.offer-body p {
  color: #444;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.offer-valid {
  font-size: 0.8rem;
  color: #666;
}

.offer-valid i {
  margin-right: 6px;
}

/* ===== RESERVATION ===== */
#reservation {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal) 100%);
}

#reservation .section-title {
  color: var(--ivory);
}

#reservation .section-subtitle {
  color: rgba(245, 239, 230, 0.7);
}

.reservation-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reservation-info h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.reservation-info p {
  color: rgba(245, 239, 230, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.reservation-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(245, 239, 230, 0.8);
}

.reservation-contact-item i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.reservation-form {
  background: rgba(245, 239, 230, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(245, 239, 230, 0.6);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(245, 239, 230, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  color: var(--ivory);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 239, 230, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 239, 230, 0.35);
}

.form-group select option {
  background: var(--charcoal);
  color: var(--ivory);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
}

.contact-card a {
  color: var(--gold);
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--gold-dark);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--ivory);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(245, 239, 230, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ivory);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer h4 {
  color: var(--ivory);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 239, 230, 0.6);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-list i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

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

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--charcoal);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* ===== AOS OVERRIDE ===== */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-script {
    font-size: 1.4rem;
  }

  .hero-dots {
    bottom: 80px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

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

  .about-img-secondary {
    width: 160px;
    height: 160px;
    right: 0;
    bottom: -20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

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

  .reservation-form {
    padding: 24px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .gallery-item.tall {
    grid-row: span 1;
  }

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

  .about-img-main img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .review-card {
    padding: 24px 20px;
  }
}