@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --charcoal: #1C1C1C;
  --beige: #F5EDE4;
  --gold: #C6A46C;
  --gold-dark: #a8884f;
  --ivory: #FAFAFA;
  --dark-gray: #2E2E2E;
  --white: #ffffff;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: var(--dark-gray);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 600; }
h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 500; }
h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 500; }

p { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}

.section-pad {
  padding: 100px 0;
}

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

/* ============================================
   NAVIGATION
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(28, 28, 28, 0.97);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--gold);
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

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

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

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

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

.btn-reserve-nav {
  background: var(--gold);
  color: var(--white) !important;
  padding: 12px 26px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition) !important;
  display: inline-block;
}

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

.btn-reserve-nav:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.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); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .btn-reserve-nav {
  font-family: 'Lato', sans-serif;
  font-size: 14px !important;
  padding: 14px 36px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 52px;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198,164,108,0.3);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 35px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  min-height: 52px;
}

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

.btn-text {
  display: inline-block;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color var(--transition);
}

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

/* ============================================
   PAGE HEADER (inner pages)
============================================ */
.page-header {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-header img.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 14px;
}

.breadcrumb {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity var(--transition);
}

.breadcrumb a:hover { opacity: 0.8; }

.breadcrumb span { margin: 0 8px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-content .section-label {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounceScroll 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================
   SIGNATURE DISHES
============================================ */
.dishes-section {
  background: var(--ivory);
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}

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

.dish-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.dish-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

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

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

.dish-card-body {
  padding: 26px 28px 30px;
  border-top: 2px solid var(--beige);
}

.dish-card-body h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.dish-card-body p {
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   ABOUT PREVIEW
============================================ */
.about-preview {
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-img {
  position: relative;
  height: 560px;
  overflow: hidden;
}

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

.split-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.split-text h2 {
  margin-bottom: 22px;
}

.split-text p {
  color: #666;
  margin-bottom: 36px;
}

/* ============================================
   EXPERIENCE SECTION
============================================ */
.experience-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/exp.png') center/cover;
  opacity: 0.06;
}

.experience-section .section-header {
  position: relative;
  z-index: 1;
}

.experience-section .section-header h2 {
  color: var(--white);
}

.experience-section .section-header p {
  color: rgba(255,255,255,0.5);
}

.experience-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  z-index: 1;
}

.exp-col {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid rgba(198,164,108,0.2);
  transition: border-color var(--transition), background var(--transition);
}

.exp-col:hover {
  border-color: var(--gold);
  background: rgba(198,164,108,0.05);
}

.exp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-icon img {
  width: 40px;
  height: 40px;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.85);
  opacity: 0.85;
}

.exp-col h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 20px;
}

.exp-col p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  background: var(--beige);
}

.testimonials-section .section-header h2 {
  margin-bottom: 0;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 60px;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-quote::before {
  content: '"';
  color: var(--gold);
  font-size: 80px;
  line-height: 0;
  vertical-align: -30px;
  margin-right: 6px;
  font-style: normal;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.testimonials-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.arrow-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0,0,0,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--dark-gray);
}

.arrow-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ============================================
   RESERVATION CTA
============================================ */
.reservation-cta {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.reservation-cta .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.reservation-cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.reservation-cta h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 18px;
}

.reservation-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 38px;
  font-size: 17px;
}

.btn-glow {
  background: var(--gold);
  color: var(--white);
  padding: 18px 46px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-glow:hover {
  background: var(--gold-dark);
  box-shadow: 0 0 40px rgba(198,164,108,0.5);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #111111;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-logo span {
  color: var(--gold);
}

.footer h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  transition: color var(--transition);
}

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

.footer-hours p,
.footer-contact p {
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-hours strong,
.footer-contact strong {
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.55);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198,164,108,0.1);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================
   WHO WE ARE
============================================ */
.story-section {
  background: var(--white);
}

.values-section {
  background: var(--ivory);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 60px;
}

.value-card {
  padding: 48px 36px;
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon img {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.value-card p {
  color: #777;
  font-size: 15px;
}

.meet-chef {
  background: var(--charcoal);
}

.meet-chef .section-header h2 {
  color: var(--white);
}

.meet-chef .section-label {
  color: var(--gold);
}

.chef-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.chef-portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 4px solid var(--gold);
}

.chef-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.chef-card h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}

.chef-title {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.chef-bio {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.8;
}

.gallery-section {
  background: var(--ivory);
}

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

.gallery-item {
  height: 280px;
  overflow: hidden;
}

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

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

/* ============================================
   MENU PAGE
============================================ */
.menu-filters {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  padding: 20px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.menu-tab:hover {
  color: var(--dark-gray);
}

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

.menu-content {
  background: var(--ivory);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

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

.menu-item {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: background var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.menu-item:hover {
  background: #fdf9f5;
}

.menu-item-info h3 {
  font-size: 18px;
  margin-bottom: 7px;
}

.menu-item-info p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.chef-rec-section {
  background: var(--beige);
}

.chef-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.rec-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.rec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.rec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rec-card:hover .rec-card-img img {
  transform: scale(1.06);
}

.rec-card-body {
  padding: 22px 24px;
}

.rec-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.rec-card-body p {
  color: #888;
  font-size: 14px;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-info-section {
  background: var(--white);
}

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

.contact-details h3 {
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  margin-top: 36px;
}

.contact-details h3:first-child {
  margin-top: 0;
}

.contact-details p {
  font-size: 16px;
  color: #555;
  margin-bottom: 6px;
}

.contact-details a {
  color: #555;
  transition: color var(--transition);
}

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

.map-container {
  height: 420px;
  overflow: hidden;
  background: #e5e5e5;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

.contact-form-section {
  background: var(--ivory);
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

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

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 9px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--dark-gray);
  outline: none;
  transition: border-color var(--transition);
  min-height: 52px;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.quick-reserve {
  background: var(--charcoal);
  padding: 60px 0;
  text-align: center;
}

.quick-reserve p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 26px;
}

/* ============================================
   ANIMATIONS & UTILITIES
============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

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

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

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

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

@media (max-width: 768px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }

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

  .split-img {
    height: 340px;
  }

  .split-img::after {
    display: none;
  }

  .experience-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

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

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

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-slide {
    padding: 0 20px;
  }

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

  .gallery-item {
    height: 180px;
  }

  .chef-rec-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 280px;
  }
}
