/* ===========================================================
   ATM BARBER — styles.css
   Paleta: #07090E · #10141C · #BF6B3A · #EBE4D8
   =========================================================== */

:root {
  --black:    #07090E;
  --graphite: #10141C;
  --gold:     #BF6B3A;
  --gold-soft:#D4855A;
  --cream:    #EBE4D8;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Manrope', 'Inter', sans-serif;
  --font-label:   'Space Mono', monospace;
  --ease: cubic-bezier(.22,1,.36,1);
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--cream);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { margin-top: 18px; color: #c9c4ba; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-label); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--black); box-shadow: 0 8px 24px -8px rgba(184,146,74,.5); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border-color: rgba(242,237,228,.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-call { background: transparent; border-color: rgba(242,237,228,.35); color: var(--cream); }
.btn-call:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: .72rem; }
.btn-block { width: 100%; }

/* ===========================================================
   SPLASH
   =========================================================== */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }
#splash.splash-hide { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-logo {
  width: 110px; height: 110px;
  border-radius: 4px;
  object-fit: contain;
  border: 1px solid rgba(184,146,74,.4);
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) forwards;
  animation-delay: .1s;
  box-shadow: 0 0 50px rgba(184,146,74,.15);
  background: rgba(255,255,255,.04);
  padding: 6px;
}
.splash-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  letter-spacing: .08em; color: var(--cream);
  display: flex; justify-content: center; overflow: hidden;
}
.splash-title span.letter {
  display: inline-block; opacity: 0; transform: translateY(40px);
  animation: letterIn .7s var(--ease) forwards;
}
.splash-sub {
  font-family: var(--font-label); font-size: clamp(.75rem, 1.6vw, 1rem);
  letter-spacing: .5em; color: var(--gold); margin-top: 10px; text-transform: uppercase;
  opacity: 0; animation: fadeUp .8s var(--ease) forwards; animation-delay: .9s;
}
@keyframes letterIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { to { opacity: 1; } }
.splash-bar { width: 220px; height: 2px; background: rgba(242,237,228,.12); margin-top: 38px; overflow: hidden; position: relative; }
.splash-bar::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform-origin: left; animation: barLoad 2.6s var(--ease) forwards; animation-delay: .2s;
}
@keyframes barLoad { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h); display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,.9), transparent);
  transition: background .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,.97); backdrop-filter: blur(10px);
  height: 68px; box-shadow: 0 1px 0 rgba(184,146,74,.18);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  letter-spacing: .04em; color: var(--cream);
  display: flex; align-items: center; gap: 12px;
}
.logo .logo-gold { color: var(--gold); }
.logo-img {
  width: 44px; height: 44px;
  border-radius: 4px;
  object-fit: contain;
  border: 1px solid rgba(184,146,74,.35);
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  padding: 3px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.logo:hover .logo-img { border-color: var(--gold); transform: rotate(-4deg) scale(1.06); }
.site-header.scrolled .logo-img { width: 38px; height: 38px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-label); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cream);
  position: relative; padding-bottom: 4px;
}
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 601; position: relative; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform .3s var(--ease), opacity .3s var(--ease); display: block; }

/* Mobile overlay — elemento hermano del header, sin backdrop-filter */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay.is-open {
  display: flex;
  animation: navFadeIn .25s var(--ease) forwards;
}
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
}
.mobile-menu-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  padding: 14px 0;
  width: 220px; text-align: center;
  border-bottom: 1px solid rgba(235,228,216,.07);
  transition: color .2s;
}
.mobile-menu-nav a:last-child { border-bottom: none; }
.mobile-menu-nav a:hover { color: var(--gold); }

.nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: 1px solid rgba(235,228,216,.18); cursor: pointer;
  color: var(--cream); font-size: 1.1rem; line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: border-color .2s, color .2s;
}
.nav-close:hover { border-color: var(--gold); color: var(--gold); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transform: scale(1.08); animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.5) 20%, rgba(10,10,10,.92) 100%),
              linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.15) 55%, rgba(10,10,10,.5) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: var(--header-h); max-width: 680px; }
