/* ═══════════════════════════════════════════════════════
   HOTEL MARSELLA — PREMIUM REDESIGN
   Aesthetic: Luxury Coastal Refined
   Fonts: Cormorant Garamond (display) + Jost (body)
   Palette: Deep Sage · Ivory · Warm Gold · Charcoal
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --sage:           #3D6B52;
  --sage-dark:      #2C5040;
  --sage-deep:      #1E3B2E;
  --sage-mid:       #4E7E63;
  --sage-light:     #7FA98C;
  --sage-mist:      #C8DDD1;
  --sage-ghost:     #EEF5F1;
  --ivory:          #FAF8F3;
  --ivory-warm:     #F4EFE4;
  --ivory-deep:     #EDE6D6;
  --gold:           #B8954A;
  --gold-light:     #D4B06A;
  --gold-pale:      #F0E4C4;
  --charcoal:       #1A2420;
  --charcoal-mid:   #2E3D38;
  --charcoal-soft:  #4A5E57;
  --stone:          #8A9E96;
  --stone-light:    #BDC9C4;
  --white:          #FFFFFF;

  --primary-green:       var(--sage);
  --primary-green-dark:  var(--sage-dark);
  --primary-green-light: var(--sage-mid);
  --secondary-sage:      var(--sage-mist);
  --accent-teal:         #5A9E8E;
  --primary-blue:        var(--sage);
  --primary-blue-dark:   var(--sage-dark);
  --secondary-turquoise: #5A9E8E;
  --sand:                var(--ivory-warm);
  --dark-gray:           var(--charcoal);
  --light-gray:          var(--sage-ghost);
  --text-color:          var(--charcoal);
  --text-light:          var(--charcoal-soft);
  --urgency-orange:      #C4703A;
  --success-green:       #25D366;
  --gold-var:            var(--gold);

  --shadow-xs:  0 1px 4px rgba(30,59,46,0.06);
  --shadow-sm:  0 2px 12px rgba(30,59,46,0.08);
  --shadow-md:  0 6px 24px rgba(30,59,46,0.10);
  --shadow-lg:  0 12px 40px rgba(30,59,46,0.12);
  --shadow-xl:  0 20px 60px rgba(30,59,46,0.14);
  --shadow-2xl: 0 32px 80px rgba(30,59,46,0.18);
  --shadow-gold: 0 8px 32px rgba(184,149,74,0.22);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headings: 'Cormorant Garamond', Georgia, serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 100px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

::selection { background: var(--sage-mist); color: var(--sage-deep); }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 6vw, 5rem); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.75rem, 4vw, 3.2rem); letter-spacing: -0.01em; color: var(--charcoal); text-align: center; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); color: var(--sage); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); color: var(--sage); }

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes counterPop {
  0%   { transform: scale(1);    }
  40%  { transform: scale(1.28); }
  70%  { transform: scale(0.92); }
  100% { transform: scale(1);    }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  background: rgba(250, 248, 243, 0.0);
  backdrop-filter: blur(0px);
}

.header.scrolled {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(30,59,46,0.08), var(--shadow-sm);
}

.navbar { padding: 1.25rem 0; transition: padding 0.3s ease; }
.header.scrolled .navbar { padding: 0.875rem 0; }

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.logo-link { text-decoration: none; display: flex; flex-direction: column; gap: 1px; flex-shrink: 0; }
.logo h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1;
  transition: color 0.3s ease;
}
.header.scrolled .logo h1 { color: var(--sage-dark); }
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  transition: color 0.3s ease;
}
.header.scrolled .logo-tagline { color: var(--stone); }
.logo-link:hover h1 { opacity: 0.85; }

/* Nav menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-menu li { position: relative; }

.nav-menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  display: block;
  position: relative;
}
.header.scrolled .nav-menu a { color: var(--charcoal-soft); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }
.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a.active { color: var(--sage); }

/* CTA nav button */
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.55rem 1.25rem !important;
  margin-left: 0.5rem;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.08em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(184,149,74,0.35) !important;
}
.header.scrolled .nav-cta { color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  display: block;
}
.header.scrolled .hamburger span { background: var(--charcoal); }

/* Hamburger active state */
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: url("../img/portada-principal.png");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(14,28,22,0.75) 0%, rgba(14,28,22,0.35) 55%, rgba(14,28,22,0.05) 100%),
    linear-gradient(to top,   rgba(14,28,22,0.65) 0%, transparent 50%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  top: 20%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,149,74,0.6), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(3rem, 8vh, 6rem) calc(clamp(1rem, 4vw, 3rem) + 24px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s forwards;
}
.hero-badge-line { width: 32px; height: 1px; background: var(--gold); }
.hero-badge-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out) 0.25s forwards;
}

.hero h1 em { font-style: italic; color: rgba(255,255,255,0.85); }

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 460px;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out) 0.55s forwards;
}

