/* ============================================================
   Haweli Restaurant — Main Stylesheet
   Colors: Dark Brown #3E2723 | Gold #D4AF37 | Cream #FFF8E7
   Fonts : Playfair Display | Poppins | Montserrat
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --dark-brown      : #3E2723;
  --dark-brown-l    : #5D4037;
  --dark-brown-xl   : #795548;
  --gold            : #D4AF37;
  --gold-dark       : #B8960C;
  --gold-light      : #E8C84A;
  --gold-glow       : rgba(212,175,55,.35);
  --cream           : #FFF8E7;
  --cream-dark      : #F0E4C8;
  --white           : #FFFFFF;
  --charcoal        : #1F1F1F;
  --text-muted      : #6B6150;
  --overlay         : rgba(20,10,5,.72);
  --overlay-light   : rgba(20,10,5,.45);

  --font-heading    : 'Playfair Display', Georgia, serif;
  --font-body       : 'Poppins', system-ui, sans-serif;
  --font-btn        : 'Montserrat', system-ui, sans-serif;

  --transition      : all .3s ease;
  --transition-slow : all .6s cubic-bezier(.25,.8,.25,1);

  --shadow-sm  : 0 2px 12px rgba(0,0,0,.08);
  --shadow-md  : 0 6px 24px rgba(0,0,0,.14);
  --shadow-lg  : 0 12px 48px rgba(0,0,0,.2);
  --shadow-gold: 0 6px 24px rgba(212,175,55,.4);

  --radius-sm  : 8px;
  --radius-md  : 16px;
  --radius-lg  : 28px;
  --radius-pill: 999px;

  --section-py : 100px;
  --nav-h      : 76px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family : var(--font-body);
  background  : var(--cream);
  color       : var(--charcoal);
  overflow-x  : hidden;
  line-height : 1.7;
}
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button, input, select, textarea { font-family:inherit; font-size:inherit; }
button { cursor:pointer; border:none; background:none; }

/* ── Scroll Progress Bar ─────────────────────────────────── */
#progress-bar {
  position   : fixed;
  top        : 0; left:0;
  height     : 3px;
  width      : 0%;
  background : linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index    : 9999;
  transition : width .1s linear;
}

