/* ═══════════════════════════════════════════════
   BELLA VITA — STYLES
   Color Palette:
   --dark:       #120A02  (deep warm black)
   --dark-2:     #1E1006
   --bg:         #0F0B05
   --sunset:     #E8754A  (signature orange)
   --rose:       #C4507A  (sunset pink)
   --gold:       #C4935A  (bamboo gold)
   --teal:       #2AA8C4  (ocean teal)
   --sand:       #F5E0B8  (warm sand)
   --cream:      #FDF6EC
   --text-light: #FAFAF0
   ═══════════════════════════════════════════════ */

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

:root {
  --dark:    #120A02;
  --dark-2:  #1E1006;
  --bg:      #0F0B05;
  --sunset:  #E8754A;
  --rose:    #C4507A;
  --gold:    #C4935A;
  --teal:    #2AA8C4;
  --sand:    #F5E0B8;
  --cream:   #FDF6EC;
  --white:   #FAFAF0;
  --text-muted: rgba(250,246,240,0.65);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Raleway', sans-serif;
  --radius:  12px;
  --shadow:  0 8px 40px rgba(0,0,0,0.4);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
ul { list-style: none; }

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

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay  { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--sand); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--sunset);
  color: var(--dark);
  border-color: var(--sunset);
}
.btn-primary:hover { background: #f58e67; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,117,74,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(250,246,240,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-dark:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.btn-wa-big {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-wa-big:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

.btn-call {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(250,246,240,0.4);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-call:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-ta {
  background: #34e0a1;
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-ta:hover { background: #1ec98a; transform: translateY(-2px); }

.btn-google {
  background: #4285F4;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-google:hover { background: #2b6de0; transform: translateY(-2px); }

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

/* ════════════════════════════════════════════════
   FLOATING SOCIAL BUTTONS
════════════════════════════════════════════════ */
.float-social {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  position: relative;
}
.float-btn::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 14px);
  white-space: nowrap;
  background: rgba(20,12,4,0.9);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover::before { opacity: 1; }
.float-btn:hover { transform: scale(1.12) translateY(-3px); }

.float-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.float-wa { background: #25D366; }

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#navbar.scrolled {
  background: rgba(18, 10, 2, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-bella { color: var(--white); }
.logo-vita  { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--sunset) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.04em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #f58e67 !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,10,2,0.35) 0%,
    rgba(18,10,2,0.5) 40%,
    rgba(18,10,2,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}
.hero-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 24px;
  display: block;
}
.hero-bella {
  display: block;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-vita {
  display: block;
  color: var(--gold);
  font-style: italic;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(250,246,240,0.8);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,147,90,0.18);
  border: 1px solid rgba(196,147,90,0.35);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--sand);
  backdrop-filter: blur(4px);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,246,240,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196,147,90,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); transform-origin: top; }
}

/* ════════════════════════════════════════════════
   HAPPY HOUR BANNER
════════════════════════════════════════════════ */
.happy-banner {
  background: linear-gradient(90deg, var(--rose), var(--sunset), var(--gold));
  padding: 16px 24px;
  text-align: center;
}
.happy-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.happy-inner i { font-size: 1.1rem; opacity: 0.8; }

/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about { background: var(--dark-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 80%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--dark-2);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(196,147,90,0.2);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.stat-label em { color: var(--gold); font-style: italic; }
.stat-divider { width: 1px; height: 48px; background: rgba(196,147,90,0.2); }

/* ════════════════════════════════════════════════
   MENU
════════════════════════════════════════════════ */
.menu-section { background: var(--bg); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  padding: 6px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 56px;
}
.tab-btn {
  padding: 10px 36px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tab-btn.active {
  background: var(--sunset);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(232,117,74,0.35);
}
.tab-btn:hover:not(.active) { color: var(--white); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-category { margin-bottom: 56px; }
.cat-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,147,90,0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,147,90,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,147,90,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.menu-card-img { height: 160px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 18px 20px 20px; }
.menu-card-body.only { padding: 20px; }

.menu-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.menu-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.menu-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.menu-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunset);
  background: rgba(232,117,74,0.12);
  padding: 3px 10px;
  border-radius: 50px;
}

.cocktail-card { display: flex; align-items: flex-start; gap: 0; }
.cocktail-icon {
  font-size: 2rem;
  padding: 20px 0 20px 20px;
  line-height: 1;
}

.happy-hour-note {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(232,117,74,0.12), rgba(196,80,122,0.12));
  border: 1px solid rgba(232,117,74,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 16px;
}
.happy-hour-note i { font-size: 2rem; color: var(--gold); margin-top: 4px; }
.happy-hour-note strong { color: var(--white); font-size: 1.1rem; display: block; margin-bottom: 4px; }
.happy-hour-note p { color: var(--text-muted); }

/* ════════════════════════════════════════════════
   EXPERIENCE
════════════════════════════════════════════════ */
.experience { padding: 0; background: var(--dark); }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  min-height: 620px;
}
.exp-img-block { overflow: hidden; }
.exp-img-block img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.exp-img-block:hover img { transform: scale(1.04); }

.exp-content {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-2);
}
.exp-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.exp-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--sand);
}
.exp-features li i { color: var(--gold); font-size: 0.85rem; }

