/* ════════════════════════════════════════════════════
   SONIDO BY MAQUINA — Complete CSS (v2)
   Dark Bohemian · Gold · Amber · Live & tested
════════════════════════════════════════════════════ */

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

/* ── Design Tokens ────────────────────────────────── */
:root {
  --bg:          #0d0a07;
  --bg-2:        #111009;
  --bg-card:     #181310;
  --bg-card-2:   #201a11;
  --border:      rgba(212,165,82,0.16);
  --border-h:    rgba(212,165,82,0.40);
  --gold:        #d4a552;
  --gold-lt:     #e8c07a;
  --gold-pale:   rgba(212,165,82,0.10);
  --amber:       #c87941;
  --cream:       #f5ead8;
  --muted:       #9a8870;
  --green:       #3b5c3a;
  --r:           12px;
  --r-lg:        20px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.35s;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --glow:        0 0 48px rgba(212,165,82,0.14);
}

/* ── Base ─────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section    { padding-block: 100px; position: relative; }
.tc         { text-align: center; }
.hide-mob   { display: inline; }

/* ── Prefers reduced motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg { animation: none !important; }
}

/* ── Typography ────────────────────────────────────── */
.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 28px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0d0a07;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,165,82,0.42);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(212,165,82,0.35);
  color: var(--gold-lt);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  padding: 9px 20px;
  font-size: 0.78rem;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--gold);
  color: var(--bg);
}

/* focus-visible ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: padding var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(13,10,7,0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 13px 40px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212,165,82,0.6));
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%,100% { filter: drop-shadow(0 0 8px rgba(212,165,82,0.5)); }
  50%     { filter: drop-shadow(0 0 16px rgba(212,165,82,0.9)); }
}
.nav__logo-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.nav__logo-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
  border-radius: 2px;
}
.nav__link:hover,
.nav__link.active { color: var(--gold-lt); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
/* Hamburger → X animation */
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
@media (max-width: 920px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,10,7,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
    padding: 80px 24px;
    animation: menuIn 0.3s var(--ease) both;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.4rem; font-weight: 600; color: var(--cream); }
  .nav__hamburger { display: flex; }
  #reserve-btn { display: none; }

  @keyframes menuIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
  }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  background: url('assets/hero_interior.jpg') center/cover no-repeat;
  will-change: transform;
  animation: heroPan 22s ease-in-out infinite alternate;
}

@keyframes heroPan {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.14) translate(-2%, -1.5%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(212,165,82,0.06) 0%, transparent 60%),
    linear-gradient(175deg, rgba(13,10,7,0.72) 0%, rgba(13,10,7,0.50) 45%, rgba(13,10,7,0.90) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 24px;
  max-width: 820px;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

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

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.04;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero__title em {
  display: block;
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-lt) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  color: rgba(245,234,216,0.72);
  margin-bottom: 40px;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,165,82,0.22);
  border-radius: 50px;
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--muted);
  backdrop-filter: blur(8px);
  transition: var(--dur) var(--ease);
  transition-property: border-color, color, background;
}
.badge:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: var(--gold-pale);
}
.badge__icon { font-size: 1rem; }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%,100% { opacity: 1; transform: scaleY(1) translateY(0); }
  50%     { opacity: 0.3; transform: scaleY(0.5) translateY(6px); }
}

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

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

.about__image-wrap {
  position: relative;
}
.about__img {
  border-radius: var(--r-lg);
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow), var(--glow);
}
.about__img-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(212,165,82,0.32);
}
.about__rating {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0d0a07;
  line-height: 1;
}
.about__stars { font-size: 0.8rem; color: rgba(13,10,7,0.65); margin: 5px 0 3px; }
.about__rev   { font-size: 0.68rem; font-weight: 600; color: rgba(13,10,7,0.6); white-space: nowrap; letter-spacing: 0.04em; }

.about__text { padding-right: 12px; }

.about__body {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.94rem;
  line-height: 1.85;
}
.about__body em { color: var(--gold-lt); font-style: italic; }

.about__stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 3ch;
}
.stat__label {
  display: block;
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   EXPERIENCE
════════════════════════════════════════ */
.experience { background: var(--bg); }

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 16px;
}

.exp-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.exp-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.exp-card__img-wrap {
  position: relative;
  height: 215px;
  overflow: hidden;
}
.exp-card--tall .exp-card__img-wrap { height: 275px; }

.exp-card__img-wrap img {
  transition: transform 0.65s var(--ease);
}
.exp-card:hover .exp-card__img-wrap img { transform: scale(1.07); }

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,7,0.75) 0%, transparent 55%);
}

.exp-card__body { padding: 22px 24px 26px; }