/* ── Loading Screen ──────────────────────────────────────── */
#loading-screen {
  position        : fixed;
  inset           : 0;
  background      : var(--dark-brown);
  z-index         : 99999;
  display         : flex;
  flex-direction  : column;
  align-items     : center;
  justify-content : center;
  gap             : 24px;
  transition      : opacity .6s ease, visibility .6s ease;
}
#loading-screen.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-logo {
  font-family : var(--font-heading);
  font-size   : clamp(28px,5vw,48px);
  color       : var(--gold);
  letter-spacing: .06em;
}
.loader-logo span { color:var(--cream); }
.loader-ring {
  width        : 56px; height:56px;
  border       : 3px solid rgba(212,175,55,.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation    : spin 1s linear infinite;
}

/* ── Navigation ──────────────────────────────────────────── */
#navbar {
  position        : fixed;
  top             : 0; left:0; right:0;
  z-index         : 1000;
  height          : var(--nav-h);
  display         : flex;
  align-items     : center;
  padding         : 0 5%;
  transition      : var(--transition-slow);
}
#navbar.scrolled {
  background : rgba(20,8,5,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow : 0 2px 24px rgba(0,0,0,.4);
}
.nav-logo {
  font-family  : var(--font-heading);
  font-size    : 26px;
  color        : var(--cream);
  font-weight  : 700;
  letter-spacing: .04em;
  flex-shrink  : 0;
}
.nav-logo span { color:var(--gold); }
.nav-links {
  display    : flex;
  gap        : 28px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-family    : var(--font-btn);
  font-size      : 13px;
  font-weight    : 500;
  letter-spacing : .08em;
  text-transform : uppercase;
  color          : rgba(255,248,231,.8);
  transition     : var(--transition);
  position       : relative;
  padding-bottom : 4px;
}
.nav-links a::after {
  content   : '';
  position  : absolute;
  bottom    : 0; left:0;
  width     : 0; height:2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-book {
  font-family    : var(--font-btn);
  font-size      : 12px;
  font-weight    : 600;
  letter-spacing : .1em;
  text-transform : uppercase;
  color          : var(--charcoal) !important;
  background     : var(--gold);
  padding        : 9px 22px;
  border-radius  : var(--radius-pill);
  transition     : var(--transition);
  margin-left    : 12px;
}
.nav-book:hover {
  background  : var(--gold-light);
  box-shadow  : var(--shadow-gold);
  transform   : translateY(-1px);
}
.nav-book::after { display:none !important; }
.hamburger {
  display        : none;
  flex-direction : column;
  gap            : 5px;
  margin-left    : auto;
  padding        : 6px;
}
.hamburger span {
  display   : block;
  width     : 26px; height:2px;
  background: var(--cream);
  border-radius:2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── Container ───────────────────────────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.container-sm { max-width:860px; margin:0 auto; padding:0 24px; }

/* ── Section Common ──────────────────────────────────────── */
.section { padding:var(--section-py) 0; }
.section-badge {
  display        : inline-block;
  font-family    : var(--font-btn);
  font-size      : 12px;
  font-weight    : 600;
  letter-spacing : .16em;
  text-transform : uppercase;
  color          : var(--gold);
  margin-bottom  : 14px;
}
.section-title {
  font-family  : var(--font-heading);
  font-size    : clamp(32px,4.5vw,52px);
  font-weight  : 700;
  line-height  : 1.2;
  color        : var(--dark-brown);
  margin-bottom: 16px;
}
.section-title span { color:var(--gold); }
.section-title.light { color:var(--cream); }
.section-desc {
  font-size    : 17px;
  color        : var(--text-muted);
  max-width    : 600px;
  margin-bottom: 56px;
}
.section-desc.centered { margin-left:auto; margin-right:auto; text-align:center; }
.text-center { text-align:center; }
.gold-line {
  display       : block;
  width         : 60px; height:3px;
  background    : linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius : 2px;
  margin-bottom : 24px;
}
.gold-line.centered { margin:0 auto 24px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display        : inline-flex;
  align-items    : center;
  gap            : 8px;
  font-family    : var(--font-btn);
  font-size      : 13px;
  font-weight    : 600;
  letter-spacing : .1em;
  text-transform : uppercase;
  padding        : 14px 32px;
  border-radius  : var(--radius-pill);
  border         : 2px solid transparent;
  transition     : var(--transition);
  cursor         : pointer;
}
.btn-gold {
  background : linear-gradient(135deg,var(--gold),var(--gold-light));
  color      : var(--dark-brown);
  box-shadow : var(--shadow-gold);
}
.btn-gold:hover {
  background : linear-gradient(135deg,var(--gold-light),var(--gold));
  transform  : translateY(-3px);
  box-shadow : 0 10px 32px rgba(212,175,55,.5);
}
.btn-outline {
  background    : transparent;
  color         : var(--cream);
  border-color  : rgba(255,248,231,.6);
}
.btn-outline:hover {
  background  : rgba(255,248,231,.1);
  border-color: var(--cream);
  transform   : translateY(-3px);
}
.btn-outline-gold {
  background  : transparent;
  color       : var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background  : var(--gold);
  color       : var(--dark-brown);
  box-shadow  : var(--shadow-gold);
  transform   : translateY(-3px);
}
.btn-dark {
  background : var(--dark-brown);
  color      : var(--gold);
}
.btn-dark:hover {
  background : var(--dark-brown-l);
  transform  : translateY(-3px);
  box-shadow : var(--shadow-lg);
}

/* ── Hero ────────────────────────────────────────────────── */
#home {
  position   : relative;
  height     : 100vh;
  min-height : 700px;
  display    : flex;
  align-items: center;
  justify-content:center;
  text-align : center;
  overflow   : hidden;
}
.hero-bg {
  position : absolute;
  inset    : 0;
  background:
    linear-gradient(160deg, rgba(30,10,5,.8) 0%, rgba(20,5,0,.55) 50%, rgba(10,3,0,.85) 100%),
    url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&q=85') center/cover no-repeat;
  transform : scale(1.06);
  transition: transform 8s ease;
}
#home.parallax .hero-bg { transform:scale(1); }
.hero-content {
  position     : relative;
  z-index      : 2;
  padding      : 0 24px;
  max-width    : 860px;
}
.hero-badge {
  font-family    : var(--font-btn);
  font-size      : 12px;
  font-weight    : 600;
  letter-spacing : .22em;
  text-transform : uppercase;
  color          : var(--gold);
  margin-bottom  : 20px;
  display        : block;
}
.hero-title {
  font-family  : var(--font-heading);
  font-size    : clamp(42px,8vw,90px);
  font-weight  : 700;
  color        : var(--cream);
  line-height  : 1.1;
  margin-bottom: 20px;
  text-shadow  : 0 4px 24px rgba(0,0,0,.4);
}
.hero-title span { color:var(--gold); }
.hero-tagline {
  font-size    : clamp(16px,2.2vw,21px);
  color        : rgba(255,248,231,.82);
  margin-bottom: 40px;
  font-weight  : 300;
  letter-spacing: .04em;
}
.hero-rating {
  display    : flex;
  align-items: center;
  justify-content:center;
  gap        : 10px;
  margin-bottom:40px;
  font-family: var(--font-btn);
  color      : rgba(255,248,231,.75);
  font-size  : 14px;
}
.stars { color:var(--gold); font-size:18px; letter-spacing:2px; }
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.hero-scroll {
  position    : absolute;
  bottom      : 36px; left:50%;
  transform   : translateX(-50%);
  display     : flex;
  flex-direction:column;
  align-items : center;
  gap         : 8px;
  color       : rgba(255,248,231,.5);
  font-size   : 11px;
  font-family : var(--font-btn);
  letter-spacing:.12em;
  text-transform:uppercase;
}
.scroll-line {
  width:1px; height:50px;
  background:linear-gradient(var(--gold),transparent);
  animation:scrollLine 2s ease-in-out infinite;
}

/* ── About ───────────────────────────────────────────────── */
#about { background:var(--cream); }
.about-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 72px;
  align-items          : center;
}
.about-img-wrap {
  position     : relative;
  border-radius: var(--radius-lg);
  overflow     : hidden;
  box-shadow   : var(--shadow-lg);
}
.about-img-wrap img {
  width       : 100%;
  height      : 520px;
  object-fit  : cover;
  transition  : transform .6s ease;
}
.about-img-wrap:hover img { transform:scale(1.04); }
.about-img-badge {
  position     : absolute;
  bottom       : -20px; right:-20px;
  background   : var(--gold);
  color        : var(--dark-brown);
  border-radius: var(--radius-md);
  padding      : 20px 28px;
  text-align   : center;
  font-family  : var(--font-heading);
  box-shadow   : var(--shadow-gold);
}
.about-img-badge .num { font-size:42px; font-weight:700; line-height:1; }
.about-img-badge .lbl { font-size:13px; font-weight:600; }
.about-features {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 20px;
  margin-top           : 40px;
}
.about-feat {
  display      : flex;
  align-items  : center;
  gap          : 14px;
  background   : var(--white);
  padding      : 18px 20px;
  border-radius: var(--radius-md);
  box-shadow   : var(--shadow-sm);
  transition   : var(--transition);
  border-left  : 3px solid var(--gold);
}
.about-feat:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.about-feat-icon {
  width        : 44px; height:44px;
  background   : rgba(212,175,55,.12);
  border-radius: 50%;
  display      : flex;
  align-items  : center;
  justify-content:center;
  font-size    : 20px;
  flex-shrink  : 0;
}
.about-feat-text strong { display:block; font-size:14px; color:var(--dark-brown); }
.about-feat-text span   { font-size:12px; color:var(--text-muted); }