/* Floating stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.hero-stat {
  padding: 1.25rem 2rem;
  background: rgba(250,248,243,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184,149,74,0.3);
  border-left: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

/* REMOVIDO: .hero-scroll-indicator — ya no existe */

/* ═══════════════════════════════════════════════════
   HERO RESTAURANTE
═══════════════════════════════════════════════════ */
.hero-restaurante {
  height: 60vh;
  min-height: 380px;
  background-image: url("../img/restaurante.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.hero-restaurante::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,28,22,0.4), rgba(14,28,22,0.55));
  z-index: 1;
}
.hero-restaurante-content { position: relative; z-index: 2; max-width: 720px; }
.hero-restaurante h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-restaurante .subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero-restaurante .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.hero-restaurante .section-subtitle::after { background: linear-gradient(90deg, var(--gold), rgba(255,255,255,0.4)); margin: 0.75rem auto 0; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(61,107,82,0.3);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(61,107,82,0.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.on-light .btn-secondary,
section:not(.hero):not(.testimonials):not(.contact-cta) .btn-secondary {
  color: var(--sage);
  border-color: var(--sage);
}
.on-light .btn-secondary:hover,
section:not(.hero):not(.testimonials):not(.contact-cta) .btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(184,149,74,0.38);
}

.btn-block { width: 100%; }
.btn-small { padding: 0.625rem 1.5rem; font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════ */
section { padding: clamp(3.5rem, 8vw, 7rem) 0; }

.section-subtitle {
  font-family: var(--font-body);
  text-align: center;
  color: var(--stone);
  margin-bottom: clamp(2rem, 5vw, 4rem);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}
.section-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--sage-mist));
  margin: 0.875rem auto 0;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.section-divider::before, .section-divider::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--stone-light);
}
.section-divider i { color: var(--gold); font-size: 0.7rem; }

/* ═══════════════════════════════════════════════════
   BOOKING SYSTEM
═══════════════════════════════════════════════════ */
.reservas-section {
  background: var(--sage-ghost);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.reservas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(61,107,82,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,149,74,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.booking-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--stone-light);
  box-shadow: var(--shadow-xs);
}

.progress-step.active .step-number {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  box-shadow: 0 6px 20px rgba(61,107,82,0.28);
}

.step-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--stone);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.progress-step.active .step-label { color: var(--sage); }

.progress-line {
  width: 64px;
  height: 1px;
  background: var(--stone-light);
  transition: var(--transition);
  margin-bottom: 1.3rem;
}
.progress-step.active + .progress-line,
.progress-step.active ~ .progress-line { background: var(--sage-mist); }

/* Booking bar */
.booking-bar {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(61,107,82,0.08);
  overflow: visible;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 20;
}