.hero-content .eyebrow { display: block; margin-bottom: 22px; }
.hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 8vw, 5.6rem); line-height: 1.04; color: var(--cream); }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-text { margin-top: 26px; font-size: 1.12rem; color: #ddd7cb; max-width: 460px; }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 18px; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(242,237,228,.6); font-family: var(--font-label); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
}
.hero-scroll .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee { background: var(--gold); color: var(--black); overflow: hidden; padding: 16px 0; position: relative; z-index: 2; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 36s linear infinite; }
.marquee-track span { font-family: var(--font-label); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; padding: 0 26px; white-space: nowrap; }
.marquee-track span::after { content: '✂'; margin-left: 26px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================================================
   ABOUT
   =========================================================== */
.about { padding: 120px 0; background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; border: 1px solid rgba(184,146,74,.22); }
.about-media-tag {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--gold); color: var(--black);
  padding: 18px 26px; font-family: var(--font-display); text-align: center;
  box-shadow: 0 18px 36px -12px rgba(0,0,0,.6);
}
.about-media-tag strong { display: block; font-size: 1.9rem; line-height: 1; }
.about-media-tag span { font-family: var(--font-label); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }
.about-copy .eyebrow { display: block; margin-bottom: 16px; }
.about-copy p { color: #c9c4ba; margin-top: 18px; font-size: 1.02rem; }
.about-facts { margin-top: 38px; display: grid; gap: 18px; }
.about-facts li {
  display: flex; align-items: center; gap: 14px;
  font-size: .98rem; color: var(--cream);
  padding-bottom: 18px; border-bottom: 1px solid rgba(242,237,228,.1);
}
.about-facts li::before { content: ''; width: 8px; height: 8px; background: var(--gold); flex-shrink: 0; transform: rotate(45deg); }

/* ===========================================================
   SERVICES
   =========================================================== */
.services { padding: 120px 0; background: var(--graphite); position: relative; overflow: hidden; }
.services-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.services-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .07; filter: grayscale(1); }
.services .container { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: rgba(10,10,10,.88); border: 1px solid rgba(184,146,74,.16);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 18px;
  backdrop-filter: blur(4px);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(20,18,14,.95); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.service-name { font-family: var(--font-display); font-size: 1.32rem; color: var(--cream); }
.service-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); white-space: nowrap; }
.service-duration { font-family: var(--font-label); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: #9b9588; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ===========================================================
   WHY US
   =========================================================== */
.why { padding: 120px 0; background: var(--black); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { padding: 38px 30px; border: 1px solid rgba(242,237,228,.08); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.why-card:hover::before { transform: scaleX(1); }
.why-card .eyebrow { display: block; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 14px; color: var(--cream); }
.why-rating { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); margin-bottom: 6px; }
.why-card p { color: #c9c4ba; font-size: .95rem; }
.why-card ul { display: grid; gap: 10px; margin-top: 4px; }
.why-card ul li { font-size: .92rem; color: #c9c4ba; display: flex; align-items: center; gap: 10px; }
.why-card ul li::before { content: '—'; color: var(--gold); }

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery { padding: 120px 0 140px; background: var(--graphite); overflow: hidden; }
.gallery-track-wrap {
  width: 100%; overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 16px; scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.gallery-track { display: flex; gap: 20px; padding: 0 24px; }
.gallery-item {
  scroll-snap-align: start; flex: 0 0 auto; cursor: pointer;
  width: min(70vw, 320px); aspect-ratio: 3/4; overflow: hidden; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.5), transparent 45%); transition: background .4s var(--ease); }
.gallery-item:hover::after { background: linear-gradient(to top, rgba(184,146,74,.25), transparent 55%); }
.gallery-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.gallery-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(184,146,74,.4); background: transparent;
  color: var(--gold); font-size: 1.1rem; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.gallery-nav button:hover { background: var(--gold); color: var(--black); }

/* ===========================================================
   EXPERIENCE
   =========================================================== */
.experience { padding: 130px 0; background: var(--black); position: relative; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.experience-media { position: relative; }
.experience-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; filter: grayscale(.15); }
.experience-frame { position: absolute; inset: 20px; border: 1px solid var(--gold); pointer-events: none; }
.experience-copy .section-title { margin-bottom: 26px; }
.experience-list { display: grid; gap: 26px; margin-top: 36px; }
.experience-list li { display: flex; gap: 18px; align-items: flex-start; }
.experience-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); flex-shrink: 0; width: 40px; }
.experience-list h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; color: var(--cream); }
.experience-list p { color: #c9c4ba; font-size: .94rem; }

/* ===========================================================
   BOOKING — FORMULARIO DE RESERVAS
   =========================================================== */
.booking-section {
  padding: 130px 0;
  background: var(--graphite);
  position: relative;
}
.booking-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(184,146,74,.08), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.booking-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(10,10,10,.7);
  border: 1px solid rgba(184,146,74,.2);
  padding: 52px 48px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.cita-form { display: grid; gap: 22px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-label);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242,237,228,.6);
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(242,237,228,.05);
  border: 1px solid rgba(242,237,228,.12);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242,237,228,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(184,146,74,.06);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8924A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #181818; color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* Input type date color fix */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.7) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}