/* ── Specialties ─────────────────────────────────────────── */
#specialties { background:var(--dark-brown); }
#specialties .section-title { color:var(--cream); }
#specialties .section-desc  { color:rgba(255,248,231,.65); }
.specialties-grid {
  display              : grid;
  grid-template-columns: repeat(3,1fr);
  gap                  : 28px;
}
.spec-card {
  background      : rgba(255,248,231,.05);
  border          : 1px solid rgba(212,175,55,.18);
  border-radius   : var(--radius-md);
  padding         : 40px 28px;
  text-align      : center;
  transition      : var(--transition-slow);
  cursor          : default;
  position        : relative;
  overflow        : hidden;
}
.spec-card::before {
  content    : '';
  position   : absolute;
  inset      : 0;
  background : linear-gradient(135deg,rgba(212,175,55,.08),transparent);
  opacity    : 0;
  transition : opacity .4s ease;
}
.spec-card:hover {
  transform  : translateY(-8px);
  border-color: var(--gold);
  box-shadow : 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(212,175,55,.3);
}
.spec-card:hover::before { opacity:1; }
.spec-icon {
  font-size    : 52px;
  margin-bottom: 20px;
  display      : block;
  filter       : drop-shadow(0 4px 12px rgba(212,175,55,.3));
}
.spec-card h3 {
  font-family  : var(--font-heading);
  font-size    : 22px;
  color        : var(--gold);
  margin-bottom: 12px;
}
.spec-card p { font-size:14px; color:rgba(255,248,231,.65); line-height:1.7; }

