/* ============================================================
   Dream Home — Barbería & Social Club
   styles.css
   ============================================================ */

:root {
  --black: #0a0a0a;
  --white: #f5f0eb;
  --offwhite: #e8e0d8;
  --gray: #9a9a9a;
  --light-gray: #1e1e1e;
  --accent: #c8a96e;
  --accent-dim: rgba(200, 169, 110, 0.15);
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ── NAV ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.nav-logo { text-decoration: none; color: inherit; }
.nav-logo img { height: 52px; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--offwhite);
  text-decoration: none;
  font-size: 0.80rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { transform: scaleX(1); }
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.5rem 1.4rem;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.15s var(--ease-out) !important;
}
@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover { background: var(--accent) !important; color: var(--black) !important; }
}
.nav-cta:active { transform: scale(0.97); }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 6rem;
  background: #080808;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Desktop: landscape centrado | Mobile: portrait enfocado arriba */
.hero-vid--desktop {
  object-position: center center;
  display: block;
}
.hero-vid--mobile {
  object-position: center top;
  display: none;
}
@media (max-width: 900px) {
  .hero-vid--desktop { display: none; }
  .hero-vid--mobile  { display: block; }
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.6) 45%, rgba(8,8,8,0.2) 100%),
    linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 40%, #111 70%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.025) 59px, rgba(255,255,255,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.025) 59px, rgba(255,255,255,0.025) 60px);
}
.hero-video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,169,110,0.12) 0%, transparent 65%);
}
.placeholder-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.35;
}
.placeholder-label .pl-icon { font-size: 3rem; }
.placeholder-label span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.placeholder-label code {
  font-size: 0.55rem;
  color: var(--gray);
  font-family: monospace;
  background: rgba(255,255,255,0.05);
  padding: 0.3rem 0.8rem;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,169,110,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 5.5vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.35s forwards;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: rgba(232, 224, 216, 0.85);
  margin-top: 1.5rem;
  line-height: 1.55;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.5s forwards;
}
.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.65s forwards;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s var(--ease-out), transform 0.15s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--offwhite); transform: translateY(-2px); }
}
.btn-primary:active { transform: scale(0.97); }
.btn-secondary {
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--accent); }
.btn-secondary::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: currentColor;
}
.hero-logo-float {
  position: absolute;
  left: 4%; top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 38vw, 500px);
  opacity: 0.04;
  animation: slowSpin 60s linear infinite, fadeIn 2s var(--ease-out) 1.2s forwards;
  pointer-events: none;
  z-index: 2;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.3s forwards;
  z-index: 3;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── SECTION BASE ──────────────────────────────────────── */
section { padding: 5rem 4rem; }
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gray);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.divider {
  width: 60px; height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

/* ── INSTAGRAM STRIP ──────────────────────────────────── */
.ig-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #0e0e0e;
  border-top: 1px solid rgba(200,169,110,0.18);
  border-bottom: 1px solid rgba(200,169,110,0.18);
  padding: 1.6rem 3rem;
  text-decoration: none;
  transition: background 0.3s ease;
  flex-wrap: wrap;
}
.ig-strip:hover { background: #161616; }

.ig-strip-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
}
.ig-handle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.ig-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--offwhite);
  flex: 1;
  text-align: center;
  margin: 0;
}
.ig-strip-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ig-strip:hover .ig-strip-cta { color: var(--accent); }

@media (max-width: 600px) {
  .ig-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
    gap: 0.75rem;
  }
  .ig-strip-text { text-align: left; }
}

/* ── SERVICIOS — Menú tipo restaurante ─────────────────── */
#servicios { background: var(--light-gray); }
.menu-wrap {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 4rem;
  margin-top: 2rem;
  align-items: start;
}
.menu-divider {
  width: 1px;
  background: rgba(200,169,110,0.15);
  align-self: stretch;
  min-height: 100%;
}
.menu-col { display: flex; flex-direction: column; gap: 0; }
.menu-col-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-col-tag {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.menu-col-tag.premium { color: var(--accent); }
.menu-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0.6rem;
}
.menu-col-title em { font-style: italic; color: var(--accent); }
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
  cursor: default;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover .menu-item-name { color: var(--accent); }