/* ════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════ */
.gallery-section { background: var(--dark-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  padding: 0 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,10,2,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}

.gallery-ig {
  text-align: center;
  padding: 56px 24px 0;
  color: var(--text-muted);
}
.gallery-ig p { margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 0.05em; }

/* ════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════ */
.reviews-section { background: var(--bg); }

.reviews-awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,147,90,0.2);
  padding: 16px 24px;
  border-radius: var(--radius);
}
.award-badge img { height: 52px; }
.award-text span { font-size: 0.75rem; color: var(--text-muted); display: block; }
.award-text strong { font-size: 0.95rem; color: var(--gold); }

.rating-big { text-align: center; }
.stars-big { font-size: 2rem; color: var(--gold); letter-spacing: 4px; margin-bottom: 6px; }
.rating-big p { font-size: 0.85rem; color: var(--text-muted); }

.reviews-track-wrap {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,147,90,0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(196,147,90,0.35); }

.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 18px; }
.review-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sand);
  line-height: 1.7;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunset), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-author strong { display: block; color: var(--white); font-size: 0.92rem; }
.review-author span { font-size: 0.78rem; color: var(--text-muted); }

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.rev-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,147,90,0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.rev-btn:hover { background: var(--gold); color: var(--dark); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(196,147,90,0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.rev-dot.active { background: var(--gold); transform: scale(1.3); }

.reviews-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(196,147,90,0.15);
}
.reviews-cta p { color: var(--text-muted); margin-bottom: 24px; }
.reviews-cta-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   LOCATION
════════════════════════════════════════════════ */
.location-section { background: var(--dark-2); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 28px; }
.info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(196,147,90,0.12);
  border: 1px solid rgba(196,147,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-block h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.info-block p, .info-block a { font-size: 0.92rem; color: var(--text-muted); }
.info-block a:hover { color: var(--gold); }

.hours-table { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hours-time { color: var(--white); font-weight: 600; white-space: nowrap; }
.hours-row.happy .hours-time { color: var(--gold); }

.getting-here {
  background: rgba(196,147,90,0.07);
  border: 1px solid rgba(196,147,90,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.getting-here h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 8px;
}
.getting-here p { font-size: 0.9rem; color: var(--text-muted); }

.location-map {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196,147,90,0.15);
  box-shadow: var(--shadow);
}
.location-map iframe { width: 100%; height: 100%; }

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,10,2,0.92) 40%, rgba(18,10,2,0.75) 100%);
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact-text .section-title { margin-bottom: 20px; }
.contact-sub { color: rgba(250,246,240,0.7); margin-bottom: 40px; font-size: 1.05rem; }
.contact-quick { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-form-wrap {
  background: rgba(20, 12, 4, 0.7);
  border: 1px solid rgba(196,147,90,0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(16px);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,147,90,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,246,240,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #1E1006; color: var(--white); }
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250,246,240,0.4);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success i { font-size: 3rem; color: #34e0a1; margin-bottom: 20px; display: block; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); }

.mt-sm { margin-top: 10px; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: var(--dark); border-top: 1px solid rgba(196,147,90,0.12); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196,147,90,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer-col a { color: var(--text-muted); transition: color var(--transition); font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold); }

.footer-awards { display: flex; flex-direction: column; gap: 16px; }
.footer-award {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-award i { color: var(--gold); font-size: 1.2rem; }
.footer-award strong { display: block; color: var(--white); font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(196,147,90,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(250,246,240,0.3);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-img-block { height: 300px; }
  .exp-img-block:last-child { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-text { text-align: center; }
  .contact-quick { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 360px; }

  .review-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(18,10,2,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px 40px;
    gap: 20px;
    border-top: 1px solid rgba(196,147,90,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { text-align: center; }

  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(4rem, 18vw, 7rem); }
  .hero-badges { gap: 8px; }
  .badge { font-size: 0.7rem; padding: 6px 12px; }

  .about-images { height: 280px; }
  .about-img-main { width: 70%; }
  .about-img-accent { width: 55%; }
  .about-stats { gap: 20px; }
  .stat-num { font-size: 1.7rem; }

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

  .review-card { flex: 0 0 calc(100% - 0px); }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .float-social { bottom: 20px; right: 16px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }

  .exp-content { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-quick { flex-direction: column; }
  .reviews-cta-links { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
