:root {
  --black: #0a0908;
  --black-soft: #121110;
  --black-card: #17130f;
  --black-card-2: #1c1712;
  --red-deep: #3a0d0d;
  --red: #7a1414;
  --red-bright: #a91e1e;
  --gold: #c9a227;
  --gold-light: #e8cf7a;
  --gold-pale: #f3e6b8;
  --cream: #ece4d6;
  --cream-muted: #a89f90;
  --border-soft: rgba(201, 162, 39, 0.16);

  --font-display: 'Playfair Display', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --gold-gradient: linear-gradient(120deg, #8a6a12 0%, #e8cf7a 35%, #c9a227 55%, #f3e6b8 75%, #8a6a12 100%);
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.gold-text {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow.center { justify-content: center; }
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--cream);
}
.section-title.center { text-align: center; }
.section-head { text-align: center; margin-bottom: 56px; }

.about-text { color: var(--cream-muted); margin: 18px 0; font-size: 1.05rem; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  font-weight: 500;
}
.btn-primary {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #150e04;
  box-shadow: 0 10px 30px -8px rgba(201, 162, 39, 0.5);
}
.btn-primary:hover { background-position: 100% center; transform: translateY(-2px); box-shadow: 0 14px 34px -6px rgba(201, 162, 39, 0.65); }
.btn-outline { background: transparent; color: var(--gold-light); border-color: var(--border-soft); }
.btn-outline:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(236, 228, 214, 0.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn.full { width: 100%; margin-top: 6px; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
}
.preloader-emblem { position: relative; width: 92px; height: 92px; display: flex; align-items: center; justify-content: center; }
.preloader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: spin 1.1s linear infinite;
}
.preloader-glyph { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--gold-light); }
.preloader-text { font-family: var(--font-body); letter-spacing: 0.35em; font-size: 0.75rem; color: var(--cream-muted); }
@keyframes spin { to { transform: rotate(360deg); } }
.fade-slow-enter-active, .fade-slow-leave-active { transition: opacity 0.6s ease; }
.fade-slow-leave-to { opacity: 0; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--gold-gradient); background-size: 200% auto;
  z-index: 1000; transition: width 0.1s linear;
}

/* ---------- navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 22px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  padding: 14px 0;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.navbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; }
.brand-mark { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--cream); letter-spacing: 0.04em; }
.brand-amp { color: var(--gold); }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.42em; color: var(--cream-muted); margin-top: 2px; }

.nav-links { display: flex; gap: 30px; }
.nav-link {
  position: relative; text-decoration: none; color: var(--cream-muted);
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 0; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-cta { display: inline-block; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold-light); 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); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(26, 15, 10, 0.7) 0%, rgba(10, 9, 8, 0.88) 62%, rgba(10, 9, 8, 0.96) 100%),
    url('imagenes/img8.jpg') center 35% / cover no-repeat;
}
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px circle at var(--x) var(--y), rgba(201, 162, 39, 0.14), transparent 60%);
  transition: background 0.15s ease;
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(122, 20, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 20, 20, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero-embers { position: absolute; inset: 0; pointer-events: none; }
.ember {
  position: absolute; bottom: -20px; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--red-bright) 70%, transparent);
  box-shadow: 0 0 8px 2px rgba(201, 162, 39, 0.6);
  animation-name: rise; animation-timing-function: ease-in; animation-iteration-count: infinite;
}
@keyframes rise {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translate(var(--drift), -108vh) scale(1.1); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 880px; padding: 0 24px; }
.hero-title { margin: 10px 0 26px; }
.hero-title .line {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.2rem); line-height: 1.08; letter-spacing: 0.01em; color: var(--cream);
}
.hero-subtitle { font-size: 1.12rem; color: var(--cream-muted); max-width: 620px; margin: 0 auto 40px; font-family: var(--font-accent); font-style: italic; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  background: none; border: none; cursor: pointer; width: 26px; height: 42px;
  border: 1px solid var(--border-soft); border-radius: 14px; z-index: 2;
}
.scroll-cue-line { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; border-radius: 2px; background: var(--gold); animation: cueMove 1.8s ease infinite; }
@keyframes cueMove { 0% { top: 8px; opacity: 1; } 70% { opacity: 0.3; } 100% { top: 22px; opacity: 0; } }

/* ---------- stats ---------- */
.stats {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.93) 0%, rgba(58, 13, 13, 0.85) 50%, rgba(10, 9, 8, 0.93) 100%),
    url('imagenes/img2.jpg') center 35% / cover no-repeat;
  padding: 64px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.stats-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.stat-label { display: block; margin-top: 8px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); }