.menu-item-left { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.menu-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  font-weight: 700;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
  margin-top: 0.35rem;
}
.menu-item-dots {
  flex-shrink: 0;
  height: 1px;
  width: 40px;
  border-bottom: 1px dashed rgba(200,169,110,0.3);
  position: relative;
  top: -0.5rem;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-cta {
  margin-top: 2rem;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.menu-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gray);
  font-style: italic;
}

/* ── GALERÍA ───────────────────────────────────────────── */
#galeria { background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
  aspect-ratio: 1;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.gallery-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-item:nth-child(1) { transition-delay: 0ms; }
.gallery-item:nth-child(2) { transition-delay: 100ms; }
.gallery-item:nth-child(3) { transition-delay: 200ms; }
.gallery-item:nth-child(4) { transition-delay: 150ms; }
.gallery-item:nth-child(5) { transition-delay: 60ms; }
/* Item 1 (video): landscape ancho */
.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
/* Item 2: portrait alto — rellena las 2 filas de la derecha */
.gallery-item:nth-child(2) {
  grid-column: 3;
  grid-row: 1 / span 2;
  aspect-ratio: unset;
}
/* Items 3 y 4: cuadrados (default) */
/* Item 5: banner cinemático full-width */
.gallery-item:nth-child(5) {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%);
  transition: transform 0.6s;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-placeholder .ph-icon { font-size: 2rem; opacity: 0.3; margin-bottom: 0.5rem; }

/* Imágenes reales de galería */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.gallery-overlay span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.3rem;
  display: inline-block;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.35s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img,
  .gallery-item:hover video { transform: scale(1.07); }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .gallery-overlay { opacity: 1; }
  .gallery-overlay span { transform: translateY(0); opacity: 1; }
}

/* ── EQUIPO ────────────────────────────────────────────── */
#equipo { background: var(--light-gray); }
.team-dots { display: none; }
.team-swipe-hint { display: none; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover .team-photo { transform: scale(1.04); }
}
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  z-index: 1;
}
.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  z-index: 2;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.team-role {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.team-specialty {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ── RESEÑAS ───────────────────────────────────────────── */
#resenas { background: var(--black); padding-bottom: 4rem; }

.reviews-carousel {
  margin-top: 4rem;
  position: relative;
}

.reviews-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  max-width: 680px;
  margin: 0 auto;
}

.review-card {
  grid-row: 1;
  grid-column: 1;
  background: var(--light-gray);
  padding: 2.5rem 2rem;
  position: relative;
  border-top: 2px solid transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  visibility: hidden;
}
.review-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border-top-color: var(--accent);
  visibility: visible;
}

