/* ================================================================
   The Wizard Palo Quemao — Design System
   Posada Boutique Caribeña · Turquesa · Boho · Tropical
   ================================================================ */

/* ── 1. TOKENS ──────────────────────────────────────────────── */
:root {
  --turquoise:     #1ac8cb;
  --turquoise-dk:  #0fa8ab;
  --turquoise-lt:  #e0f9f9;
  --teal:          #0d7c7e;
  --sand:          #f5ede0;
  --sand-dk:       #e8d9c5;
  --wood:          #7a4f2e;
  --wood-lt:       #b07d4e;
  --white:         #ffffff;
  --off-white:     #fafaf8;
  --text-dark:     #1a1a2e;
  --text-mid:      #4a5568;
  --text-light:    #718096;
  --whatsapp:      #25d366;
  --whatsapp-dk:   #128c7e;
  --overlay:       rgba(10, 40, 45, 0.55);
  --overlay-hero:  rgba(5, 30, 35, 0.45);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-tq:  0 8px 30px rgba(26, 200, 203, .30);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --navbar-h: 70px;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
.hero-title,
.footer-logo     { font-family: 'Pacifico', cursive; }
.section-title   { font-family: 'Playfair Display', serif; }

h1 { font-size: clamp(2.8rem, 8vw, 6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

/* ── 4. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--turquoise);
  color: var(--white);
  box-shadow: var(--shadow-tq);
}
.btn-primary:hover {
  background: var(--turquoise-dk);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,200,203,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost.dark {
  color: var(--teal);
  border-color: var(--teal);
}
.btn-ghost.dark:hover { background: var(--turquoise-lt); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: 0 8px 25px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dk);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,.50);
}

.btn-sm { padding: .6rem 1.4rem; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── 5. LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: .5rem;
}
.section-eyebrow.light { color: var(--turquoise-lt); }

.section-title {
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.section-title.light { color: var(--white); }

.section-desc {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-desc.light { color: rgba(255,255,255,.85); }

/* ── 6. NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.navbar.scrolled .nav-logo-text,
.navbar.scrolled .nav-sub { color: var(--text-dark); }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover { color: var(--turquoise); }

.nav-brand-link { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  transition: color var(--transition);
}
.nav-sub {
  font-size: .55rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-link {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--turquoise);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--white); }

.nav-cta-solo {
  background: var(--turquoise);
  color: var(--white) !important;
  padding: .5rem 1.4rem;
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-tq);
}
.nav-cta-solo:hover {
  background: var(--turquoise-dk);
  transform: translateY(-2px);
}

/* WordPress menu reset */
.nav-links.menu { display: flex; }
.nav-links li a { /* same as .nav-link */
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}
.navbar.scrolled .nav-links li a { color: var(--text-mid); }
.navbar.scrolled .nav-links li a:hover { color: var(--turquoise); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text-dark); }

/* ── 7. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: .75rem;
  font-weight: 600;
}

.hero-title {
  line-height: 1.05;
  margin-bottom: .5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  letter-spacing: .1em;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
  margin: .4rem auto 0;
  animation: arrowBounce 1.5s infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: .5rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: var(--transition);
}
.dot.active {
  background: var(--turquoise);
  width: 28px;
  border-radius: 5px;
}

/* ── 8. HIGHLIGHTS BAR ──────────────────────────────────────── */
.highlights-bar {
  background: var(--teal);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.hi-icon { font-size: 1.2rem; }

/* ── 9. HOSPEDAJE ───────────────────────────────────────────── */
.hospedaje-section { background: var(--off-white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.06); }

.room-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--turquoise);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .8rem;
  border-radius: var(--radius-xl);
}

.room-body {
  padding: 1.5rem;
}
.room-body h3 {
  color: var(--text-dark);
  margin-bottom: .5rem;
  font-family: 'Playfair Display', serif;
}
.room-body p {
  color: var(--text-mid);
  font-size: .95rem;
  margin-bottom: 1rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .8rem;
  margin-bottom: 1.2rem;
}
.room-amenities li {
  font-size: .85rem;
  color: var(--text-light);
  background: var(--turquoise-lt);
  padding: .25rem .6rem;
  border-radius: var(--radius-xl);
}

/* ── 10. GALERÍA ────────────────────────────────────────────── */
.galeria-section { background: var(--sand); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: .75rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,30,35,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,.8);
  margin-top: .75rem;
  font-size: .9rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 2rem;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--turquoise); }

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1rem;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ── 11. MENÚ ───────────────────────────────────────────────── */
.menu-section {
  background: linear-gradient(135deg, var(--teal) 0%, #0d5e60 100%);
}
.menu-section .section-eyebrow { color: var(--turquoise-lt); }
.menu-section .section-title   { color: var(--white); }
.menu-section .section-desc    { color: rgba(255,255,255,.8); }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: .65rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--turquoise);
  color: var(--white);
  border-color: var(--turquoise);
  box-shadow: var(--shadow-tq);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.menu-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition);
}
.menu-item:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-3px);
}