/* ---------- about ---------- */
.about { padding: 130px 0; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.about-frame { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden; border: 1px solid var(--border-soft); box-shadow: var(--shadow-lg); }
.about-texture {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(169, 30, 30, 0.3), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(201, 162, 39, 0.2), transparent 50%),
    linear-gradient(160deg, rgba(23, 19, 15, 0.35) 0%, rgba(10, 9, 8, 0.6) 100%),
    url('imagenes/img7.jpg') center / cover no-repeat;
}
.about-texture::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,162,39,0.05) 0 2px, transparent 2px 14px);
}
.about-badge {
  position: absolute; bottom: 26px; left: 26px; right: 26px;
  background: rgba(10, 9, 8, 0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--border-soft); padding: 20px 22px; border-radius: 3px;
  display: flex; align-items: center; gap: 16px;
}
.about-badge-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; }
.about-badge-text { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.3; }
.about-signature { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--border-soft); }
.about-signature-name { display: block; font-family: var(--font-accent); font-style: italic; font-size: 1.4rem; color: var(--gold-light); }
.about-signature-role { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); }

/* ---------- menu ---------- */
.menu { padding: 100px 0 130px; background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%); }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 52px; }
.menu-tab {
  background: transparent; border: 1px solid var(--border-soft); color: var(--cream-muted);
  padding: 10px 22px; border-radius: 30px; font-size: 0.8rem; letter-spacing: 0.05em;
  cursor: pointer; transition: all 0.3s ease; font-family: var(--font-body);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold-light); }
.menu-tab.active { background: var(--gold-gradient); color: #150e04; border-color: transparent; font-weight: 500; }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.menu-item {
  position: relative; background: linear-gradient(160deg, var(--black-card) 0%, var(--black-card-2) 100%);
  border: 1px solid var(--border-soft); border-radius: 4px; padding: 30px 26px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.menu-item:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.45); box-shadow: 0 20px 40px -18px rgba(0,0,0,0.65); }
.menu-item-icon { width: 44px; height: 44px; margin-bottom: 18px; color: var(--gold); }
.menu-item-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }
.menu-item-icon svg path:first-child:not([stroke-linecap]) { fill: currentColor; opacity: 0.9; stroke: none; }
.menu-item-tag {
  position: absolute; top: 22px; right: 22px; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red-bright); border: 1px solid rgba(169, 30, 30, 0.5); padding: 4px 10px; border-radius: 20px;
  background: rgba(122, 20, 20, 0.12);
}
.menu-item-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; margin-bottom: 10px; color: var(--cream); }
.menu-item-desc { font-size: 0.92rem; color: var(--cream-muted); min-height: 62px; }
.menu-item-footer { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.menu-item-dots { flex: 1; height: 1px; background-image: linear-gradient(to right, var(--border-soft) 40%, transparent 0%); background-size: 8px 1px; background-repeat: repeat-x; }
.menu-item-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; white-space: nowrap; }

.menu-card-move, .menu-card-enter-active, .menu-card-leave-active { transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1); }
.menu-card-enter-from { opacity: 0; transform: translateY(24px) scale(0.96); }
.menu-card-leave-to { opacity: 0; transform: translateY(-16px) scale(0.96); }
.menu-card-leave-active { position: absolute; }

/* ---------- experiencia ---------- */
.experience { padding: 40px 0 130px; }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.experience-card {
  text-align: center; padding: 40px 26px; border: 1px solid var(--border-soft); border-radius: 4px;
  background: linear-gradient(180deg, rgba(122,20,20,0.06), transparent);
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.experience-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.experience-icon { font-size: 2.4rem; margin-bottom: 18px; filter: drop-shadow(0 0 14px rgba(201,162,39,0.35)); }
.experience-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 12px; color: var(--gold-light); }
.experience-card p { font-size: 0.9rem; color: var(--cream-muted); }