.review-stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--offwhite);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.review-author {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.review-quote {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: rgba(200,169,110,0.08);
  line-height: 1;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.reviews-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: default;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.reviews-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (min-width: 901px) {
  .reviews-track {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    gap: 1.5rem;
    align-items: stretch;
  }

  .review-card {
    grid-row: unset;
    grid-column: unset;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    border-top-color: var(--accent);
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  }

  .reviews-dots { display: none; }
}

/* ── PRODUCTOS ─────────────────────────────────────────── */
#productos {
  background: var(--light-gray);
  padding: 0;
}

.productos-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 3.5rem 2rem;
  background: var(--light-gray);
  border: none;
  border-bottom: 1px solid rgba(200,169,110,0.2);
  cursor: pointer;
  text-align: center;
  transition: background 0.25s ease;
}
.productos-cta:hover { background: #252525; }
.productos-cta:hover .productos-cta-sub {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.productos-cta-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.productos-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.productos-cta-title em {
  color: var(--accent);
  font-style: italic;
}
.productos-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1rem;
  padding: 0.6rem 1.6rem;
  border: 1px solid rgba(200,169,110,0.5);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.producto-card {
  background: #1a1a1a;
  border-top: 2px solid var(--accent);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.producto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.producto-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.producto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.producto-card:hover .producto-img { transform: scale(1.05); }

.producto-info {
  padding: 1.25rem 1.25rem 1.5rem;
}
.producto-nombre {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.producto-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.producto-precio {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.producto-wa {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.35);
  padding-bottom: 0.15rem;
  transition: border-color 0.2s, color 0.2s;
}
.producto-wa:hover {
  color: var(--white);
  border-color: var(--white);
}

.productos-nota {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  padding: 0 2rem 2rem;
  opacity: 0.6;
}

/* ── MODAL PRODUCTOS ───────────────────────────────────── */

.productos-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.productos-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.productos-modal-dialog {
  background: #0d0d0d;
  border: 1px solid rgba(200,169,110,0.2);
  width: 100%;
  max-width: 1200px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.97) translateY(14px);
  transition: transform 0.35s var(--ease-out);
}
.productos-modal-overlay.open .productos-modal-dialog {
  transform: scale(1) translateY(0);
}

.productos-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  flex-shrink: 0;
}

.productos-modal-body {
  overflow-y: auto;
  flex: 1;
  padding: 1.5rem 2rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,169,110,0.25) transparent;
}
.productos-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
}
.productos-modal-title em {
  color: var(--accent);
  font-style: italic;
}
.productos-modal-close {
  background: none;
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.productos-modal-close:hover {
  background: rgba(200,169,110,0.1);
  border-color: var(--accent);
}

.productos-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .productos-modal-header { padding: 1.25rem 1rem 0.75rem; }
  .productos-modal-body { padding: 1rem 1rem 1.5rem; }
  .productos-modal-title { font-size: 1.2rem; }
  .productos-modal-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── MINI CTA ──────────────────────────────────────────── */
.mini-cta {
  background: var(--light-gray);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.mini-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gray);
}
@media (max-width: 600px) {
  .mini-cta {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  .mini-cta .btn-primary { display: block; width: fit-content; margin: 0 auto; }
}

/* ── CONTACTO ──────────────────────────────────────────── */
#contacto { background: var(--light-gray); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.contact-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.contact-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-detail { flex: 1; }
.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}
.contact-value small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--gray);
  margin-top: 0.3rem;
  font-weight: 300;
}
.map-cta-group {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.map-cta {
  background: var(--accent);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s;
}
.map-cta:hover { background: var(--white); }
.map-cta--waze {
  background: var(--black);
  color: var(--accent);
  border: 1px solid var(--accent);
}
.map-cta--waze:hover { background: var(--accent); color: var(--black); }
.map-box {
  background: var(--black);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.65), 0 0 0 1px rgba(200, 169, 110, 0.08);
  flex-direction: column;
  gap: 1rem;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.map-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px);
}
.map-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.map-pin { font-size: 2.5rem; }
.map-label { position: relative; }

/* ── REDES SOCIALES ────────────────────────────────────── */
#redes { background: var(--black); }
.social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.social-item {
  flex: 1;
  padding: 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--white);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.social-item:last-child { border-right: none; }