.mi-name  { font-weight: 700; color: var(--white); font-size: 1rem; }
.mi-desc  { font-size: .85rem; color: rgba(255,255,255,.65); }
.mi-price {
  font-weight: 700;
  color: var(--turquoise);
  font-size: 1.05rem;
  margin-top: .25rem;
}

.menu-pdf-note {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.menu-pdf-note .btn-ghost {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.4);
}

/* ── 12. RESERVAS ───────────────────────────────────────────── */
.reservas-section {
  position: relative;
  overflow: hidden;
}
.reservas-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,80,85,.96) 0%, rgba(5,50,55,.98) 100%),
    url('../imgs/hero1.jpg') center/cover no-repeat;
  z-index: 0;
}
.reservas-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reservas-info { color: var(--white); }

.contact-info {
  margin-top: 1.5rem;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 2;
}
.contact-info a {
  color: var(--turquoise);
  font-weight: 600;
}
.contact-info a:hover { text-decoration: underline; }

.reservas-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.reservas-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(26,200,203,.15);
  background: var(--white);
}

.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: .75rem;
}

.form-msg {
  margin-top: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  text-align: center;
  display: none;
}
.form-msg.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
}
.form-msg.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

/* ── 13. UBICACIÓN ──────────────────────────────────────────── */
.ubicacion-section { background: var(--sand); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}
.map-wrap iframe { display: block; }

.como-llegar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.llegar-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.llegar-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: .1rem; }
.llegar-item strong { display: block; color: var(--text-dark); margin-bottom: .3rem; }
.llegar-item p { font-size: .9rem; color: var(--text-mid); }

/* ── 14. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #0a2830 0%, #051e23 100%);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.footer-loc    { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: .3rem; }
.footer-tagline { font-size: .85rem; color: var(--turquoise); }

.footer h4 {
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* WP nav list reset */
.footer-nav-list, .footer-nav-list ul { list-style: none; }
.footer-nav-list li { margin-bottom: .5rem; }
.footer-nav-list li a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav-list li a:hover { color: var(--turquoise); }

/* Backwards compat for inline lists */
.footer-links ul li { margin-bottom: .5rem; }
.footer-links ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--turquoise); }

.footer-contact p {
  font-size: .9rem;
  margin-bottom: .4rem;
}
.footer-contact a { color: var(--turquoise); }
.footer-contact a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--turquoise);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── 15. FAB WHATSAPP ───────────────────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: fabPulse 2.5s infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.12);
  background: var(--whatsapp-dk);
  animation: none;
}
.fab-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.fab-whatsapp:hover .fab-tooltip { opacity: 1; }

@keyframes fabPulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── 16. FALLBACK NAV ───────────────────────────────────────── */
.wizard-fallback-nav,
.wizard-fallback-footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.wizard-fallback-nav a { color: rgba(255,255,255,.9); font-weight: 600; font-size: .95rem; }

/* ── 17. ACCESSIBILITY ──────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── 18. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .reservas-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 1.2rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links li a,
  .nav-link { color: var(--text-dark); padding: .75rem 2rem; width: 100%; display: block; }
  .nav-links li a:hover,
  .nav-link:hover { color: var(--turquoise); background: var(--turquoise-lt); }
  .nav-cta-solo {
    margin: .5rem 2rem 0;
    text-align: center;
    display: block;
  }

  .nav-toggle { display: flex; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.tall { grid-row: span 1; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide  { grid-column: span 1; }
  .gallery-item.tall  { grid-row: span 1; }
  .menu-tabs { gap: .3rem; }
  .menu-tab  { padding: .5rem 1rem; font-size: .85rem; }
}
