/* ========================================
   Bar Mirador del Gurugú — Design System
   ======================================== */

/* --- CSS Variables --- */
:root {
  --limestone: #F9F7F2;
  --segura: #1A2B3C;
  --ochre: #C28447;
  --olive: #4A5D4E;
  --limestone-rgb: 249, 247, 242;
  --segura-rgb: 26, 43, 60;
  --ochre-rgb: 194, 132, 71;
  --olive-rgb: 74, 93, 78;
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --border: rgba(74, 93, 78, 0.15);
  --radius: 0.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--limestone);
  color: var(--segura);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
.font-display {
  font-family: var(--font-display);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
}

/* --- Utilities --- */
.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.text-ochre { color: var(--ochre); }
.text-segura { color: var(--segura); }
.text-olive { color: var(--olive); }
.text-limestone { color: var(--limestone); }
.text-muted { color: rgba(var(--segura-rgb), 0.6); }

.bg-limestone { background: var(--limestone); }
.bg-segura { background: var(--segura); }
.bg-ochre { background: var(--ochre); }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* --- Section shared styles --- */
.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ochre);
}

.section-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
}

.image-ring {
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(var(--segura-rgb), 0.1);
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  transition: background 0.5s, box-shadow 0.5s;
}

.navbar.scrolled {
  background: rgba(var(--limestone-rgb), 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 1.25rem 3rem;
  }
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.navbar:not(.scrolled) .brand-name {
  color: #fff;
}

.navbar.scrolled .brand-name {
  color: var(--segura);
}

.brand-sub {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 500;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

.navbar:not(.scrolled) .brand-sub {
  color: rgba(255,255,255,0.7);
}

.navbar.scrolled .brand-sub {
  color: var(--olive);
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--ochre);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.85);
}

.navbar:not(.scrolled) .nav-link:hover {
  color: var(--ochre);
}

.navbar.scrolled .nav-link {
  color: var(--segura);
}

.btn-reservar-nav {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid var(--ochre);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  color: var(--ochre);
  transition: background 0.2s, color 0.2s;
  background: none;
  cursor: pointer;
}

.btn-reservar-nav:hover {
  background: var(--ochre);
  color: var(--limestone);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 1px;
  width: 1.75rem;
  transition: all 0.3s;
}

.hamburger span + span {
  margin-top: 0.5rem;
}

.navbar:not(.scrolled) .hamburger span {
  background: #fff;
}

.navbar.scrolled .hamburger span {
  background: var(--segura);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
  margin-top: 0;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
  margin-top: -1px;
}

/* Mobile nav */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--limestone);
  padding: 0 1.5rem 1.5rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.navbar .nav-mobile .nav-link {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  text-align: left;
  color: var(--segura);
}

.btn-reservar-mobile {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  width: 100%;
  margin-top: 0.75rem;
  border: 1px solid var(--ochre);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  color: var(--ochre);
  background: none;
  cursor: pointer;
}

/* Mobile nav backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(var(--segura-rgb), 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero:hover .hero-bg img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--segura-rgb), 0.4), transparent, rgba(var(--segura-rgb), 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1.5rem;
  text-align: center;
  color: #fff;
}

.hero-coords {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.8;
  animation: heroFadeInUp 1s 0.2s both;
}

.hero-title {
  margin-top: 1.25rem;
  max-width: 56rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  animation: heroFadeInUp 1.1s 0.4s both;
}

.hero-desc {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-size: 1.125rem;
  opacity: 0.85;
  animation: heroFadeInUp 1s 0.7s both;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: heroFadeInUp 1s 0.9s both;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-primary {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.875rem 2rem;
  background: var(--ochre);
  color: var(--limestone);
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--limestone);
  color: var(--ochre);
}

.btn-secondary {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--segura);
}

.scroll-down {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.scroll-down:hover {
  color: #fff;
}

.chevron-down {
  width: 1.5rem;
  height: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===========================================
   VISTAS
   =========================================== */
.vistas {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: var(--limestone);
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .vistas {
    padding: 10rem 0;
  }
}

.topographic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}

.vistas-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 768px) {
  .vistas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vistas-text h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--segura);
}

.vistas-text p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--olive);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ochre);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
  color: rgba(var(--segura-rgb), 0.6);
}

.vistas-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

@media (min-width: 768px) {
  .vistas-image-wrap {
    aspect-ratio: 3 / 4;
  }
}

.parallax-inner {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
}

.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================================
   PILGRIMAGE (El Camino)
   =========================================== */
.pilgrimage {
  position: relative;
  overflow: hidden;
  background: var(--limestone);
  padding: 7rem 0;
}

@media (min-width: 768px) {
  .pilgrimage {
    padding: 10rem 0;
  }
}

.pilgrimage-header {
  max-width: 36rem;
}

.pilgrimage-header h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--segura);
}

.pilgrimage-header p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--olive);
}

.pilgrimage-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .pilgrimage-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pilgrimage-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pilgrimage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.step-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-item:nth-child(2) { transition-delay: 0.12s; }
.step-item:nth-child(3) { transition-delay: 0.24s; }

.step-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--ochre);
  flex-shrink: 0;
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--segura);
}

.step-item p {
  margin-top: 0.5rem;
  color: var(--olive);
}

/* Info cards */
.info-cards {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1rem;
}