.booking-bar-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 1.25rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease;
  overflow: visible;
  position: relative;
  min-width: 0;
}
.booking-bar-field:first-child { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.booking-bar-field:hover { background: rgba(61,107,82,0.03); }

.booking-bar-field label {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.booking-bar-field label i { font-size: 0.72rem; opacity: 0.8; }

.booking-bar-field input[type="date"],
.booking-bar-field select {
  border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 400; color: var(--charcoal); padding: 0;
  cursor: pointer; width: 100%;
  -webkit-appearance: none; -moz-appearance: none;
  appearance: none; background-image: none !important;
}
.booking-bar-field input[type="date"] { cursor: pointer; pointer-events: all; }
.booking-bar-field select { display: none; }

.booking-bar-divider {
  width: 1px;
  background: var(--stone-light);
  align-self: stretch;
  margin: 0.75rem 0;
  flex-shrink: 0;
  opacity: 0.6;
}

.booking-bar-btn {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  padding: 1.25rem 2rem;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.booking-bar-btn:hover { transform: none !important; }

.date-field { cursor: pointer; user-select: none; }
.date-display {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--charcoal);
  min-height: 1.4em;
  line-height: 1.4;
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.date-field:hover .date-display { color: var(--sage); }

.counter-field { cursor: default; }
.counter-control {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}
.counter-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--sage-mist);
  background: transparent;
  color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.68rem;
  transition: all 0.2s var(--ease-out);
  flex-shrink: 0; user-select: none; pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.counter-btn:hover:not(:disabled) {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.counter-btn:active:not(:disabled) { transform: scale(0.93); }
.counter-btn--disabled, .counter-btn:disabled { opacity: 0.28; cursor: not-allowed; pointer-events: none; }

.counter-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  min-width: 22px;
  text-align: center;
  line-height: 1;
  display: inline-block;
}
.counter-value.counter-pop { animation: counterPop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* Urgency banner */
.urgency-banner {
  background: linear-gradient(135deg, #fff9f4, #ffeedd);
  border-left: 3px solid var(--urgency-orange);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.urgency-banner i { color: var(--urgency-orange); font-size: 1.1rem; opacity: 0.85; flex-shrink: 0; }
.urgency-banner span { font-family: var(--font-body); color: #8B4513; font-weight: 400; font-size: 0.85rem; line-height: 1.5; }
.urgency-banner.final { background: linear-gradient(135deg, #eef8f2, #d8f0e2); border-left-color: #2E7D52; }
.urgency-banner.final i { color: #2E7D52; }
.urgency-banner.final span { color: #1E5C3A; }

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-xl);
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(61,107,82,0.07);
}
.booking-form-card h3 {
  font-family: var(--font-display);
  color: var(--sage-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 400;
}
.booking-form-card h3 i { color: var(--gold); font-size: 1.1rem; }

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.6rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group label i { color: var(--gold); font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--stone-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.25s ease;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,107,82,0.08);
}

/* Room selection */
.rooms-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.room-booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
}
.room-booking-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.room-booking-card.selected { border-color: var(--sage); box-shadow: 0 8px 40px rgba(61,107,82,0.2); }

.room-booking-image {
  position: relative;
  height: 180px;
  background: var(--sage-ghost);
  overflow: hidden;
}
.room-booking-image .room-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--sage-dark), var(--sage));
  color: var(--white); gap: 1rem; transition: transform 0.5s var(--ease-out);
}
.room-booking-image .room-image-placeholder i { font-size: 2.5rem; opacity: 0.7; }
.room-booking-image .room-image-placeholder span { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.room-booking-card:hover .room-image-placeholder { transform: scale(1.04); }

.urgency-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(196, 112, 58, 0.92);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 5px;
}
.urgency-badge.popular { background: rgba(61,107,82,0.9); }

.room-booking-info { padding: 1.25rem; }
.room-booking-info h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 400;
}
.room-booking-info > p {
  font-family: var(--font-body); color: var(--charcoal-soft);
  margin-bottom: 1rem; font-size: 0.88rem; line-height: 1.65; font-weight: 300;
}

.room-price-display {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 1rem; padding: 0.75rem 1rem;
  background: var(--sage-ghost); border-radius: var(--radius-md);
}
.price-from { font-family: var(--font-body); color: var(--stone); font-size: 0.78rem; font-weight: 400; }
.price-amount { font-family: var(--font-display); color: var(--sage-dark); font-size: 1.9rem; font-weight: 500; }
.price-period { font-family: var(--font-body); color: var(--stone); font-size: 0.78rem; font-weight: 400; }

.reservation-summary {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--ivory-deep);
}
.reservation-summary h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
}
.summary-grid { display: grid; gap: 0.75rem; }
.summary-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0.875rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone-light);
  box-shadow: var(--shadow-xs);
}
.summary-item i { color: var(--gold); font-size: 1rem; width: 22px; flex-shrink: 0; }
.summary-label { font-family: var(--font-body); color: var(--stone); font-size: 0.72rem; display: block; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.summary-value { font-family: var(--font-body); color: var(--charcoal); font-weight: 500; font-size: 0.92rem; }
.summary-item.total { background: var(--sage-dark); border-color: var(--sage-dark); box-shadow: 0 4px 16px rgba(44,80,64,0.22); }
.summary-item.total i,
.summary-item.total .summary-label,
.summary-item.total .summary-value { color: var(--white); }
.summary-item.total .summary-label { opacity: 0.75; }

.booking-actions { display: flex; gap: 1rem; margin-top: 2rem; }
.booking-actions .btn { flex: 1; }

.amenities-list { list-style: none; margin-bottom: 1rem; }
.amenities-list li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.84rem;
  color: var(--charcoal-soft); padding: 0.25rem 0;
  font-weight: 300;
}
.amenities-list li i { color: var(--gold); font-size: 0.72rem; }

/* ═══════════════════════════════════════════════════
   HIGHLIGHTS
═══════════════════════════════════════════════════ */
.highlights { background: var(--white); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--stone-light);
  transition: all 0.4s var(--ease-out);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--sage-ghost), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage-mist); }
.highlight-card:hover::before { opacity: 1; }

