/* ==================================================================
   LA MERCED PLAZA HOSTAL — Stylesheet
   Refined editorial-luxury, navy + gold + cream
   ================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #050f24;
  --navy-900: #0a1f44;
  --navy-800: #0f2b5b;
  --navy-700: #1a3a72;

  --gold-700: #9a7b1c;
  --gold-600: #b69428;
  --gold-500: #c9a227;
  --gold-400: #d4af37;
  --gold-300: #e3c258;

  --yellow:   #f5c518;

  --cream-50: #fdfbf5;
  --cream-100: #f8f3e6;
  --cream-200: #efe7d2;

  --ink-900: #0a0a0a;
  --ink-700: #2a2a2a;
  --ink-500: #5a5a5a;
  --ink-300: #a8a39a;

  --line:    rgba(10, 31, 68, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 1px 2px rgba(10,31,68,.06), 0 1px 3px rgba(10,31,68,.05);
  --shadow-md: 0 4px 12px rgba(10,31,68,.08), 0 2px 6px rgba(10,31,68,.05);
  --shadow-lg: 0 24px 48px -12px rgba(10,31,68,.18), 0 8px 16px rgba(10,31,68,.08);
  --shadow-xl: 0 40px 80px -20px rgba(10,31,68,.28), 0 16px 32px rgba(10,31,68,.12);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --t-fast: 180ms cubic-bezier(.4,.0,.2,1);
  --t-base: 320ms cubic-bezier(.4,.0,.2,1);
  --t-slow: 600ms cubic-bezier(.16,.84,.32,1);

  --display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max:    1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold-500); color: var(--navy-900); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}
.section--cream { background: var(--cream-100); }
.section--navy {
  background: var(--navy-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(201,162,39,0.08), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(201,162,39,0.06), transparent 50%);
  pointer-events: none;
}
.section--navy > .wrap { position: relative; }

.section--gold {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-200) 100%);
  position: relative;
}
.section--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(201,162,39,0.025) 60px, rgba(201,162,39,0.025) 61px);
  pointer-events: none;
}

.section__head {
  margin-bottom: clamp(36px, 5vw, 64px);
  max-width: 720px;
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__sub { font-size: 1.05rem; color: var(--ink-500); margin: 12px 0 0; }
.section__sub--light { color: rgba(253,251,245,0.7); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-500);
  margin-bottom: 18px;
}
.eyebrow--gold { color: var(--gold-400); border-bottom-color: var(--gold-400); }

.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0;
}
.h2--light { color: var(--cream-50); }

.lede {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--navy-800);
  margin: 0 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 6px 20px -6px rgba(201,162,39,0.55);
}
.btn--gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(201,162,39,0.65);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--navy-900);
}
.btn--outline:hover {
  background: var(--navy-900);
  color: var(--cream-50);
}
.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 0.78rem;
}

/* ==================================================================
   TOPBAR
   ================================================================== */
.topbar {
  background: var(--navy-950);
  color: rgba(253,251,245,0.85);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(253,251,245,0.85);
}
.topbar__link:hover { color: var(--gold-400); }
.topbar__link svg { color: var(--gold-500); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.lang-switch__btn {
  padding: 4px 6px;
  color: rgba(253,251,245,0.55);
  transition: color var(--t-fast);
}
.lang-switch__btn:hover { color: var(--cream-50); }
.lang-switch__btn.is-active { color: var(--gold-400); }
.lang-switch__sep { color: rgba(253,251,245,0.3); }
.topbar__booking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 500;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  transition: background var(--t-fast);
}
.topbar__booking:hover { background: var(--gold-400); }

@media (max-width: 720px) {
  .topbar__link--hide-sm { display: none; }
  .topbar__left, .topbar__right { gap: 14px; }
  .topbar__booking span { display: none; }
}

/* ==================================================================
   HEADER
   ================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,251,245,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 150px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand__logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  position: relative;
  padding: 8px 0;
}
.nav a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width var(--t-base);
}
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--navy-900);
  color: var(--cream-50) !important;
  padding: 11px 22px !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  transition: background var(--t-fast);
}
.nav__cta:hover { background: var(--gold-500); color: var(--navy-950) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .header__inner { height: 110px; }
  .brand__logo { height: 90px; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-50);
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base), opacity var(--t-base);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a:last-child { border-bottom: 0; margin-top: 8px; }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta { text-align: center; }
}

/* ==================================================================
   HERO
   ================================================================== */
.hero {
  position: relative;
  min-height: min(94vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream-50);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: -2;
  animation: hero-zoom 24s ease-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,15,36,0.45) 0%, rgba(5,15,36,0.65) 60%, rgba(5,15,36,0.85) 100%),
    linear-gradient(105deg, rgba(5,15,36,0.55) 0%, rgba(5,15,36,0.15) 60%);
  z-index: -1;
}
.hero__inner {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero__content {
  max-width: 720px;
  animation: hero-rise var(--t-slow) cubic-bezier(.16,.84,.32,1) both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 28px;
  font-family: var(--display);
}
.hero__title-script {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--gold-300);
  margin-bottom: 4px;
}
.hero__title-main {
  font-weight: 500;
  font-size: clamp(2.6rem, 7.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero__title-sub {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.6em;
  margin-top: 8px;
  color: var(--cream-100);
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  max-width: 580px;
  color: rgba(253,251,245,0.92);
  margin: 0 0 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero__quick {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 520px;
}
.hero__quick-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__quick-num {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
}
.hero__quick-lbl {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,251,245,0.7);
  margin-top: 6px;
}
.hero__quick-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(253,251,245,0.7);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

@media (max-width: 580px) {
  .hero__quick { gap: 18px; }
  .hero__quick-divider { height: 28px; }
  .hero__cta .btn { flex: 1; min-width: 140px; }
}

/* ==================================================================
   WELCOME
   ================================================================== */
.welcome {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.welcome__text p:not(.lede) {
  color: var(--ink-500);
  margin: 0 0 20px;
}
.welcome__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.welcome__facts li strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 2px;
}
.welcome__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.welcome__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.welcome__photo::after {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.welcome__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-500);
}
.welcome__badge span:first-child {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--gold-400);
}
.welcome__badge strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 4px 0;
}
.welcome__badge span:last-child {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(253,251,245,0.7);
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .welcome { grid-template-columns: 1fr; }
  .welcome__media { justify-self: center; max-width: 360px; }
}