.exp-card__icon {
  display: inline-block;
  font-size: 1.55rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px rgba(212,165,82,0.4));
}

.exp-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 9px;
}
.exp-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ════════════════════════════════════════
   MENU
════════════════════════════════════════ */
.menu {
  background: var(--bg-2);
  overflow: hidden;
}
.menu__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 10%, rgba(212,165,82,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 90%, rgba(200,121,65,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.menu__intro {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 0.93rem;
}

/* Tab strip */
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 44px;
  role: tablist;
}
.menu__tab {
  padding: 10px 30px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.menu__tab--active {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0d0a07;
  font-weight: 600;
}
.menu__tab:not(.menu__tab--active):hover { color: var(--gold-lt); }

/* Panels */
.menu__panel {
  opacity: 1;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateY(0);
}
.menu__panel--hidden {
  display: none;
}

/* Menu grid */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: var(--bg-card);
  transition: background var(--dur) var(--ease);
  position: relative;
}
.menu-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  opacity: 0.5;
  transition: width var(--dur) var(--ease);
}
.menu-item:hover { background: var(--bg-card-2); }
.menu-item:hover::after { width: 100%; }

.menu-item__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  color: var(--cream);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6bcf6b;
  background: rgba(59,92,58,0.22);
  border: 1px solid rgba(59,92,58,0.45);
  border-radius: 4px;
  padding: 2px 6px;
}
.menu-item__desc {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.55;
}
.menu-item__price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.menu__note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--muted);
  opacity: 0.65;
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery { background: var(--bg); padding-bottom: 0; }
.gallery .container { padding-bottom: 40px; }

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--large { grid-row: 1 / 3; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(13,10,7,0.92) 0%, transparent 100%);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.03em;
  transform: translateY(100%);
  transition: transform 0.38s var(--ease);
}
.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption { transform: translateY(0); }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
#lightbox.lb-open { opacity: 1; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}

.lb-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  animation: lbIn 0.3s var(--ease) both;
}
@keyframes lbIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lb-img {
  max-width: 88vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.lb-caption {
  margin-top: 14px;
  color: rgba(245,234,216,0.65);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(212,165,82,0.25);
  transform: scale(1.1);
}

.lb-close {
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.1rem;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 1.8rem;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover { transform: translateY(-50%) scale(1.1); }
.lb-next:hover { transform: translateY(-50%) scale(1.1); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials { background: var(--bg-2); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  user-select: none;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-h);
  box-shadow: var(--shadow);
}

.testi-card__quote {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0d0a07;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.testi-card__name {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cream);
}
.testi-card__stars {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ════════════════════════════════════════
   CONTACT / INFO
════════════════════════════════════════ */
.contact { background: var(--bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.contact__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
  width: 26px;
  text-align: center;
}
.contact__detail strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact__detail p {
  font-size: 0.89rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact__socials {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: var(--gold-pale);
}

.contact__map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact__map {
  display: block;
  width: 100%;
  height: 460px;
  border: none;
  filter: grayscale(0.25) brightness(0.82) saturate(0.9);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-block: 36px 26px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-icon {
  font-size: 1.2rem;
  color: var(--gold);
}
.footer__logo-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.footer__logo-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.footer__divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__copy,
.footer__address { font-size: 0.73rem; color: var(--muted); opacity: 0.55; }

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease) var(--reveal-delay, 0s),
    transform 0.65s var(--ease) var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   CURSOR SPARKLE
════════════════════════════════════════ */
.cursor-spark {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  animation: sparkFade 0.7s var(--ease) forwards;
}
@keyframes sparkFade {
  0%   { opacity: 0.9; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(0.2) translateY(-12px); }
}

/* ════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .section { padding-block: 72px; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img  { height: 360px; }
  .about__img-badge { bottom: -14px; right: 14px; }
  .about__text { padding-right: 0; }
  .about__stats { gap: 24px; }

  .experience__grid { grid-template-columns: 1fr; }
  .exp-card--tall .exp-card__img-wrap { height: 215px; }

  .menu__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .gallery__item--large { grid-row: auto; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__map  { height: 340px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 580px)
════════════════════════════════════════ */
@media (max-width: 580px) {
  .section { padding-block: 60px; }
  .hide-mob { display: none; }

  .hero__title  { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__badges  { flex-direction: column; align-items: center; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px;
  }
  .gallery__item { grid-row: auto; }
  .gallery__caption { transform: translateY(0); background: linear-gradient(to top, rgba(13,10,7,0.85) 0%, transparent 100%); }

  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__top    { flex-direction: column; gap: 10px; text-align: center; }
  .footer__bottom { justify-content: center; text-align: center; }

  .about__stats { flex-direction: column; gap: 20px; }
}