.highlight-icon {
  width: 64px; height: 64px;
  background: var(--sage-ghost);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s var(--ease-out);
  position: relative; z-index: 1;
}
.highlight-card:hover .highlight-icon { background: var(--sage); box-shadow: 0 8px 24px rgba(61,107,82,0.25); }
.highlight-icon i { font-size: 1.6rem; color: var(--sage); transition: color 0.4s ease; }
.highlight-card:hover .highlight-icon i { color: var(--white); }
.highlight-card h3 { font-family: var(--font-display); color: var(--charcoal); margin-bottom: 0.75rem; font-size: 1.25rem; font-weight: 400; position: relative; z-index: 1; }
.highlight-card p { font-family: var(--font-body); color: var(--charcoal-soft); font-size: 0.88rem; line-height: 1.7; font-weight: 300; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   ABOUT SECTIONS
═══════════════════════════════════════════════════ */
.about-preview { background: var(--white); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-text h2 { font-family: var(--font-display); text-align: left; font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 400; margin-bottom: 1.5rem; color: var(--charcoal); }
.about-text p { margin-bottom: 1.5rem; color: var(--charcoal-soft); line-height: 1.9; font-size: 0.97rem; font-weight: 300; }

.about-image {
  background: var(--sage-ghost);
  min-height: 380px;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); transition: transform 0.7s var(--ease-out); }
.about-image:hover img { transform: scale(1.04); }
.about-image .image-placeholder {
  width: 100%; height: 100%; min-height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--sage-dark), var(--sage));
  color: var(--white); gap: 1.5rem;
  transition: transform 0.7s var(--ease-out);
}
.about-image:hover .image-placeholder { transform: scale(1.03); }
.about-image .image-placeholder i { font-size: 3.5rem; opacity: 0.55; }
.about-image .image-placeholder span { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }

/* ═══════════════════════════════════════════════════
   RESTAURANT PREVIEW
═══════════════════════════════════════════════════ */
.restaurant-preview { background: var(--ivory-warm); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.restaurant-info h3 { font-family: var(--font-display); color: var(--charcoal); margin-bottom: 1.25rem; font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 400; }
.restaurant-info ul { list-style: none; margin: 1.5rem 0; }
.restaurant-info li { font-family: var(--font-body); padding: 0.6rem 0; color: var(--charcoal-soft); font-size: 0.92rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--ivory-deep); font-weight: 300; }
.restaurant-info li:last-child { border-bottom: none; }
.restaurant-info li i { color: var(--sage); }
.restaurant-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.restaurant-image { background: var(--sage-ghost); min-height: 380px; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow-lg); }
.restaurant-image .image-placeholder { width: 100%; height: 100%; min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--sage-dark), var(--sage-mid)); color: var(--white); gap: 1.5rem; }
.restaurant-image .image-placeholder i { font-size: 3.5rem; opacity: 0.55; }

/* ═══════════════════════════════════════════════════
   ROOMS PREVIEW
═══════════════════════════════════════════════════ */
.rooms-preview { background: var(--ivory); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.room-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.4s var(--ease-out); border: 1px solid transparent; }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2xl); border-color: var(--sage-mist); }

.room-image { position: relative; height: 240px; overflow: hidden; }
.room-image .room-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--sage-deep), var(--sage));
  color: var(--white); gap: 1rem;
  transition: transform 0.6s var(--ease-out);
}
.room-image .room-image-placeholder i { font-size: 3rem; opacity: 0.55; }
.room-image .room-image-placeholder span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.room-card:hover .room-image-placeholder { transform: scale(1.06); }

.room-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,56,42,0.92) 0%, rgba(28,56,42,0.4) 50%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 2rem; opacity: 0; transition: opacity 0.4s ease;
}
.room-card:hover .room-overlay { opacity: 1; }

.room-info { padding: 1.75rem; }
.room-info h3 { font-family: var(--font-display); color: var(--charcoal); margin-bottom: 0.6rem; font-size: 1.4rem; font-weight: 400; }
.room-info p { color: var(--charcoal-soft); margin-bottom: 1rem; line-height: 1.65; font-size: 0.88rem; font-weight: 300; }
.room-price { font-family: var(--font-display); font-weight: 500; color: var(--sage-dark); font-size: 1.3rem; margin-bottom: 0; }

.text-center { text-align: center; }

/* ═══════════════════════════════════════════════════
   EVENTOS
═══════════════════════════════════════════════════ */
.eventos-section { background: var(--white); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.eventos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.eventos-description { font-family: var(--font-body); color: var(--charcoal-soft); margin-bottom: 2rem; line-height: 1.9; font-size: 0.97rem; font-weight: 300; }
.eventos-precio { background: var(--sage-ghost); padding: 1rem 1.25rem; border-radius: var(--radius-md); margin-bottom: 2rem; display: flex; align-items: baseline; gap: 8px; border-left: 2px solid var(--gold); }
.eventos-precio i { color: var(--gold); font-size: 1rem; }
.eventos-precio .price-amount { font-family: var(--font-display); color: var(--sage-dark); font-size: 1.9rem; font-weight: 500; line-height: 1; }
.eventos-precio .price-period { font-family: var(--font-body); color: var(--stone); font-size: 0.8rem; font-weight: 400; }
.eventos-tipos h4 { font-family: var(--font-display); color: var(--charcoal); margin-bottom: 1rem; font-weight: 400; font-size: 1.25rem; }
.tipos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
.tipo-item { font-family: var(--font-body); display: flex; align-items: center; gap: 8px; color: var(--charcoal-soft); font-size: 0.86rem; font-weight: 400; padding: 0.65rem 0.875rem; background: var(--ivory); border-radius: var(--radius-md); border: 1px solid var(--stone-light); transition: all 0.25s ease; }
.tipo-item:hover { border-color: var(--sage-mist); background: var(--sage-ghost); }
.tipo-item i { color: var(--sage); width: 16px; font-size: 0.85rem; }
.eventos-image { background: var(--sage-ghost); min-height: 380px; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow-lg); }
.eventos-image .image-placeholder { width: 100%; height: 100%; min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--sage-dark), var(--sage-mid)); color: var(--white); gap: 1.5rem; }

