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

:root {
  --primary: #c2410c;
  --primary-dark: #9a3412;
  --primary-light: #fb923c;
  --gold: #b45309;
  --gold-light: #fbbf24;
  --green: #15803d;
  --cream: #fef9f0;
  --cream-dark: #fdf0dc;
  --dark: #1c1917;
  --gray-800: #292524;
  --gray-700: #44403c;
  --gray-600: #57534e;
  --gray-400: #a8a29e;
  --gray-200: #e7e5e4;
  --gray-100: #f5f5f4;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12), 0 10px 10px -5px rgba(0,0,0,0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h4, h5 { font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-600); }
a { text-decoration: none; color: inherit; }
.text-center { text-align: center; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  background: rgba(194, 65, 12, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; color: var(--dark); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; margin: 0 auto 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all 0.25s ease; border: none; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #92400e; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--dark); }
.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: white; }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; border-radius: 8px; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed; top: 0; width: 100%; z-index: 1001;
  background: var(--dark); padding: 0.5rem 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.85);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-item { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-item i { color: var(--gold-light); font-size: 0.8rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 38px; width: 100%; z-index: 1000;
  transition: all 0.3s ease; background: transparent; padding: 1.5rem 0;
}
.navbar.scrolled { background: var(--dark); padding: 0.875rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  color: white; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem;
}
.logo-emblem {
  width: 46px; height: 46px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; border: 2px solid var(--gold-light);
}
.logo-text-sub { display: block; font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 500; opacity: 0.75; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); padding: 0.5rem 0.875rem; border-radius: 5px; font-weight: 500; font-size: 0.92rem; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.1); }
.nav-reserve { background: var(--primary) !important; color: white !important; border-radius: 6px !important; padding: 0.5rem 1.1rem !important; }
.nav-reserve:hover { background: var(--primary-dark) !important; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,25,23,0.92) 0%, rgba(28,25,23,0.55) 60%, rgba(28,25,23,0.2) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 10rem; max-width: 660px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-light); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-tag::before, .hero-tag::after { content: '—'; opacity: 0.5; }

.hero h1 { color: white; margin-bottom: 1rem; }
.hero h1 em { color: var(--primary-light); font-style: italic; }
.hero .hero-desc { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 500px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; }
.hero-meta-item { }
.hero-meta-item .meta-val { display: block; font-size: 1.5rem; font-weight: 700; color: white; font-family: 'Playfair Display', serif; }
.hero-meta-item .meta-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement { background: var(--primary); padding: 0.65rem 0; text-align: center; font-size: 0.85rem; color: white; }
.announcement a { color: var(--gold-light); font-weight: 600; text-decoration: underline; }