/* ── Menu / Dishes ───────────────────────────────────────── */
#menu { background:var(--cream); }
.dishes-grid {
  display              : grid;
  grid-template-columns: repeat(4,1fr);
  gap                  : 28px;
}
.dish-card {
  background   : var(--white);
  border-radius: var(--radius-md);
  overflow     : hidden;
  box-shadow   : var(--shadow-sm);
  transition   : var(--transition-slow);
}
.dish-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.dish-img {
  position   : relative;
  overflow   : hidden;
  aspect-ratio: 4/3;
}
.dish-img img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  transition : transform .6s ease;
}
.dish-card:hover .dish-img img { transform:scale(1.08); }
.dish-badge {
  position     : absolute;
  top          : 14px; right:14px;
  background   : var(--gold);
  color        : var(--dark-brown);
  font-family  : var(--font-btn);
  font-weight  : 700;
  font-size    : 14px;
  padding      : 4px 12px;
  border-radius: var(--radius-pill);
}
.dish-body { padding:20px; }
.dish-body h3 {
  font-family  : var(--font-heading);
  font-size    : 18px;
  color        : var(--dark-brown);
  margin-bottom: 6px;
}
.dish-body p  { font-size:13px; color:var(--text-muted); margin-bottom:16px; line-height:1.5; }
.dish-footer  { display:flex; align-items:center; justify-content:space-between; }
.dish-price   { font-family:var(--font-btn); font-size:18px; font-weight:700; color:var(--gold); }
.btn-cart {
  font-family  : var(--font-btn);
  font-size    : 11px;
  font-weight  : 600;
  letter-spacing:.08em;
  text-transform:uppercase;
  background   : transparent;
  color        : var(--dark-brown);
  border       : 1.5px solid var(--dark-brown);
  padding      : 7px 16px;
  border-radius: var(--radius-pill);
  transition   : var(--transition);
}
.btn-cart:hover { background:var(--dark-brown); color:var(--gold); }

/* ── Why Choose Us ───────────────────────────────────────── */
#why-us { background:var(--cream-dark); }
.why-grid {
  display              : grid;
  grid-template-columns: repeat(3,1fr);
  gap                  : 28px;
}
.why-card {
  background   : var(--white);
  border-radius: var(--radius-md);
  padding      : 36px 28px;
  text-align   : center;
  box-shadow   : var(--shadow-sm);
  transition   : var(--transition-slow);
  position     : relative;
  overflow     : hidden;
}
.why-card::after {
  content    : '';
  position   : absolute;
  bottom     : 0; left:0; right:0;
  height     : 3px;
  background : linear-gradient(90deg,var(--gold),var(--gold-light));
  transform  : scaleX(0);
  transition : transform .4s ease;
}
.why-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-md); }
.why-card:hover::after { transform:scaleX(1); }
.why-icon {
  width        : 68px; height:68px;
  background   : linear-gradient(135deg,rgba(212,175,55,.15),rgba(212,175,55,.05));
  border       : 2px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display      : flex;
  align-items  : center;
  justify-content:center;
  margin       : 0 auto 20px;
  font-size    : 28px;
  transition   : var(--transition);
}
.why-card:hover .why-icon {
  background : linear-gradient(135deg,var(--gold),var(--gold-light));
  border-color: var(--gold);
  transform  : scale(1.08) rotate(-5deg);
}
.why-card h3 {
  font-family  : var(--font-heading);
  font-size    : 20px;
  color        : var(--dark-brown);
  margin-bottom: 10px;
}
.why-card p { font-size:14px; color:var(--text-muted); line-height:1.65; }