/* ═══════════════════════════════════════════════════
   UBICACIÓN
═══════════════════════════════════════════════════ */
.ubicacion-section { background: var(--ivory-warm); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.ubicacion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.ubicacion-text { font-family: var(--font-body); color: var(--charcoal-soft); margin-bottom: 2rem; line-height: 1.9; font-size: 0.97rem; font-weight: 300; }
.ubicacion-text strong { font-family: var(--font-display); color: var(--sage-dark); font-weight: 500; font-size: 1.05em; }
.ubicacion-text em { font-style: normal; color: var(--charcoal); font-weight: 400; }
.ubicacion-info h4 { font-family: var(--font-display); color: var(--charcoal); margin: 1.75rem 0 1.25rem; font-size: 1.25rem; font-weight: 400; }
.cercanias-list { list-style: none; margin-bottom: 2rem; }
.cercanias-list li { font-family: var(--font-body); display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 0; border-bottom: 1px solid var(--ivory-deep); color: var(--charcoal-soft); font-size: 0.9rem; font-weight: 300; }
.cercanias-list li i { color: var(--sage); width: 20px; flex-shrink: 0; }
.cercanias-list .distance { font-family: var(--font-body); background: var(--sage-ghost); color: var(--sage-dark); padding: 0.3rem 0.875rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; border: 1px solid var(--sage-mist); white-space: nowrap; }
.ubicacion-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.ubicacion-map iframe { width: 100%; height: 350px; border: 0; }

/* ═══════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════ */
.gallery-preview { background: var(--white); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease-out); }
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.gallery-item .gallery-placeholder { width: 100%; height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--sage-dark), var(--sage)); color: var(--white); gap: 1rem; transition: transform 0.5s var(--ease-out); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-item .gallery-placeholder i { font-size: 2.2rem; opacity: 0.6; }
.gallery-item .gallery-placeholder span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }

/* ═══════════════════════════════════════════════════
   MAP & CONTACT CTA
═══════════════════════════════════════════════════ */
.map-preview { background: var(--white); text-align: center; padding: clamp(3.5rem, 7vw, 7rem) 0; }
.map-preview p { font-family: var(--font-body); margin-bottom: 0.5rem; font-size: 0.97rem; }
.reference { font-family: var(--font-body); color: var(--stone); font-style: italic; margin-bottom: 2rem !important; font-size: 0.88rem; }
.map-container { position: relative; width: 100%; padding-bottom: 60%; height: 0; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.contact-cta {
  background: var(--sage-deep);
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.contact-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(184,149,74,0.12) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(61,107,82,0.15) 0%, transparent 50%); pointer-events: none; }
.contact-cta h2 { font-family: var(--font-display); color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.contact-cta p { font-family: var(--font-body); color: rgba(255,255,255,0.75); font-size: 1rem; font-weight: 300; position: relative; z-index: 1; }
.contact-buttons { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials { background: var(--charcoal); color: var(--white); padding: clamp(3.5rem, 7vw, 7rem) 0; position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(61,107,82,0.2) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(184,149,74,0.1) 0%, transparent 40%); }
.testimonials h2 { font-family: var(--font-display); color: var(--white); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 400; position: relative; z-index: 1; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; margin-top: 3.5rem; position: relative; z-index: 1; }
.testimonial-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 2.25rem; border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.08); transition: all 0.4s var(--ease-out); }
.testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.stars { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 1.25rem; letter-spacing: 4px; }
.testimonial-card p { font-family: var(--font-body); font-style: italic; margin-bottom: 1.5rem; line-height: 1.85; opacity: 0.82; font-size: 0.97rem; font-weight: 300; color: var(--white); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); }
.author-avatar i { color: rgba(255,255,255,0.65); font-size: 1rem; }
.author-name { font-family: var(--font-body); font-weight: 500; font-size: 0.92rem; display: block; color: var(--white); }
.author-title { font-family: var(--font-body); font-size: 0.78rem; opacity: 0.55; color: var(--white); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: var(--charcoal); color: var(--white); padding: 0; }