.social-item:hover { background: var(--accent-dim); }
.social-icon { font-size: 1.8rem; }
.social-handle {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.social-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

/* ── RESERVAR CTA ──────────────────────────────────────── */
#reservar {
  background: var(--light-gray);
  text-align: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
#reservar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.06) 0%, transparent 70%);
}
.reservar-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  position: relative;
}
.reservar-title em { font-style: italic; color: var(--accent); }
.reservar-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gray);
  margin: 1.5rem 0 3rem;
  font-style: italic;
  position: relative;
}
.btn-book {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  padding: 1.2rem 4rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: background 0.25s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-book:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200,169,110,0.3);
  }
}
.btn-book:active { transform: scale(0.97); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: #050505;
  padding: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand { max-width: 200px; }
.footer-logo img { height: 50px; opacity: 0.7; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.footer-nav { gap: 0.5rem; }
.footer-nav-link {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-nav-link:hover { color: var(--white); }
.footer-right { gap: 1.2rem; }
.footer-social { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-social-link:hover { color: var(--accent); }
.footer-book-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.footer-book-btn:hover { background: var(--accent); color: var(--black); }
.footer-book-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  grid-column: 1 / -1;
  text-align: center;
}
.footer-book-label {
  color: var(--gray);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  text-align: center;
}
.footer-bottom {
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  line-height: 1.8;
}

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }
.reveal-delay-4 { transition-delay: 0.25s; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  #navbar { padding: 1.2rem 1.5rem; }
  #navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 0 2rem; }
  .hero-logo-float { display: none; }
  section { padding: 2rem 2rem 3.5rem; }
  .menu-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .menu-divider { display: none; }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item:nth-child(2) { grid-column: unset; grid-row: unset; aspect-ratio: 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .social-bar { flex-direction: column; }
  .social-item { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .social-item:last-child { border-bottom: none; }
  footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "columns" "book";
    gap: 2.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }
  .footer-brand {
    grid-area: brand;
    align-items: center;
    max-width: 100%;
  }
  .footer-nav, .footer-right {
    grid-area: unset;
  }
  .footer-nav { align-items: flex-start; text-align: left; }
  .footer-right { align-items: flex-start; text-align: left; }
  footer .footer-nav,
  footer .footer-right {
    display: flex;
  }
  footer > .footer-nav,
  footer > .footer-right {
    grid-column: auto;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "nav   right"
      "cta   cta";
  }
  .footer-brand    { grid-area: brand; text-align: center; align-items: center; }
  .footer-nav      { grid-area: nav; }
  .footer-right    { grid-area: right; }
  .footer-book-wrap { grid-area: cta; }
  .footer-book-btn { align-self: center; }
}
@media (max-width: 600px) {
  /* Hero mobile */
  #hero { padding: 0 1.5rem; }
  .hero-content {
    padding-bottom: 5rem;
    max-width: 100%;
  }
  .btn-primary {
    white-space: nowrap;
    padding: 1rem 1.8rem;
    font-size: 0.65rem;
  }
  .btn-secondary::before { display: none; }
  .btn-book {
    padding: 1.2rem 2rem;
    width: 100%;
    max-width: 320px;
  }
  .hero-video-overlay {
    background:
      linear-gradient(to right, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.35) 100%),
      linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 55%);
  }
  .hero-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
    font-weight: 500;
  }
  .hero-title { font-size: 3rem; }
  .hero-sub { font-size: 1.05rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; grid-row: unset; }
  .team-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 1.5rem 1rem;
    margin: 0 -2rem;
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-card {
    flex: 0 0 82vw;
    max-width: 340px;
    aspect-ratio: 3/4;
    scroll-snap-align: center;
    border-radius: 2px;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .team-specialty { max-height: 80px; opacity: 1; }
  .team-name { font-size: 1.5rem; }
  .team-info { padding: 2rem 1.4rem 1.4rem; }
  .team-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; }
  .team-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }
  .team-dot.active {
    background: var(--accent);
    transform: scale(1.3);
  }
  .team-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    animation: swipeHintPulse 1.5s ease-in-out infinite, swipeHintFade 3s ease forwards 3s;
  }
  .team-swipe-hint svg {
    animation: swipeArrow 1.5s ease-in-out infinite;
  }
  .team-swipe-hint.hidden { display: none; }

  @keyframes swipeArrow {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(5px); }
  }
  @keyframes swipeHintFade {
    to { opacity: 0; pointer-events: none; }
  }
  #reservar { padding: 5rem 2rem; }
  .hero-video-wrap video { object-position: center; }
}
/* ── NUEVO MOBILE MENU TOTALMENTE INDEPENDIENTE ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); /* Fondo oscuro transparente */
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: flex-end; /* El panel sale de la derecha */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #070707; /* Color sólido e independiente */
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%); /* Comienza escondido a la derecha */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(200, 169, 110, 0.2);
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0); /* Desliza elegantemente */
}

/* Encabezado interno del menú */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.mobile-logo { height: 40px; width: auto; }

/* Botón Circular de cerrar (X) */
.menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.menu-close:hover {
  border-color: var(--accent);
  background: rgba(200, 169, 110, 0.08);
}

.menu-close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  left: 50%; top: 50%;
}

.menu-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Enlaces del Móvil */
.menu-movil-enlaces {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-grow: 1;
}

.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateX(16px);
  transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out),
              opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-menu.open .mobile-link          { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.30s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.35s; }

@media (hover: hover) and (pointer: fine) {
  .mobile-link:hover {
    color: var(--accent);
    padding-left: 0.5rem;
  }
}

/* Footer del panel (Botón de reserva y redes) */
.mobile-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-reserve {
  display: block;
  text-align: center;
  padding: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.mobile-social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.mobile-social-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(200, 169, 110, 0.08);
}

/* ── PREFERS REDUCED MOTION ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-actions,
  .hero-scroll,
  .hero-logo-float {
    opacity: 1 !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .mobile-link {
    opacity: 1 !important;
    transform: none !important;
  }

  .gallery-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .gallery-overlay span {
    transform: none !important;
    opacity: 1 !important;
  }
}