/* ── Statistics ──────────────────────────────────────────── */
#stats {
  background : linear-gradient(135deg,var(--dark-brown) 0%,#2a1410 100%);
  position   : relative;
  overflow   : hidden;
}
#stats::before {
  content    : '';
  position   : absolute;
  inset      : 0;
  background : url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display              : grid;
  grid-template-columns: repeat(4,1fr);
  gap                  : 0;
  position             : relative;
}
.stat-item {
  text-align : center;
  padding    : 60px 24px;
  border-right: 1px solid rgba(212,175,55,.18);
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family  : var(--font-heading);
  font-size    : clamp(44px,5.5vw,68px);
  font-weight  : 700;
  color        : var(--gold);
  line-height  : 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family    : var(--font-btn);
  font-size      : 13px;
  font-weight    : 500;
  letter-spacing : .1em;
  text-transform : uppercase;
  color          : rgba(255,248,231,.55);
}

/* ── Testimonials ────────────────────────────────────────── */
#reviews { background:var(--cream); }
.rating-header {
  display    : flex;
  align-items: center;
  gap        : 16px;
  margin-bottom:48px;
  flex-wrap  : wrap;
}
.rating-big {
  font-family: var(--font-heading);
  font-size  : 64px;
  font-weight: 700;
  color      : var(--dark-brown);
  line-height: 1;
}
.rating-info .stars { font-size:24px; color:var(--gold); }
.rating-info p { font-size:14px; color:var(--text-muted); margin-top:4px; }
.slider-wrap { position:relative; overflow:hidden; }
.slides-track {
  display   : flex;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.slide { min-width:100%; padding:0 4px; }
.review-card {
  background   : var(--white);
  border-radius: var(--radius-md);
  padding      : 36px;
  box-shadow   : var(--shadow-sm);
  border-top   : 3px solid var(--gold);
  position     : relative;
}
.review-card::before {
  content    : '"';
  position   : absolute;
  top        : 16px; right:28px;
  font-family: var(--font-heading);
  font-size  : 80px;
  color      : rgba(212,175,55,.15);
  line-height: 1;
}
.review-stars { color:var(--gold); font-size:18px; margin-bottom:16px; }
.review-text  { font-size:16px; color:var(--dark-brown-xl); line-height:1.75; margin-bottom:24px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:14px; }
.review-avatar {
  width        : 48px; height:48px;
  border-radius: 50%;
  background   : linear-gradient(135deg,var(--gold),var(--gold-dark));
  display      : flex;
  align-items  : center;
  justify-content:center;
  font-family  : var(--font-heading);
  font-size    : 20px;
  color        : var(--dark-brown);
  font-weight  : 700;
  flex-shrink  : 0;
}
.review-name  { font-weight:600; color:var(--dark-brown); font-size:15px; }
.review-loc   { font-size:13px; color:var(--text-muted); }
.slider-controls {
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 16px;
  margin-top     : 36px;
}
.slider-btn {
  width        : 48px; height:48px;
  border-radius: 50%;
  border       : 2px solid var(--gold);
  background   : transparent;
  color        : var(--gold);
  font-size    : 20px;
  display      : flex;
  align-items  : center;
  justify-content:center;
  transition   : var(--transition);
  cursor       : pointer;
}
.slider-btn:hover { background:var(--gold); color:var(--dark-brown); }
.slider-dots { display:flex; gap:8px; }
.dot {
  width        : 10px; height:10px;
  border-radius: 50%;
  background   : rgba(62,39,35,.2);
  transition   : var(--transition);
  cursor       : pointer;
}
.dot.active { background:var(--gold); transform:scale(1.3); }

/* ── Gallery ─────────────────────────────────────────────── */
#gallery { background:var(--dark-brown); }
#gallery .section-title { color:var(--cream); }
#gallery .section-desc  { color:rgba(255,248,231,.6); }
.gallery-grid {
  display              : grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows       : 220px;
  gap                  : 12px;
}
.gallery-item {
  position     : relative;
  overflow     : hidden;
  border-radius: var(--radius-sm);
  cursor       : pointer;
}
.gallery-item.tall  { grid-row:span 2; }
.gallery-item.wide  { grid-column:span 2; }
.gallery-item img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  transition : transform .6s ease;
  display    : block;
}
.gallery-overlay {
  position   : absolute;
  inset      : 0;
  background : rgba(30,10,5,.65);
  display    : flex;
  align-items: center;
  justify-content:center;
  opacity    : 0;
  transition : var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-overlay-icon {
  width        : 56px; height:56px;
  border       : 2px solid var(--gold);
  border-radius: 50%;
  display      : flex;
  align-items  : center;
  justify-content:center;
  color        : var(--gold);
  font-size    : 22px;
  transition   : var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform:scale(1.1); }

/* ── Lightbox ────────────────────────────────────────────── */
#lightbox {
  position   : fixed;
  inset      : 0;
  background : rgba(10,4,2,.92);
  z-index    : 9998;
  display    : none;
  align-items: center;
  justify-content:center;
  padding    : 24px;
}
#lightbox.open { display:flex; }
#lightbox img {
  max-width  : min(90vw,1000px);
  max-height : 85vh;
  object-fit : contain;
  border-radius:var(--radius-sm);
  box-shadow : var(--shadow-lg);
}
#lightbox-close {
  position   : absolute;
  top        : 20px; right:24px;
  width      : 44px; height:44px;
  border-radius:50%;
  border     : 2px solid rgba(255,255,255,.4);
  color      : var(--white);
  font-size  : 20px;
  display    : flex;
  align-items: center;
  justify-content:center;
  cursor     : pointer;
  transition : var(--transition);
  background : transparent;
}
#lightbox-close:hover { border-color:var(--gold); color:var(--gold); }