/* ---------- galeria ---------- */
.gallery { padding: 20px 0 130px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 16px; }
.gallery-item { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; border: 1px solid var(--border-soft); }
.gallery-item.span-lg { grid-column: span 2; grid-row: span 2; }
.gallery-item.span-md { grid-column: span 2; grid-row: span 1; }
.gallery-item.span-sm { grid-column: span 1; grid-row: span 1; }
.gallery-visual {
  position: absolute; inset: 0; transition: transform 0.6s ease;
  background-image: linear-gradient(180deg, rgba(10, 9, 8, 0.08) 0%, rgba(10, 9, 8, 0.6) 100%), var(--gallery-img);
  background-size: cover; background-position: center;
}
.gallery-item:hover .gallery-visual { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between;
  padding: 16px 18px; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  opacity: 0; transition: opacity 0.35s ease; font-size: 0.85rem; letter-spacing: 0.03em; color: var(--gold-light);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-plus { font-size: 1.2rem; }

.lightbox {
  position: fixed; inset: 0; z-index: 950; background: rgba(6,5,4,0.94); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 24px;
}
.lightbox-visual {
  width: min(70vw, 640px); aspect-ratio: 4/3; border-radius: 6px; border: 1px solid var(--border-soft);
  background-image: linear-gradient(180deg, rgba(10, 9, 8, 0.05) 0%, rgba(10, 9, 8, 0.35) 100%), var(--gallery-img);
  background-size: cover; background-position: center;
}
.lightbox-caption { font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; color: var(--gold-light); }
.lightbox-close { position: absolute; top: 26px; right: 32px; background: none; border: none; color: var(--cream); font-size: 2.2rem; cursor: pointer; line-height: 1; }
.lightbox-nav { background: none; border: 1px solid var(--border-soft); color: var(--gold-light); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); font-size: 1rem; }
.lightbox-nav.prev { left: 5%; }
.lightbox-nav.next { right: 5%; }
.lightbox-nav:hover { border-color: var(--gold); background: rgba(201,162,39,0.1); }

/* ---------- testimonios ---------- */
.testimonials { padding: 20px 0 130px; }
.testimonial-carousel { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial { border: none; }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 22px; }
.testimonial-text { font-family: var(--font-accent); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--cream); line-height: 1.5; }
.testimonial footer { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }
.testimonial-name { font-family: var(--font-display); color: var(--gold-light); font-size: 1.05rem; }
.testimonial-role { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); }

.testi-enter-active, .testi-leave-active { transition: all 0.5s ease; }
.testi-enter-from { opacity: 0; transform: translateY(14px); }
.testi-leave-to { opacity: 0; transform: translateY(-14px); }

.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--border-soft); background: transparent; cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }

/* ---------- reservas ---------- */
.reservations { padding: 20px 0 130px; }
.reservations-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.reservations-info { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.reservations-info li { color: var(--cream-muted); font-size: 0.95rem; }
.reservations-info strong { color: var(--gold-light); font-weight: 500; }

.reservation-form {
  background: linear-gradient(160deg, var(--black-card), var(--black-card-2));
  border: 1px solid var(--border-soft); border-radius: 6px; padding: 42px; position: relative; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(10,9,8,0.6); border: 1px solid var(--border-soft); color: var(--cream);
  padding: 13px 14px; border-radius: 3px; font-family: var(--font-body); font-size: 0.92rem; transition: border-color 0.3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field input.error, .form-field select.error { border-color: var(--red-bright); }
.field-error { display: block; margin-top: 6px; font-size: 0.75rem; color: var(--red-bright); }
.form-field textarea { resize: vertical; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

.form-success { text-align: center; padding: 40px 10px; }
.form-success-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--gold-gradient); color: #150e04; font-size: 1.6rem; margin-bottom: 18px; }
.form-success h3 { font-family: var(--font-display); color: var(--gold-light); margin-bottom: 10px; font-size: 1.5rem; }
.form-success p { color: var(--cream-muted); margin-bottom: 24px; }

/* ---------- footer ---------- */
.footer { background: var(--black-soft); border-top: 1px solid var(--border-soft); padding: 90px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { color: var(--cream-muted); font-size: 0.9rem; margin: 18px 0 22px; max-width: 280px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--border-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); text-decoration: none; transition: all 0.3s ease; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,162,39,0.1); }
.footer-col h4 { font-family: var(--font-display); color: var(--gold-light); margin-bottom: 20px; font-size: 1.05rem; }
.footer-col a { display: block; color: var(--cream-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 12px; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { color: var(--cream-muted); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--border-soft); padding: 22px 32px; display: flex; justify-content: space-between; max-width: 1240px; margin: 0 auto; font-size: 0.78rem; color: var(--cream-muted); flex-wrap: wrap; gap: 8px; }

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-gradient); border: none; color: #150e04; font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 10px 26px -8px rgba(201,162,39,0.6); z-index: 500;
}
.fade-enter-active, .fade-leave-active { transition: opacity 0.35s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .about-grid, .reservations-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: rgba(10,9,8,0.98); backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 26px; padding: 40px;
    transform: translateX(100%); transition: transform 0.4s ease; border-left: 1px solid var(--border-soft);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-lg { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reservation-form { padding: 28px 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .about-badge { flex-direction: column; align-items: flex-start; }
}