.footer-support {
  background: linear-gradient(135deg, rgba(61,107,82,0.18), rgba(90,158,142,0.12));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: clamp(2.5rem, 4vw, 3.5rem) 2rem;
  text-align: center;
}
.support-content h4 { font-family: var(--font-display); color: var(--white); font-size: clamp(1.1rem, 2.5vw, 1.6rem); margin-bottom: 0.875rem; display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 400; }
.support-content h4 i { color: var(--sage-mist); font-size: 0.9em; }
.support-content > p { font-family: var(--font-body); color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 0.92rem; font-weight: 300; line-height: 1.7; }
.support-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-support-phone, .btn-support-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.875rem 1.875rem; border-radius: var(--radius-pill);
  text-decoration: none; font-family: var(--font-body);
  font-weight: 500; font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; transition: all 0.3s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn-support-phone { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-support-phone:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-support-whatsapp { background: #25D366; color: var(--white); border: 1px solid transparent; box-shadow: 0 4px 16px rgba(37,211,102,0.25); }
.btn-support-whatsapp:hover { background: #20C05C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.footer .container { padding: clamp(3rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }

.footer-info h3 { font-family: var(--font-display); color: var(--sage-mist); margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 400; letter-spacing: 0.02em; }
.footer-info p { font-family: var(--font-body); color: rgba(255,255,255,0.55); line-height: 1.85; font-size: 0.88rem; margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 10px; font-weight: 300; }
.footer-info p i { color: var(--sage-mist); margin-top: 4px; opacity: 0.7; }

.footer-links h4, .footer-social h4 { font-family: var(--font-body); color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { font-family: var(--font-body); color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.25s ease; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; font-weight: 300; }
.footer-links a i { font-size: 0.62rem; opacity: 0.5; }
.footer-links a:hover { color: var(--sage-mist); transform: translateX(4px); }

.social-icons { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.95rem; transition: all 0.3s ease; text-decoration: none; border: 1px solid rgba(255,255,255,0.08); }
.social-icon:hover { background: var(--sage); color: var(--white); transform: translateY(-3px); border-color: var(--sage); }

.footer-payment h4 { font-size: 0.72rem; margin-bottom: 1rem; }
.payment-icons { display: flex; gap: 1rem; font-size: 1.75rem; color: rgba(255,255,255,0.25); }

/* ─── CRÉDITO BLAZZZ BUNNY ─── */
.footer-credit {
  text-align: center;
  padding: 1.5rem 0 1rem;
  margin-top: 0;
}
.footer-credit a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  display: inline-block;
}
.footer-credit a:hover {
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-family: var(--font-body); color: rgba(255,255,255,0.3); font-size: 0.8rem; font-weight: 300; letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════════════
   PLACEHOLDERS
═══════════════════════════════════════════════════ */
.image-placeholder, .room-image-placeholder, .gallery-placeholder {
  background: linear-gradient(145deg, var(--sage-dark), var(--sage));
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; font-family: var(--font-body); font-size: 0.85rem;
  text-align: center; padding: 2rem; transition: var(--transition);
  gap: 1rem;
}
.image-placeholder { min-height: 380px; width: 100%; }
.room-image-placeholder { height: 240px; width: 100%; border-radius: 0; }
.gallery-placeholder { height: 200px; width: 100%; }

/* ═══════════════════════════════════════════════════
   FLOATING WHATSAPP — REMOVIDO
   (no se muestra en ninguna página)
═══════════════════════════════════════════════════ */
.floating-whatsapp { display: none !important; }

/* ═══════════════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════════════ */
.page-hero {
  height: 50vh; min-height: 320px;
  background-image: url("../img/portada-principal.png");
  background-size: cover; background-position: center 40%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero .hero-overlay { position: absolute; inset: 0; background: rgba(14,28,22,0.52); z-index: 1; }
.page-hero .hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); text-shadow: 0 2px 32px rgba(0,0,0,0.35); }
.page-hero p { color: rgba(255,255,255,0.75); font-weight: 300; }

/* ═══════════════════════════════════════════════════
   ALIMENTOS (restaurante.html)
═══════════════════════════════════════════════════ */
.alimentos-section { padding: clamp(3.5rem, 7vw, 7rem) 0; background: var(--white); }
.alimentos-description { font-family: var(--font-body); font-size: 1rem; color: var(--charcoal-soft); line-height: 1.9; margin-bottom: 2rem; font-weight: 300; }
.alimentos-destacados { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.destacado-item { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-size: 0.92rem; color: var(--charcoal-soft); font-weight: 300; }
.destacado-item i { color: var(--sage); margin-top: 3px; }
.alimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }

.alimento-card { background: var(--white); padding: 1.75rem 1.5rem; border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--stone-light); transition: all 0.4s var(--ease-out); }
.alimento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--sage-mist); }
.alimento-icon { width: 56px; height: 56px; background: var(--sage-ghost); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: all 0.35s ease; }
.alimento-card:hover .alimento-icon { background: var(--sage); }
.alimento-icon i { font-size: 1.4rem; color: var(--sage); transition: color 0.35s ease; }
.alimento-card:hover .alimento-icon i { color: var(--white); }
.alimento-card h3 { font-family: var(--font-display); color: var(--charcoal); margin-bottom: 0.6rem; font-size: 1.2rem; font-weight: 400; }
.alimento-card p { font-family: var(--font-body); color: var(--charcoal-soft); font-size: 0.86rem; line-height: 1.65; font-weight: 300; }
.alimentos-cta { text-align: center; margin-top: 1rem; }