/* ── Reservation ─────────────────────────────────────────── */
#reservation {
  background : linear-gradient(135deg,#2a1410 0%,var(--dark-brown) 100%);
  position   : relative;
  overflow   : hidden;
}
#reservation::after {
  content    : '';
  position   : absolute;
  top        : -60px; right:-80px;
  width      : 400px; height:400px;
  border     : 1px solid rgba(212,175,55,.08);
  border-radius:50%;
}
.res-grid {
  display              : grid;
  grid-template-columns: 1fr 1.6fr;
  gap                  : 72px;
  align-items          : start;
}
.res-info .section-title { color:var(--cream); }
.res-detail {
  display    : flex;
  gap        : 14px;
  margin-top : 32px;
  align-items: flex-start;
}
.res-detail-icon {
  width        : 40px; height:40px;
  border       : 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display      : flex;
  align-items  : center;
  justify-content:center;
  color        : var(--gold);
  font-size    : 16px;
  flex-shrink  : 0;
  margin-top   : 2px;
}
.res-detail-text strong { display:block; color:var(--cream); font-size:15px; }
.res-detail-text span   { font-size:13px; color:rgba(255,248,231,.55); }
.res-form {
  background   : rgba(255,248,231,.04);
  border       : 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-lg);
  padding      : 44px 40px;
  backdrop-filter:blur(10px);
}
.form-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 20px;
}
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group.full { grid-column:1/-1; }
.form-group label {
  font-family    : var(--font-btn);
  font-size      : 11px;
  font-weight    : 600;
  letter-spacing : .12em;
  text-transform : uppercase;
  color          : rgba(255,248,231,.65);
}
.form-group input,
.form-group select,
.form-group textarea {
  background   : rgba(255,255,255,.07);
  border       : 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-sm);
  padding      : 13px 16px;
  color        : var(--cream);
  font-size    : 15px;
  outline      : none;
  transition   : var(--transition);
  width        : 100%;
}
.form-group select option { background:var(--dark-brown); color:var(--cream); }
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,248,231,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background  : rgba(255,255,255,.1);
  box-shadow  : 0 0 0 3px rgba(212,175,55,.15);
}
.form-group textarea { resize:vertical; min-height:80px; }
.btn-submit {
  width      : 100%;
  padding    : 16px;
  margin-top : 12px;
  font-size  : 14px;
  border-radius:var(--radius-sm);
}

