
/* ── CSS Custom Properties ─────────────────────── */
:root {
  --bg:           #0f0f0f;
  --bg-2:         #141414;
  --bg-3:         #1a1a1a;
  --primary:      #8B0000;
  --primary-light:#a50000;
  --accent:       #ff3c3c;
  --gold:         #c9a84c;
  --text:         #f5f5f5;
  --text-muted:   #b3b3b3;
  --border:       rgba(255,255,255,0.07);
  --card-bg:      #181818;
  --nav-h:        72px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 40px rgba(0,0,0,0.5);
  --shadow-red:   0 8px 32px rgba(139,0,0,0.35);
  --transition:   0.35s cubic-bezier(0.25,0.8,0.25,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ── Utilities ──────────────────────────────────── */
.accent { color: var(--accent); }

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px;
}

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

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139,0,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.75rem;
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}
.btn-sm:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
  text-align: center;
}

.flame-ring {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.flame-ring span {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: 50%;
}

.flame-ring span:nth-child(1) {
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}
.flame-ring span:nth-child(2) {
  inset: 8px;
  border-right-color: var(--primary);
  animation: spin 0.8s linear infinite reverse;
}
.flame-ring span:nth-child(3) {
  inset: 16px;
  border-bottom-color: var(--gold);
  animation: spin 1.2s linear infinite;
}

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

.preloader-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.1em;
}

.preloader-brand span { color: var(--accent); }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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


/* ===== BODY SCROLL LOCK ===== */
body.menu-open {
  overflow: hidden;
}


/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(18px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 30px;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 1000;
  }

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

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
  }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-image: url("./images/Background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.75) 60%,
    rgba(10,10,10,0.95) 100%
  );
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}

.hero-sub {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDrop 1.6s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
}

/* Particle dots */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-80vh) scale(1.5); opacity: 0; }
}

/* ══════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════ */
#stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item h3::after { content: '+'; font-size: 0.7em; }
.stat-item:nth-child(4) h3::after { content: ''; }

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

@media (max-width: 640px) {
  .stat-divider { display: none; }
}

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
#about { background: var(--bg); }

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

/* Images column */
.about-images {
  position: relative;
}

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

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: var(--shadow-red);
}

.about-badge i { font-size: 1.3rem; color: var(--gold); }

/* Text column */
.about-text { padding-bottom: 40px; }

.about-body {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-top: 20px;
  line-height: 1.85;
}

.chef-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.chef-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.chef-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.chef-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.chef-stars { margin-top: 6px; }
.chef-stars i { color: var(--gold); font-size: 0.75rem; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-img-accent { right: 0; bottom: -30px; }
  .about-badge { left: 0; }
}

/* ══════════════════════════════════════════════════
   MENU
══════════════════════════════════════════════════ */
#menu {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

/* Filters */
.menu-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-red);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  padding: 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,0,0,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.menu-card:hover::before { opacity: 1; }

.menu-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(139,0,0,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

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

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.menu-card-top h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.menu-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  white-space: nowrap;
}

.menu-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,60,60,0.3);
  padding: 2px 8px;
  border-radius: 30px;
}

/* Hidden card state */
.menu-card.hidden {
  display: none;
}

/* ══════════════════════════════════════════════════
   FEATURED DISHES
══════════════════════════════════════════════════ */
#featured {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.featured-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.featured-card--tall {
  grid-row: span 2;
}

.featured-img-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 240px;
}

.featured-card--tall .featured-img-wrap {
  min-height: 100%;
}

.featured-img-wrap img {
  transition: transform 0.7s ease;
}

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

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.featured-overlay span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.featured-info {
  padding: 22px;
  background: var(--card-bg);
}

.featured-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.featured-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (max-width: 860px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-card--tall { grid-row: span 1; }
}

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

/* ══════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════ */
#gallery {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

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

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  transition: transform 0.6s ease;
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(139,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  font-size: 1.4rem;
}

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

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item--wide { grid-column: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ══════════════════════════════════════════════════
   RESERVATION
══════════════════════════════════════════════════ */
#reservation {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#reservation::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.reservation-info .section-title { text-align: left; font-size: 2.2rem; }

.res-body {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.res-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.res-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.res-details li i {
  width: 20px;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.res-img {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow);
}

/* Form */
.reservation-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.reservation-form { display: flex; flex-direction: column; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.15);
}

.form-group select option { background: var(--bg-3); }

.form-group textarea { resize: none; }

/* Input placeholders */
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }

/* Date/time color fix */
input[type="date"],
input[type="time"] { color-scheme: dark; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.visible { display: block; animation: fadeInUp 0.5s ease; }

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-red);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

@media (max-width: 860px) {
  .reservation-grid { grid-template-columns: 1fr; gap: 60px; }
  .reservation-info .section-title { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .reservation-form-wrap { padding: 24px; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
#testimonials {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#testimonials::after {
  content: '"';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 280px;
  color: rgba(139,0,0,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-slider-wrap {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.testimonial-stars { margin-bottom: 24px; }
.testimonial-stars i { color: var(--gold); font-size: 1rem; margin: 0 2px; }

.testimonial-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
  position: relative;
}

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

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author h5 {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-author p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
#contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(139,0,0,0.3);
  transform: translateX(4px);
}

.contact-card > i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

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

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
#footer {
  background: #080808;
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 60px;
}

.footer-brand h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links h5,
.footer-hours h5,
.footer-newsletter h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

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

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

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

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

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-hours li:last-child { border-bottom: none; }

.footer-newsletter p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-3);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.85rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }

.newsletter-form button {
  width: 46px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background var(--transition);
  cursor: pointer;
}

.newsletter-form button:hover { background: var(--primary-light); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════ */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 800;
  cursor: pointer;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#backToTop:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE UTILITIES
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-container { padding: 72px 20px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.6rem); }
}

@media (max-width: 480px) {
  .section-container { padding: 60px 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-container { flex-direction: column; gap: 28px; padding: 48px 20px; }
}