/* ==================================================================
   ROOMS
   ================================================================== */
.rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.room {
  background: var(--navy-800);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.18);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
}
.room:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.55);
  border-color: var(--gold-500);
}
.room__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.room__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,31,68,0.45) 100%);
}
.room__body {
  padding: 24px 24px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 4px;
  color: var(--cream-50);
}
.room__people {
  margin: 0 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(253,251,245,0.6);
}
.room__price {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
  margin: 8px 0 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.room__price span {
  font-size: 1.1rem;
  color: var(--gold-300);
}
.room__price small {
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(253,251,245,0.55);
  margin-left: 6px;
  font-weight: 400;
}
.room__cta {
  margin-top: auto;
  padding: 11px 20px;
  background: transparent;
  color: var(--cream-50);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  display: inline-block;
}
.room__cta:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}

.rooms__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(212,175,55,0.18);
}
.rooms__note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
}
.rooms__note strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
}
.rooms__note span { color: rgba(253,251,245,0.85); }

@media (max-width: 980px) {
  .rooms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .rooms { grid-template-columns: 1fr; gap: 18px; }
}

/* ==================================================================
   AMENITIES
   ================================================================== */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.amenity {
  text-align: center;
  padding: 8px;
  transition: transform var(--t-base);
}
.amenity:hover { transform: translateY(-4px); }
.amenity svg {
  width: 44px;
  height: 44px;
  color: var(--gold-600);
  margin: 0 auto 18px;
  display: block;
}
.amenity h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.amenity p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-500);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .amenities { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

/* ==================================================================
   GALLERY
   ================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  background: var(--navy-900);
}
.gallery__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-base);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0) 60%, rgba(10,31,68,0.6) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
}

/* ==================================================================
   LOCATION
   ================================================================== */
.location {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 440px;
  background: var(--cream-200);
}
.location__map iframe { display: block; height: 100%; min-height: 440px; }
.location__info {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 36px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.location__info::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 70%);
  pointer-events: none;
}
.location__name {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--gold-400);
}
.location__addr {
  font-style: normal;
  line-height: 1.7;
  color: rgba(253,251,245,0.85);
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.location__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}
.location__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.location__list svg {
  color: var(--gold-400);
  flex-shrink: 0;
}
.location__list a:hover { color: var(--gold-300); }
.location__info .btn--outline {
  align-self: flex-start;
  color: var(--gold-400);
  border-color: var(--gold-400);
}
.location__info .btn--outline:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}

@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; }
  .location__map { min-height: 320px; }
}

/* ==================================================================
   RESERVATION FORM
   ================================================================== */
.reserve {
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream-50);
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.25);
  position: relative;
}
.reserve::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.reserve__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink-900);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--body);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

.reserve__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.reserve__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reserve__note svg { color: #25d366; }

.reserve__alt {
  margin-top: 28px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-500);
}
.reserve__alt a {
  color: var(--navy-900);
  font-weight: 500;
  margin: 0 6px;
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 1px;
}
.reserve__alt a:hover { color: var(--gold-600); }
.reserve__alt span:not(:first-child) { color: var(--ink-300); }

@media (max-width: 640px) {
  .reserve__grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   FOOTER
   ================================================================== */
.footer {
  background: var(--navy-950);
  color: rgba(253,251,245,0.7);
  padding: 72px 0 24px;
  border-top: 4px solid var(--gold-500);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer__logo {
  height: 88px;
  width: auto;
  margin-bottom: 16px;
}
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-300);
  margin: 0;
  max-width: 260px;
}
.footer__col h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer__col p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer__col a { color: rgba(253,251,245,0.85); }
.footer__col a:hover { color: var(--gold-400); }

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(253,251,245,0.85);
  transition: all var(--t-fast);
}
.socials a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(253,251,245,0.5);
}
.footer__bottom p { margin: 0; }
.footer__credit a { color: var(--gold-400); }
.footer__credit a:hover { color: var(--gold-300); }

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ==================================================================
   FLOATING WHATSAPP
   ================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(37,211,102,0.55);
  transition: transform var(--t-base);
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.7;
  z-index: -1;
  animation: wa-pulse 2.4s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(1.7); opacity: 0;   }
  100% { transform: scale(1.7); opacity: 0;   }
}

@media (max-width: 480px) {
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ==================================================================
   LIGHTBOX
   ================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,15,36,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__figure {
  margin: 0;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.lightbox__cap {
  color: rgba(253,251,245,0.85);
  font-size: 0.92rem;
  text-align: center;
  font-style: italic;
  font-family: var(--display);
  font-size: 1.1rem;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--cream-50);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,0.1); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  color: var(--cream-50);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.1); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

@media (max-width: 580px) {
  .lightbox__nav { font-size: 2.2rem; width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ==================================================================
   ACCESSIBILITY
   ================================================================== */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