/* ── Map ─────────────────────────────────────────────────── */
#map { background:var(--cream-dark); padding:0; }
.map-wrap { position:relative; height:420px; }
.map-wrap iframe { width:100%; height:100%; border:none; display:block; filter:grayscale(.2) contrast(1.05); }
.map-card {
  position     : absolute;
  top          : 50%; left:5%;
  transform    : translateY(-50%);
  background   : var(--dark-brown);
  color        : var(--cream);
  border-radius: var(--radius-md);
  padding      : 32px 28px;
  max-width    : 320px;
  box-shadow   : var(--shadow-lg);
  border-left  : 4px solid var(--gold);
}
.map-card h3 {
  font-family  : var(--font-heading);
  font-size    : 22px;
  color        : var(--gold);
  margin-bottom: 16px;
}
.map-detail {
  display      : flex;
  gap          : 12px;
  align-items  : flex-start;
  margin-bottom: 14px;
  font-size    : 14px;
  line-height  : 1.55;
  color        : rgba(255,248,231,.8);
}
.map-detail span:first-child { color:var(--gold); font-size:16px; flex-shrink:0; margin-top:2px; }
.map-card a {
  display      : inline-flex;
  align-items  : center;
  gap          : 6px;
  margin-top   : 8px;
  font-family  : var(--font-btn);
  font-size    : 12px;
  font-weight  : 600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color        : var(--gold);
  border-bottom: 1px solid rgba(212,175,55,.4);
  padding-bottom:2px;
  transition   : var(--transition);
}
.map-card a:hover { border-color:var(--gold); color:var(--gold-light); }

/* ── Contact ─────────────────────────────────────────────── */
#contact { background:var(--cream); }
.contact-grid {
  display              : grid;
  grid-template-columns: repeat(3,1fr);
  gap                  : 28px;
}
.contact-card {
  background   : var(--white);
  border-radius: var(--radius-md);
  padding      : 40px 28px;
  text-align   : center;
  box-shadow   : var(--shadow-sm);
  transition   : var(--transition-slow);
}
.contact-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.contact-icon {
  width        : 72px; height:72px;
  background   : linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 50%;
  display      : flex;
  align-items  : center;
  justify-content:center;
  margin       : 0 auto 20px;
  font-size    : 28px;
  box-shadow   : var(--shadow-gold);
  transition   : var(--transition);
}
.contact-card:hover .contact-icon { transform:scale(1.08) rotate(-5deg); }
.contact-card h3 {
  font-family  : var(--font-heading);
  font-size    : 20px;
  color        : var(--dark-brown);
  margin-bottom: 10px;
}
.contact-card p { font-size:15px; color:var(--text-muted); line-height:1.6; }
.contact-card a { color:var(--dark-brown); transition:var(--transition); font-weight:600; }
.contact-card a:hover { color:var(--gold); }

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background : var(--charcoal);
  padding    : 72px 0 0;
}
.footer-grid {
  display              : grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap                  : 48px;
  padding-bottom       : 56px;
}
.footer-brand .nav-logo { font-size:28px; display:block; margin-bottom:16px; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.45); line-height:1.7; max-width:280px; }
.footer-social { display:flex; gap:12px; margin-top:24px; }
.social-btn {
  width        : 40px; height:40px;
  border-radius: 50%;
  border       : 1px solid rgba(255,255,255,.15);
  display      : flex;
  align-items  : center;
  justify-content:center;
  color        : rgba(255,255,255,.5);
  font-size    : 16px;
  transition   : var(--transition);
}
.social-btn:hover { border-color:var(--gold); color:var(--gold); background:rgba(212,175,55,.1); }
.footer-col h4 {
  font-family    : var(--font-heading);
  font-size      : 18px;
  color          : var(--gold);
  margin-bottom  : 20px;
  padding-bottom : 10px;
  border-bottom  : 1px solid rgba(212,175,55,.2);
}
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a {
  font-size  : 14px;
  color      : rgba(255,255,255,.45);
  transition : var(--transition);
  display    : flex;
  align-items: center;
  gap        : 8px;
}
.footer-links a:hover { color:var(--gold); padding-left:4px; }
.footer-links a::before { content:'›'; color:var(--gold); }
.footer-hours li {
  font-size    : 14px;
  color        : rgba(255,255,255,.45);
  margin-bottom: 8px;
  display      : flex;
  justify-content:space-between;
  gap          : 12px;
}
.footer-hours li span:last-child { color:rgba(255,255,255,.65); }
.footer-contact-item {
  display      : flex;
  gap          : 12px;
  align-items  : flex-start;
  margin-bottom: 16px;
}
.footer-contact-item .icon { color:var(--gold); font-size:15px; margin-top:2px; flex-shrink:0; }
.footer-contact-item p    { font-size:14px; color:rgba(255,255,255,.45); line-height:1.55; }
.footer-contact-item a    { color:rgba(255,255,255,.65); transition:var(--transition); }
.footer-contact-item a:hover { color:var(--gold); }
.footer-bottom {
  border-top : 1px solid rgba(255,255,255,.08);
  padding    : 20px 0;
  display    : flex;
  align-items: center;
  justify-content:space-between;
  gap        : 12px;
  flex-wrap  : wrap;
}
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.3); }