/* ===== FEATURED DISHES ===== */
.featured-section { background: var(--cream); }
.dishes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.5rem; }
.dish-card {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.dish-photo { height: 220px; overflow: hidden; position: relative; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.dish-card:hover .dish-photo img { transform: scale(1.08); }
.dish-badge {
  position: absolute; top: 0.875rem; left: 0.875rem;
  background: var(--primary); color: white;
  font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.65rem;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em;
}
.dish-info { padding: 1.4rem; }
.dish-info h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.4rem; }
.dish-info p { font-size: 0.85rem; margin-bottom: 0.875rem; }
.dish-footer { display: flex; justify-content: space-between; align-items: center; }
.dish-price { font-size: 1.2rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.dish-tag { font-size: 0.72rem; font-weight: 600; color: var(--gold); background: rgba(180,83,9,0.1); padding: 0.2rem 0.6rem; border-radius: 4px; }

/* ===== STORY SECTION ===== */
.story-section { background: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-images { position: relative; }
.story-img-main { border-radius: 16px; overflow: hidden; height: 480px; }
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; height: 200px; border-radius: 16px; overflow: hidden;
  border: 6px solid white; box-shadow: var(--shadow-xl);
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-since {
  position: absolute; top: -1rem; left: -1rem;
  background: var(--primary); color: white;
  padding: 1.25rem 1.5rem; border-radius: 14px; text-align: center; box-shadow: var(--shadow-xl);
}
.story-since .yr { display: block; font-size: 2rem; font-weight: 800; font-family: 'Playfair Display', serif; line-height: 1; }
.story-since .yr-label { font-size: 0.7rem; font-weight: 600; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; }
.story-content { }
.story-content p { margin-bottom: 1rem; line-height: 1.75; }
.story-divider { width: 60px; height: 3px; background: var(--primary); margin: 1.5rem 0; border-radius: 2px; }
.story-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.story-feature { display: flex; gap: 0.875rem; align-items: flex-start; }
.story-feature-icon { width: 42px; height: 42px; background: rgba(194,65,12,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.story-feature h5 { margin-bottom: 0.15rem; font-size: 0.9rem; }
.story-feature p { font-size: 0.8rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-label { background: rgba(255,255,255,0.12); color: var(--gold-light); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 1.5rem; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 2rem; }
.testimonial-stars { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; font-family: 'Playfair Display', serif; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.95rem; flex-shrink: 0; }
.testimonial-name { font-weight: 600; color: white; font-size: 0.9rem; }
.testimonial-source { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ===== RESERVATION CTA ===== */
.reserve-cta { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 4.5rem 0; }
.reserve-cta .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.reserve-cta h2 { color: white; font-size: 2.2rem; }
.reserve-cta p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; font-size: 1.05rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 11rem 0 4.5rem;
  background: var(--dark); position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(28,25,23,0.82); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 0.875rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.85rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--gold-light); font-weight: 500; }

/* ===== MENU PAGE ===== */
.menu-section { background: var(--cream); }
.menu-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3.5rem; }
.menu-nav-btn {
  padding: 0.6rem 1.5rem; border-radius: 999px; font-size: 0.88rem;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
  border: 2px solid var(--gray-200); background: white; color: var(--gray-700);
  font-family: 'Inter', sans-serif;
}
.menu-nav-btn.active, .menu-nav-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.menu-category { display: none; }
.menu-category.active { display: block; }
.menu-category-title {
  text-align: center; margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200); position: relative;
}
.menu-category-title h2 { font-size: 2rem; color: var(--dark); }
.menu-category-title::after { content: '✦'; display: block; color: var(--primary); font-size: 1rem; margin-top: 0.75rem; }
.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 1.25rem; }
.menu-item {
  background: white; border-radius: 12px; padding: 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  box-shadow: var(--shadow); transition: all 0.2s; border: 1px solid transparent;
}
.menu-item:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.menu-item-img { width: 88px; height: 88px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-info { flex: 1; }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.4rem; }
.menu-item-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.menu-item-price { font-size: 1.1rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; white-space: nowrap; }
.menu-item-desc { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
.menu-item-tags { display: flex; gap: 0.4rem; margin-top: 0.6rem; flex-wrap: wrap; }
.menu-tag { font-size: 0.68rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.menu-tag.gf { background: rgba(21,128,61,0.12); color: var(--green); }
.menu-tag.v { background: rgba(21,128,61,0.12); color: var(--green); }
.menu-tag.spicy { background: rgba(194,65,12,0.12); color: var(--primary); }
.menu-tag.chef { background: rgba(180,83,9,0.12); color: var(--gold); }
.menu-tag.new { background: rgba(194,65,12,0.12); color: var(--primary); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 0.875rem; }
.gallery-item { border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(28,25,23,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.gallery-item:hover .gallery-overlay { background: rgba(28,25,23,0.35); }
.gallery-overlay i { color: white; font-size: 2rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ===== ABOUT / TEAM ===== */
.team-section { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; }
.team-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-photo { height: 290px; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(28,25,23,0.65) 0%,transparent 55%); }
.team-info { padding: 1.4rem; }
.team-info h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-role { color: var(--primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.4rem; }
.team-bio { font-size: 0.82rem; color: var(--gray-600); }

/* ===== RESERVATION FORM ===== */
.reservations-section { background: var(--cream); padding: 5rem 0; }
.reservations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.res-form-card { background: white; border-radius: 20px; padding: 2.75rem; box-shadow: var(--shadow-xl); border-top: 4px solid var(--primary); }
.res-form-card h3 { font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
.res-form-card > p { margin-bottom: 2rem; font-size: 0.9rem; }
.res-info-card { background: var(--dark); border-radius: 20px; padding: 2.5rem; color: white; position: sticky; top: 110px; }
.res-info-card h3 { color: white; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.res-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 0.9rem; }
.res-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.res-detail-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0; font-size: 0.9rem; }
.res-detail h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.res-detail p, .res-detail a { color: white; font-size: 0.9rem; }
.res-detail a:hover { color: var(--gold-light); }
.hours-table { margin-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }
.hours-table h4 { color: white; font-size: 0.9rem; margin-bottom: 0.875rem; font-family: 'Inter', sans-serif; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.82rem; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-row .day { color: rgba(255,255,255,0.5); }
.hours-row .time { color: white; font-weight: 500; }
.hours-row .closed { color: var(--gray-400); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--gray-700); margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--dark);
  transition: border-color 0.2s; background: white;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(194,65,12,0.1);
}
.form-textarea { resize: vertical; min-height: 105px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--gray-400); margin-top: 0.875rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card { background: var(--dark); border-radius: 20px; padding: 2.5rem; color: white; }
.contact-info-card h3 { color: white; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 0.9rem; }
.map-embed { border-radius: 14px; overflow: hidden; margin-top: 1.5rem; border: 2px solid rgba(255,255,255,0.1); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }
.contact-form-card { background: white; border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-xl); }
.contact-form-card h3 { font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
.contact-form-card > p { margin-bottom: 1.75rem; font-size: 0.9rem; }

/* ===== REVIEW ===== */
.review-section { background: white; }
.review-card {
  max-width: 680px; margin: 0 auto;
  background: var(--dark); border-radius: 24px; padding: 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.review-card::before { content: ''; position: absolute; top: -40%; right: -15%; width: 300px; height: 300px; background: rgba(194,65,12,0.15); border-radius: 50%; }
.review-card h3 { color: white; font-size: 1.8rem; margin-bottom: 1rem; }
.review-card p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.review-stars { font-size: 2rem; color: var(--gold-light); margin-bottom: 1rem; }
.review-btn { background: var(--primary); color: white; font-weight: 700; padding: 1rem 2.25rem; border-radius: 8px; display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.review-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed; bottom: 2rem; right: 2rem; width: 62px; height: 62px;
  background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 9999; box-shadow: var(--shadow-xl); transition: all 0.3s; border: none;
}
.chatbot-toggle:hover { transform: scale(1.1); background: var(--primary-dark); }
.chatbot-toggle i { font-size: 1.5rem; color: white; }
.chat-notification { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: white; font-weight: 700; border: 2px solid white; }
.chatbot-window {
  position: fixed; bottom: 7rem; right: 2rem; width: 380px; height: 530px;
  background: white; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  z-index: 9998; display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.8) translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); transform-origin: bottom right;
}
.chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header { background: var(--dark); padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.chatbot-avatar { width: 42px; height: 42px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.chatbot-header-info h4 { color: white; font-size: 0.9rem; font-family: 'Playfair Display', serif; margin-bottom: 0.1rem; }
.chatbot-header-info p { color: rgba(255,255,255,0.55); font-size: 0.72rem; }
.online-dot { display: inline-block; width: 7px; height: 7px; background: #34d399; border-radius: 50%; margin-right: 4px; }
.chatbot-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.55); cursor: pointer; font-size: 1.05rem; transition: color 0.2s; }
.chatbot-close:hover { color: white; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; background: #faf9f8; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 2px; }
.chat-message { display: flex; gap: 0.5rem; align-items: flex-end; animation: chatFadeIn 0.3s ease; }
.chat-message.user { flex-direction: row-reverse; }
@keyframes chatFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.msg-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: white; flex-shrink: 0; }
.chat-message.user .msg-avatar { background: var(--gray-700); }
.msg-bubble { max-width: 78%; padding: 0.75rem 1rem; border-radius: 14px; font-size: 0.85rem; line-height: 1.55; }
.chat-message.bot .msg-bubble { background: white; color: var(--dark); border-bottom-left-radius: 4px; box-shadow: var(--shadow); }
.chat-message.user .msg-bubble { background: var(--primary); color: white; border-bottom-right-radius: 4px; }
.chatbot-quick-replies { padding: 0.75rem 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; background: white; border-top: 1px solid var(--gray-200); }
.quick-reply-btn { background: rgba(194,65,12,0.08); color: var(--primary); border: 1px solid rgba(194,65,12,0.2); border-radius: 999px; padding: 0.35rem 0.875rem; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.quick-reply-btn:hover { background: var(--primary); color: white; }
.chatbot-input-area { display: flex; padding: 0.875rem 1rem; gap: 0.5rem; background: white; border-top: 1px solid var(--gray-200); }
.chatbot-input { flex: 1; padding: 0.6rem 1rem; border: 1.5px solid var(--gray-200); border-radius: 999px; font-family: 'Inter', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.chatbot-input:focus { border-color: var(--primary); }
.chatbot-send { width: 38px; height: 38px; background: var(--primary); border: none; border-radius: 50%; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.chatbot-send:hover { background: var(--primary-dark); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 99999;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: white; border-radius: 24px; padding: 2.75rem; max-width: 480px; width: 100%;
  text-align: center; transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-icon { width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.9rem; }
.modal-icon.success { background: rgba(21,128,61,0.12); color: var(--green); }
.modal-icon.primary { background: rgba(194,65,12,0.12); color: var(--primary); }
.modal-card h3 { font-family: 'Playfair Display', serif; margin-bottom: 0.75rem; font-size: 1.5rem; }
.modal-card p { margin-bottom: 1.25rem; font-size: 0.9rem; line-height: 1.7; }
.modal-confirm-box { background: var(--cream); border-radius: 12px; padding: 1.25rem; text-align: left; margin-bottom: 1.25rem; }
.modal-confirm-box h4 { font-size: 0.78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.875rem; font-family: 'Inter', sans-serif; }
.confirm-row { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.6rem; font-size: 0.85rem; }
.confirm-row:last-child { margin: 0; }
.confirm-row i { color: var(--primary); width: 16px; flex-shrink: 0; }
.sms-preview { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 1rem 1.25rem; font-size: 0.82rem; color: var(--gray-700); text-align: left; margin-bottom: 1.25rem; display: flex; gap: 0.75rem; }
.sms-preview i { color: var(--green); flex-shrink: 0; margin-top: 0.1rem; }
.modal-seq { background: var(--cream); border-radius: 12px; padding: 1.25rem; text-align: left; margin-bottom: 1.25rem; }
.modal-seq h4 { font-size: 0.78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.875rem; font-family: 'Inter', sans-serif; }
.seq-step { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.7rem; font-size: 0.85rem; }
.seq-step:last-child { margin: 0; }
.seq-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.seq-step .step-time { color: var(--gray-400); font-size: 0.78rem; margin-left: auto; white-space: nowrap; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 4.5rem 0 0; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem !important; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s; font-size: 0.9rem; }
.social-link:hover { background: var(--primary); color: white; }
.footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: 1.1rem; padding-bottom: 0.65rem; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Playfair Display', serif; letter-spacing: 0.03em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links a i { font-size: 0.65rem; color: var(--primary); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.875rem; font-size: 0.875rem; }
.footer-contact-item i { color: var(--gold-light); font-size: 0.85rem; margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }
.footer-reserve-box { background: rgba(194,65,12,0.15); border: 1px solid rgba(194,65,12,0.3); border-radius: 10px; padding: 1.1rem; text-align: center; margin-top: 0.5rem; }
.footer-reserve-box p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.footer-reserve-box a { color: var(--gold-light); font-size: 0.92rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: color 0.2s; }
.footer-reserve-box a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-images { height: 380px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--dark); flex-direction: column; align-items: center; justify-content: center; gap: 1rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .mobile-menu-btn { display: flex; z-index: 1001; }
  .hero-content { max-width: 100%; }
  .hero-overlay { background: rgba(28,25,23,0.82); }
  .hero-buttons { flex-direction: column; }
  .reservations-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; bottom: 6rem; height: 460px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 2; }
  .top-bar-left { gap: 0.875rem; }
  .reserve-cta .container { text-align: center; }
}
@media (max-width: 480px) {
  .top-bar { font-size: 0.75rem; }
  .top-bar-right { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .story-img-accent { display: none; }
}