.form-error {
  color: #e05252;
  font-size: .85rem;
  font-family: var(--font-body);
  padding: 12px 16px;
  border: 1px solid rgba(224,82,82,.3);
  background: rgba(224,82,82,.08);
  border-radius: 2px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: rgba(242,237,228,.5);
}
.form-privacy input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold);
}
.form-privacy a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

#citaSubmit {
  margin-top: 8px;
  padding: 20px;
  font-size: .85rem;
  position: relative;
  overflow: hidden;
}
#citaSubmit:disabled { opacity: .7; cursor: wait; }

/* Cita success state */
.cita-success {
  text-align: center;
  padding: 60px 20px;
}
.cita-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 12px 36px -8px rgba(184,146,74,.5);
}
.cita-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--cream);
}
.cita-success p {
  color: #c9c4ba;
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--black); padding: 100px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; padding-bottom: 70px; border-bottom: 1px solid rgba(242,237,228,.08); }
.footer-brand .logo { display: block; margin-bottom: 18px; }
.footer-brand p { color: #9b9588; font-size: .92rem; max-width: 280px; }
.footer-col h5 { font-family: var(--font-label); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col p, .footer-col address { font-style: normal; color: #c9c4ba; font-size: .94rem; line-height: 1.9; }
.footer-col address a { color: #c9c4ba; transition: color .25s; }
.footer-col address a:hover { color: var(--gold); }
.footer-hours { display: grid; gap: 10px; }
.footer-hours div { display: flex; justify-content: space-between; gap: 14px; font-size: .9rem; color: #c9c4ba; }
.footer-hours span:first-child { color: var(--cream); }
.footer-cta { margin-top: 26px; }
.footer-bottom { padding: 28px 0 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: #756f63; }
.footer-bottom a { color: #756f63; text-decoration: underline; text-underline-offset: 3px; transition: color .25s; }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================================================
   LIGHTBOX
   =========================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s var(--ease);
  padding: 20px;
}
.lightbox:not([hidden]) { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-img-wrap {
  max-width: min(92vw, 900px); max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 88vh; object-fit: contain;
  border: 1px solid rgba(184,146,74,.2);
  box-shadow: 0 40px 120px -20px rgba(0,0,0,.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.lightbox-img-wrap img.lb-fade { opacity: 0; transform: scale(.97); }
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(28,28,28,.9); border: 1px solid rgba(184,146,74,.3);
  color: var(--cream); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s, transform .3s; z-index: 8010;
}
.lightbox-close:hover { background: var(--gold); color: var(--black); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(28,28,28,.8); border: 1px solid rgba(184,146,74,.35);
  color: var(--gold); font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s, transform .3s; margin: 0 16px;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--black); transform: scale(1.1); }
.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-label); font-size: .72rem; letter-spacing: .15em;
  color: rgba(242,237,228,.5); text-transform: uppercase;
}

/* ===========================================================
   COOKIE BANNER
   =========================================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 7000;
  background: rgba(16,14,10,.97);
  border-top: 1px solid rgba(184,146,74,.28);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform .5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p { font-size: .9rem; color: #c9c4ba; line-height: 1.6; }
.cookie-text strong { color: var(--cream); }
.cookie-links { margin-top: 6px; font-size: .8rem; }
.cookie-links a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* Sticky mobile book bar */
.sticky-book {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: none; background: var(--black);
  border-top: 1px solid rgba(184,146,74,.28);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.sticky-book .btn { width: 100%; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .about-grid, .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-media { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-form-wrap { padding: 40px 36px; }
}

/* ===================== REVIEWS ===================== */
.reviews { padding: 120px 0; background: var(--black); }

.reviews-rating-global {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-top: 16px;
}
.reviews-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.reviews-score { font-family: var(--font-display); font-size: 2.2rem; color: var(--cream); }
.reviews-source { font-family: var(--font-label); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: #756f63; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.review-card {
  background: var(--graphite);
  border: 1px solid rgba(184,146,74,.12);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s var(--ease);
}
.review-card:hover { border-color: rgba(184,146,74,.35); }

.review-header { display: flex; align-items: center; gap: 14px; }

.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.review-header strong { font-size: .95rem; color: var(--cream); display: block; }
.review-stars { color: var(--gold); font-size: .85rem; letter-spacing: 1px; margin-top: 2px; }

.review-card p { font-size: .9rem; color: #c0bab0; line-height: 1.7; font-style: italic; }

/* ===================== MAPA ===================== */
.map-section { padding: 100px 0 0; }

.map-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(191,107,58,.18);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}
.map-info-block {
  padding: 28px 24px;
  border-right: 1px solid rgba(191,107,58,.12);
}
.map-info-block:last-child { border-right: none; }
.map-info-block .eyebrow { display: block; margin-bottom: 10px; }
.map-info-block p { font-size: .9rem; color: #b0a89e; line-height: 1.7; }
.map-info-block a { color: var(--gold); }
.map-info-block a:hover { text-decoration: underline; }

.map-frame {
  position: relative;
  padding: 0 0 60px;
}
.map-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.map-frame-inner {
  border: 1px solid rgba(191,107,58,.15);
  border-top: none;
  overflow: hidden;
}
.map-frame-inner iframe {
  display: block;
  filter: grayscale(40%) brightness(0.75) contrast(1.1);
  transition: filter .4s ease;
}
.map-frame-inner:hover iframe { filter: grayscale(10%) brightness(0.85); }

/* ===================== REVIEW BADGE ===================== */
.review-badge {
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(191,107,58,.12);
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 4px;
}

/* ===================== FOOTER CREDIT ===================== */
.footer-credit {
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .08em;
  color: #4a4540;
}
.footer-credit a { color: var(--gold); transition: opacity .2s; }
.footer-credit a:hover { opacity: .75; }

/* =================== RESPONSIVE ADDITIONS =================== */
@media (max-width: 860px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .sticky-book { display: block; }
  .hero { padding-bottom: 90px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .map-info-row { grid-template-columns: 1fr 1fr; }
  .map-info-block { border-right: none; border-bottom: 1px solid rgba(191,107,58,.12); }
  .map-info-block:nth-child(odd) { border-right: 1px solid rgba(191,107,58,.12); }
  .map-info-block:nth-last-child(-n+2) { border-bottom: none; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .about, .services, .why, .gallery, .experience, .booking-section, .reviews, .map-section { padding: 80px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .about-media-tag { right: 0; bottom: -18px; padding: 14px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 32px 22px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .map-info-row { grid-template-columns: 1fr; }
  .map-info-block { border-right: none; border-bottom: 1px solid rgba(191,107,58,.12); }
  .map-info-block:last-child { border-bottom: none; }
}