.restaurant-detail { background: var(--ivory-warm); padding: clamp(3.5rem, 7vw, 7rem) 0; }

/* ═══════════════════════════════════════════════════
   VALUES / SERVICES
═══════════════════════════════════════════════════ */
.values-section { background: var(--ivory); padding: clamp(3.5rem, 7vw, 7rem) 0; }
.values-section h2 { color: var(--charcoal); }
.services-list { background: var(--white); padding: clamp(3.5rem, 7vw, 7rem) 0; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-section { padding: clamp(3.5rem, 7vw, 7rem) 0; background: var(--white); }
.contact-info h2, .contact-info h3 { font-family: var(--font-display); color: var(--charcoal); font-weight: 400; margin-bottom: 1.5rem; }
.contact-info p { font-family: var(--font-body); color: var(--charcoal-soft); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 300; }
.contact-info p i { color: var(--sage); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-form input, .contact-form textarea { padding: 0.875rem 1rem; border: 1px solid var(--stone-light); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.95rem; color: var(--charcoal); transition: all 0.25s ease; background: var(--ivory); font-weight: 300; -webkit-appearance: none; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--sage); background: var(--white); box-shadow: 0 0 0 3px rgba(61,107,82,0.08); }

/* ═══════════════════════════════════════════════════
   ABOUT CONTENT
═══════════════════════════════════════════════════ */
.about-content { padding: clamp(3.5rem, 7vw, 7rem) 0; background: var(--white); }
.about-content .about-text h2 { font-family: var(--font-display); color: var(--charcoal); text-align: left; font-weight: 400; margin-bottom: 1.5rem; }
.about-content .about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }

/* ═══════════════════════════════════════════════════
   LOGO LINK
═══════════════════════════════════════════════════ */
.logo-link { text-decoration: none; display: flex; flex-direction: column; gap: 1px; }
.logo-link h1 { cursor: pointer; transition: opacity 0.2s ease; }
.logo-link:hover h1 { opacity: 0.8; }