/* ── Floating Buttons ────────────────────────────────────── */
.float-btn {
  position     : fixed;
  bottom       : 88px;
  width        : 56px; height:56px;
  border-radius: 50%;
  display      : flex;
  align-items  : center;
  justify-content:center;
  font-size    : 22px;
  z-index      : 900;
  box-shadow   : var(--shadow-lg);
  transition   : var(--transition);
  text-decoration:none;
}
.float-btn:hover { transform:scale(1.12) translateY(-3px); }
.float-call  { right:24px; background:var(--gold); color:var(--dark-brown); }
.float-wa    { right:88px; background:#25D366; color:var(--white); }
#back-top {
  position     : fixed;
  bottom       : 24px; right:24px;
  width        : 48px; height:48px;
  border-radius: 50%;
  border       : 2px solid var(--gold);
  background   : var(--dark-brown);
  color        : var(--gold);
  font-size    : 18px;
  display      : flex;
  align-items  : center;
  justify-content:center;
  cursor       : pointer;
  z-index      : 900;
  transition   : var(--transition);
  opacity      : 0;
  pointer-events:none;
}
#back-top.visible { opacity:1; pointer-events:all; }
#back-top:hover   { background:var(--gold); color:var(--dark-brown); transform:translateY(-3px); }

/* ── Toast ───────────────────────────────────────────────── */
.toast-container { position:fixed; bottom:24px; left:24px; z-index:9990; display:flex; flex-direction:column; gap:10px; }
.toast {
  display      : flex;
  align-items  : center;
  gap          : 12px;
  background   : var(--charcoal);
  color        : var(--cream);
  padding      : 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow   : var(--shadow-lg);
  font-size    : 14px;
  max-width    : 380px;
  border-left  : 4px solid var(--gold);
  animation    : slideInLeft .4s ease;
  transition   : opacity .4s ease;
}
.toast.error  { border-color:#e53935; }
.toast.hidden { opacity:0; }
.toast-icon   { font-size:18px; flex-shrink:0; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes spin        { to { transform:rotate(360deg); } }
@keyframes scrollLine  { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.6)} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:translateX(0)} }
@keyframes float1      { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(8deg)} }
@keyframes float2      { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(-5deg)} }
@keyframes float3      { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-22px) rotate(12deg)} }
.float-elem {
  position : absolute;
  font-size: 48px;
  opacity  : 0.12;
  pointer-events:none;
  user-select:none;
}
.float-elem:nth-child(1) { top:15%; left:8%;  animation:float1 5s ease-in-out infinite; }
.float-elem:nth-child(2) { top:70%; left:5%;  animation:float2 7s ease-in-out infinite; }
.float-elem:nth-child(3) { top:20%; right:8%; animation:float3 6s ease-in-out infinite; }
.float-elem:nth-child(4) { top:65%; right:6%; animation:float1 8s ease-in-out infinite 1s; }