.info-card.highlight {
  border-color: rgba(var(--ochre-rgb), 0.4);
  background: rgba(var(--ochre-rgb), 0.05);
}

.info-card-icon {
  margin-bottom: 0.5rem;
  color: var(--olive);
}

.info-card.highlight .info-card-icon {
  color: var(--ochre);
}

.info-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(var(--segura-rgb), 0.6);
}

.info-value {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--segura);
}

.btn-maps {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  border: 1px solid var(--ochre);
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  color: var(--ochre);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-maps:hover {
  background: var(--ochre);
  color: var(--limestone);
}

/* ===========================================
   MENU / CARTA
   =========================================== */
.menu {
  position: relative;
  background: var(--segura);
  padding: 7rem 0;
  color: var(--limestone);
}

@media (min-width: 768px) {
  .menu {
    padding: 10rem 0;
  }
}

.menu-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 768px) {
  .menu-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.menu-header h2 {
  margin-top: 1rem;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
}

.menu-header p {
  margin-top: 1.25rem;
  max-width: 32rem;
  color: rgba(var(--limestone-rgb), 0.7);
}

.scroll-buttons {
  display: flex;
  gap: 0.75rem;
}

.scroll-btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--limestone-rgb), 0.3);
  color: rgba(var(--limestone-rgb), 0.7);
  transition: border-color 0.2s, color 0.2s;
  background: none;
  cursor: pointer;
}

.scroll-btn:hover {
  border-color: var(--ochre);
  color: var(--ochre);
}

/* Filters */
.filters {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.filter-btn {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(var(--limestone-rgb), 0.25);
  padding: 0.5rem 1.25rem;
  color: rgba(var(--limestone-rgb), 0.7);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: none;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--ochre);
  color: var(--ochre);
}

.filter-btn.active {
  background: var(--ochre);
  color: var(--segura);
  border-color: var(--ochre);
}

/* Dish scroller */
.dish-scroller {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-top: 3rem;
  padding: 0 1.5rem 1rem;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  .dish-scroller {
    padding: 0 3rem 1rem;
  }
}

.dish-card {
  width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

@media (min-width: 768px) {
  .dish-card {
    width: 340px;
  }
}

.dish-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.dish-card:nth-child(2) { transition-delay: 0.1s; }
.dish-card:nth-child(3) { transition-delay: 0.2s; }
.dish-card:nth-child(4) { transition-delay: 0.3s; }
.dish-card:nth-child(5) { transition-delay: 0.4s; }
.dish-card:nth-child(6) { transition-delay: 0.5s; }

.dish-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--limestone);
}

.dish-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.dish-card:hover .dish-image-wrap img {
  transform: scale(1.05);
}

.dish-price {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: rgba(var(--limestone-rgb), 0.9);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-display);
  color: var(--segura);
  font-size: 1rem;
}

.dish-name {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.dish-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(var(--limestone-rgb), 0.65);
}

.dish-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.dish-tag {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(var(--ochre-rgb), 0.5);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  color: var(--ochre);
}

.dish-scroller-pad {
  width: 0.5rem;
  flex-shrink: 0;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--segura);
  color: var(--limestone);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 5rem 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.footer-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 0.5rem;
  color: var(--ochre);
}

.footer-desc {
  margin-top: 1.25rem;
  max-width: 20rem;
  color: rgba(var(--limestone-rgb), 0.7);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--limestone);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--ochre);
}

.footer-link svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--ochre);
}

.footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-hours svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--ochre);
}

.footer-hours-text {
  font-size: 0.875rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav button,
.footer-nav a {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  color: var(--limestone);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.footer-nav button:hover,
.footer-nav a:hover {
  color: var(--ochre);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(var(--limestone-rgb), 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 3rem;
  }
}

.footer-bottom p {
  color: rgba(var(--limestone-rgb), 0.5);
}

.footer-bottom .eyebrow {
  color: rgba(var(--limestone-rgb), 0.5);
}

/* ===========================================
   FAB — Reservar floating button
   =========================================== */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--ochre);
  padding: 1rem 1.5rem;
  color: var(--limestone);
  box-shadow: 0 10px 15px -3px rgba(var(--ochre-rgb), 0.3), 0 4px 6px -4px rgba(var(--ochre-rgb), 0.3);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.fab:hover {
  background: var(--olive);
  box-shadow: 0 10px 15px -3px rgba(var(--olive-rgb), 0.3), 0 4px 6px -4px rgba(var(--olive-rgb), 0.3);
}

@media (min-width: 768px) {
  .fab {
    bottom: 2rem;
    right: 2rem;
  }
}

.fab .eyebrow {
  display: none;
}

@media (min-width: 640px) {
  .fab .eyebrow {
    display: inline;
  }
}

/* ===========================================
   RESERVATION MODAL
   =========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(var(--segura-rgb), 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--limestone);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  max-width: 24rem;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--segura);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--ochre);
}

.modal-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ochre);
  margin-bottom: 0.25rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--segura);
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--olive);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.modal-btn-phone {
  background: var(--segura);
  color: var(--limestone);
}

.modal-btn-phone:hover {
  background: var(--olive);
}

.modal-btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.modal-btn-whatsapp:hover {
  background: #1DA851;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .hero-bg img {
    object-position: 77% center;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}