/* ═══════════════════════════════════════════════════
   FLATPICKR THEME
═══════════════════════════════════════════════════ */
.marsella-cal.flatpickr-calendar { font-family: var(--font-body); border-radius: var(--radius-lg); border: 1px solid var(--sage-mist); box-shadow: var(--shadow-xl); overflow: hidden; }
.marsella-cal .flatpickr-months { background: var(--sage-dark); padding: 0.5rem 0; }
.marsella-cal .flatpickr-month, .marsella-cal .flatpickr-prev-month, .marsella-cal .flatpickr-next-month { color: #fff; fill: #fff; }
.marsella-cal .flatpickr-prev-month:hover svg, .marsella-cal .flatpickr-next-month:hover svg { fill: var(--sage-mist); }
.marsella-cal .flatpickr-current-month { font-weight: 500; font-size: 0.95rem; color: #fff; }
.marsella-cal .flatpickr-weekday { font-family: var(--font-body); font-weight: 600; color: var(--stone); font-size: 0.75rem; }
.marsella-cal .flatpickr-day { font-family: var(--font-body); border-radius: var(--radius-sm); color: var(--charcoal); font-size: 0.88rem; font-weight: 300; }
.marsella-cal .flatpickr-day:hover { background: var(--sage-ghost); border-color: transparent; color: var(--sage-dark); }
.marsella-cal .flatpickr-day.selected, .marsella-cal .flatpickr-day.selected:hover { background: var(--sage); border-color: var(--sage); color: #fff; }
.marsella-cal .flatpickr-day.today { border-color: var(--sage); color: var(--sage); font-weight: 600; }
.marsella-cal .flatpickr-day.today.selected { color: #fff; }
.marsella-cal .flatpickr-day.disabled, .marsella-cal .flatpickr-day.flatpickr-disabled { opacity: 0.2; cursor: not-allowed; }

/* ═══════════════════════════════════════════════════
   LANGUAGE SELECTOR
═══════════════════════════════════════════════════ */
.lang-selector { display: flex; align-items: center; gap: 0.5rem; margin-left: 1rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.15); }
.header.scrolled .lang-selector { border-left-color: var(--stone-light); }
.lang-btn { background: transparent; border: none; font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; cursor: pointer; padding: 0.3rem 0.5rem; border-radius: var(--radius-sm); transition: all 0.25s ease; text-transform: uppercase; opacity: 0.55; color: var(--white); -webkit-tap-highlight-color: transparent; }
.header.scrolled .lang-btn { color: var(--charcoal-soft); }
.lang-btn:hover { opacity: 1; }
.lang-btn.active { opacity: 1; font-weight: 600; color: var(--gold-light); }
.header.scrolled .lang-btn.active { color: var(--sage); }
.lang-separator { color: rgba(255,255,255,0.2); font-weight: 300; font-size: 0.8rem; }
.header.scrolled .lang-separator { color: var(--stone-light); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .restaurant-grid, .eventos-grid, .ubicacion-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text h2 { text-align: center; }
  .eventos-image, .ubicacion-map { order: -1; }
  .hero-stats { display: none; }
  .booking-bar { flex-wrap: wrap; }
  .booking-bar-field { flex: 1 1 calc(50% - 1px); min-width: 140px; }
  .booking-bar-divider { display: none; }
  .booking-bar-btn { width: 100%; border-radius: 0 0 var(--radius-xl) var(--radius-xl); justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html { scroll-padding-top: 72px; }

  .hamburger {
    display: flex;
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: all !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .hero { height: 100svh; min-height: 560px; align-items: center; }
  .hero::after { display: none; }
  .hero-content {
    padding: 1.25rem 1.25rem 4rem;
    text-align: center;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-buttons { justify-content: center; gap: 0.75rem; }
  .hero-badge { justify-content: center; }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; font-size: 0.95rem; }

  /* Mobile nav */
  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: min(80vw, 320px);
    height: 100vh; height: 100dvh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: left 0.4s var(--ease-out);
    box-shadow: var(--shadow-2xl);
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1002;
  }
  .nav-menu.active { left: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav-menu a::after { left: 0; right: auto; width: 100%; }
  .nav-menu a:hover, .nav-menu a.active { color: var(--sage-mist); }
  .nav-cta {
    border-bottom: none !important;
    margin-top: 0.75rem;
    text-align: center;
    justify-content: center;
  }
  .lang-selector {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    justify-content: flex-start;
  }
  .lang-btn { color: rgba(255,255,255,0.6) !important; }
  .lang-btn.active { color: var(--gold-light) !important; }
  .lang-separator { color: rgba(255,255,255,0.2) !important; }

  /* Mobile menu overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav-overlay.active { display: block; }

  section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Booking bar mobile */
  .booking-bar {
    flex-direction: column;
    border-radius: var(--radius-xl);
    gap: 0;
    overflow: hidden;
  }
  .booking-bar-field {
    flex: none;
    width: 100%;
    border-bottom: 1px solid rgba(61,107,82,0.1);
    padding: 1rem 1.25rem;
    border-radius: 0 !important;
  }
  .booking-bar-field:last-of-type { border-bottom: none; }
  .booking-bar-btn {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl) !important;
    width: 100%;
    justify-content: center;
    padding: 1.125rem;
  }
  .booking-bar-divider { display: none; }

  .rooms-selection-grid { grid-template-columns: 1fr; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-progress {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    padding: 0.5rem 0;
  }
  .progress-step {
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 0.4rem;
  }
  .progress-line {
    width: 28px;
    height: 1px;
    margin-bottom: 0;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 22px; /* visually centers line with the step circles */
  }
  .booking-actions, .restaurant-buttons, .contact-buttons, .support-buttons { flex-direction: column; align-items: stretch; }
  .btn-support-phone, .btn-support-whatsapp { justify-content: center; }
  .tipos-grid { grid-template-columns: 1fr; }
  .cercanias-list li { flex-wrap: wrap; gap: 0.5rem; }
  .cercanias-list .distance { align-self: flex-start; }
  .support-content h4 { font-size: 1.1rem; flex-direction: column; gap: 8px; }
  .counter-btn { width: 34px; height: 34px; }

  /* Stack about grid on mobile */
  .about-grid { grid-template-columns: 1fr; }
  .about-text h2 { text-align: center; }
  .about-image, .restaurant-image, .eventos-image { min-height: 280px; order: -1; }
  .about-image .image-placeholder,
  .eventos-image .image-placeholder { min-height: 280px; }

  .ubicacion-map iframe { height: 280px; }

  .rooms-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-support { padding: 2rem 1.25rem; }

  .footer-credit a { font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .btn { padding: 0.8rem 1.5rem; font-size: 0.78rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .booking-form-card { padding: 1.25rem 1rem; }
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.35rem); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
  .alimentos-grid { grid-template-columns: 1fr; }
  .tipos-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .rooms-selection-grid { grid-template-columns: 1fr; }
  .booking-bar-field label { font-size: 0.62rem; }
  .date-display { font-size: 0.85rem; }
  .urgency-banner { flex-wrap: wrap; }
  .urgency-banner span { font-size: 0.8rem; }
  .container { padding: 0 1rem; }
}

/* ═══════════════════════════════════════════════════
   PRINT / ACCESSIBILITY
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}