/* ========================================
   VANVENTURE CAMPER PARK
   Tierra y montaña · Editorial
   ======================================== */

:root {
  /* Colors */
  --forest: #0F4D44;
  --forest-deep: #08322C;
  --terracotta: #9E211C;
  --terracotta-deep: #7E1812;
  --terracotta-light: #FFA59A;
  --cream: #FEFDFB;
  --cream-warm: #FBF8F2;
  --ink: #0A1A18;
  --ink-soft: #2C3A37;
  --moss: #4A7068;
  --stone: #B8B0A0;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-display-wonk: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container: 1280px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: var(--terracotta);
}
.eyebrow--light { color: var(--terracotta-light); }
.eyebrow--light::before { background: var(--terracotta-light); }

/* Section */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}
.section__head { margin-bottom: var(--space-xl); }
.section__head--center { text-align: center; }
.section__head--center .eyebrow { padding-left: 28px; padding-right: 28px; }
.section__head--center .eyebrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: var(--terracotta);
}
.section__head--center .eyebrow--light::after { background: var(--terracotta-light); }
.section__title {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section__title--light { color: var(--cream); }

.lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.link-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 50px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(15,77,68,0.5);
}
.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
}
.btn--terracotta:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(211,47,42,0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,239,228,0.4);
}
.btn--ghost:hover {
  background: rgba(245,239,228,0.1);
  border-color: var(--cream);
}
.btn--small { padding: 10px 22px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,239,228,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15,77,68,0.08);
  transition: transform 0.3s var(--ease);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
}
.nav__logo-text { white-space: nowrap; }
.nav__logo-dot { color: var(--terracotta); margin: 0 2px; }
.nav__links {
  display: flex;
  gap: var(--space-lg);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(15,77,68,0.15);
  transition: all 0.2s var(--ease);
}
.lang-switcher__toggle:hover { border-color: rgba(15,77,68,0.4); }
.lang-flag {
  display: block;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15,77,68,0.1);
}
.lang-code { letter-spacing: 0.05em; }
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 12px 40px -10px rgba(10,26,24,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease);
}
.lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher__menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  transition: background 0.15s var(--ease);
}
.lang-switcher__menu a:hover { background: var(--cream); color: var(--ink); }
.lang-switcher__menu img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15,77,68,0.1);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-md);
  gap: var(--space-sm);
  background: var(--cream);
  border-top: 1px solid rgba(15,77,68,0.1);
}
.nav__mobile a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
}
.nav.is-open .nav__mobile { display: flex; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-3xl) 0 var(--space-xl);
  overflow: hidden;
  color: var(--cream);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img,
.hero__bg picture {
  width: 100%;
  height: 100%;
}
.hero__bg img {
  object-fit: cover;
  animation: heroZoom 20s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,50,44,0.45) 0%, rgba(8,50,44,0.25) 40%, rgba(8,50,44,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-md);
}
.hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: var(--space-md);
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}
.hero__title em {
  font-style: normal;
  color: var(--terracotta-light);
  font-weight: 700;
}
.hero__sub {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(245,239,228,0.88);
  margin-bottom: var(--space-lg);
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}
.hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.6s both;
}
.hero__meta {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: var(--space-2xl) auto 0;
  padding: var(--space-md) var(--space-md) 0;
  border-top: 1px solid rgba(245,239,228,0.2);
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.8s both;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,239,228,0.65);
}
.hero__meta-value {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
}

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

/* ========================================
   POTES SECTION
   ======================================== */
.section--potes { background: var(--cream); }
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: start;
}
.section--potes .section--potes .section__head { position: sticky; top: 100px; }

/* ========================================
   SERVICIOS
   ======================================== */
.section--servicios {
  background: var(--cream-warm);
  position: relative;
}
.section--servicios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(15,77,68,0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: var(--space-2xl);
  border-top: 1px solid rgba(15,77,68,0.15);
  border-left: 1px solid rgba(15,77,68,0.15);
}
.service-card {
  padding: var(--space-lg);
  border-right: 1px solid rgba(15,77,68,0.15);
  border-bottom: 1px solid rgba(15,77,68,0.15);
  background: transparent;
  transition: background 0.3s var(--ease);
  position: relative;
  min-height: 220px;
}
.service-card:hover { background: var(--cream); }
.service-card__num {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
  color: var(--ink);
  line-height: 1.25;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.services-extra {
  padding: var(--space-lg);
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
}
.services-extra__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.services-extra__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-sm) var(--space-md);
}
.services-extra__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(245,239,228,0.85);
}
.services-extra__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}
.services-extra__list em {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--terracotta-light);
  margin-left: 4px;
  font-size: 0.85rem;
}

/* ========================================
   TARIFAS
   ======================================== */
.section--tarifas {
  background: var(--forest);
  color: var(--cream);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.price-card {
  padding: var(--space-lg);
  background: rgba(245,239,228,0.05);
  border: 1px solid rgba(245,239,228,0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  text-align: center;
}
.price-card:hover {
  background: rgba(245,239,228,0.08);
  transform: translateY(-4px);
}
.price-card--featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.price-card--featured:hover { background: var(--terracotta-deep); }
.price-card__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,239,228,0.7);
  margin-bottom: var(--space-md);
}
.price-card--featured .price-card__label { color: rgba(255,255,255,0.85); }
.price-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-2xs);
}
.price-card__num {
  font-family: var(--font-body);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.price-card--featured .price-card__num { color: var(--white); }
.price-card__currency {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
}
.price-card--featured .price-card__currency { color: var(--white); }
.price-card__period {
  display: block;
  font-size: 0.85rem;
  color: rgba(245,239,228,0.65);
  margin-bottom: var(--space-md);
}
.price-card--featured .price-card__period { color: rgba(255,255,255,0.8); }
.price-card__desc {
  font-size: 0.9rem;
  color: rgba(245,239,228,0.75);
  line-height: 1.5;
}
.price-card--featured .price-card__desc { color: rgba(255,255,255,0.9); }

.tarifas__cta { text-align: center; }

/* ========================================
   GALERÍA
   ======================================== */
.section--galeria { background: var(--cream); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--stone);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,26,24,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(245,239,228,0.15);
  color: var(--cream);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(245,239,228,0.3); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ========================================
   RESEÑAS
   ======================================== */
.section--reviews {
  background: var(--cream-warm);
  border-top: 1px solid rgba(15,77,68,0.08);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.review {
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,77,68,0.08);
  transition: all 0.3s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(15,77,68,0.15);
  border-color: rgba(15,77,68,0.15);
}
.review__stars {
  color: var(--terracotta);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}
.review blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.review cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.references {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(15,77,68,0.1);
}
.references__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
}
.references__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.reference-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  opacity: 0.65;
  filter: grayscale(1);
  transition: all 0.3s var(--ease);
}
.reference-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.reference-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
.reference-logo__name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ========================================
   RESERVA
   ======================================== */
.section--reserva {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.reserva__card {
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.reserva__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  border-radius: 50%;
}
.reserva__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.reserva__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.reserva__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}
.reserva__desc strong { font-weight: 600; }
.section--reserva .btn--primary { background: var(--forest-deep); }
.section--reserva .btn--primary:hover { background: var(--ink); }

/* ========================================
   CONTACTO
   ======================================== */
.section--contacto {
  background: var(--cream);
  padding-bottom: var(--space-2xl);
}
.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contacto__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.contacto__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(15,77,68,0.1);
}
.contacto__item:last-child { border-bottom: none; }
.contacto__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  opacity: 0.7;
}
.contacto__value {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
a.contacto__value { transition: color 0.2s var(--ease); }
a.contacto__value:hover { color: var(--terracotta); }

.contacto__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--stone);
  filter: grayscale(0.2) contrast(1.05);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: var(--space-2xl) 0 var(--space-md);
}

.footer__brand p {
  margin-top: var(--space-sm);
  max-width: 360px;
  color: rgba(245,239,228,0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer__logo {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer__logo-dot { color: var(--terracotta-light); margin: 0 4px; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}
.footer__nav-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,239,228,0.75);
  margin-bottom: var(--space-2xs);
}
.footer__nav a {
  font-size: 0.92rem;
  color: rgba(245,239,228,0.8);
  transition: color 0.2s var(--ease);
}
.footer__nav a:hover { color: var(--terracotta-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: rgba(245,239,228,0.75);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .section { padding: var(--space-2xl) 0; }
  .section__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .section__head { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .reviews { grid-template-columns: 1fr; }
  .contacto__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__top { grid-template-columns: 1fr; gap: var(--space-lg); }
  .references__logos { gap: var(--space-md); }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-text { display: none; }
}

@media (max-width: 600px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }
  .hero { min-height: 90vh; padding-top: var(--space-2xl); }
  .hero__meta { gap: var(--space-md); }
  .hero__meta-value { font-size: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide,
  .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .reserva__card { padding: var(--space-xl) var(--space-md); }
  .reference-logo { height: 36px; }
  .reference-logo img { max-height: 36px; }
  .reference-logo__name { font-size: 1.1rem; }
  .footer__bottom { flex-direction: column; }
  .btn--small { padding: 8px 16px; font-size: 0.8rem; }
  .nav__inner { gap: 8px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg img { animation: none; }
}


/* === Logo images === */
.nav__logo-img { height: 40px; width: auto; display: block; }
.footer__logo-img { height: 56px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.9; }
@media (max-width: 600px) {
  .nav__logo-img { height: 32px; }
  .footer__logo-img { height: 44px; }
}

/* === Reserva partner === */
.reserva__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.reserva__partner-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.92);
}
.reserva__partner-logo { height: 48px; width: auto; display: block; opacity: 0.9; }
@media (max-width: 600px) {
  .reserva__partner-logo { height: 36px; }
}


/* === Service card icons === */
.service-card__icon {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--forest);
  stroke-width: 1.5;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card:hover .service-card__icon {
  color: var(--terracotta);
  transform: scale(1.08) rotate(-2deg);
}


/* ========================================
   TARIFAS · Asymmetric layout
   ======================================== */
.pricing-asymmetric {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero price card (pernocta) */
.price-hero {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.price-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.price-hero > * { position: relative; z-index: 1; }

.price-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.price-hero__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.price-hero__badge {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
}

.price-hero__price {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.price-hero__num {
  font-family: var(--font-body);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--white);
  font-feature-settings: "tnum" 1;
}
.price-hero__suffix {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
  gap: 0.25rem;
}
.price-hero__currency {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.price-hero__period {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.price-hero__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 0;
}
.price-hero__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
}
.price-hero__includes svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.9);
}

.price-hero .btn {
  margin-top: auto;
}
.price-hero .btn--terracotta {
  background: var(--white);
  color: var(--terracotta-deep);
  border-color: var(--white);
}
.price-hero .btn--terracotta:hover {
  background: var(--cream);
  color: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.3);
}

/* Extras stacked */
.price-extras {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-extra {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
  flex: 1;
}
.price-extra:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateX(-4px);
}

.price-extra__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,165,154,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-light);
  flex-shrink: 0;
}

.price-extra__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.price-extra__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.price-extra__copy {
  font-size: 0.85rem;
  color: rgba(245,239,228,0.7);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.price-extra__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.price-extra__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum" 1;
}
.price-extra__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.85;
}
.price-extra__meta {
  font-size: 0.75rem;
  color: rgba(245,239,228,0.65);
  letter-spacing: 0.02em;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(245,239,228,0.2);
  align-self: center;
}

@media (max-width: 900px) {
  .pricing-asymmetric {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .price-hero__num { font-size: clamp(4rem, 16vw, 6rem); }
}
@media (max-width: 600px) {
  .price-hero { padding: 2rem 1.5rem; }
  .price-extra { padding: 1.25rem; gap: 1rem; }
  .price-extra__icon { width: 40px; height: 40px; }
}

/* ========================================
   INFO EXTRAS · Grid de iconos
   ======================================== */
.info-extras {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-extras__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
  padding: 2rem;
  background: var(--cream-warm);
  border-radius: 20px;
  border: 1px solid rgba(15,77,68,0.1);
}

.info-extra {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.info-extra__icon {
  flex-shrink: 0;
  color: var(--forest);
  stroke-width: 1.75;
}

/* Soon banner */
.info-soon {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border: 1.5px dashed rgba(15,77,68,0.25);
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.info-soon__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.info-soon__content {
  flex: 1;
}
.info-soon__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.info-soon__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .info-extras__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.5rem; }
  .info-soon { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
}
@media (max-width: 480px) {
  .info-extras__grid { grid-template-columns: 1fr; }
}


/* === Legal pages === */
.legal-page {
  padding: 6rem 0 4rem;
  background: var(--cream);
  min-height: 100vh;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 0.5rem;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  opacity: 0.7;
}
.legal-content h2 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 0.75rem;
}
.legal-content p, .legal-content li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-content li {
  margin-bottom: 0.5rem;
}
.legal-content strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover {
  color: var(--terracotta);
}
.legal-back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15,77,68,0.15);
}

/* === Footer credit === */
.footer__credit {
  font-size: 0.82rem;
  opacity: 0.75;
}
.footer__credit a {
  color: var(--terracotta-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.footer__credit a:hover {
  color: var(--cream);
}

/* === Contact static map === */
.contacto__map {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-warm);
  position: relative;
}
.contacto__map-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.contacto__map-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: opacity 0.3s var(--ease);
}
.contacto__map-link:hover img {
  opacity: 0.92;
}
.contacto__map-cta {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--white);
  color: var(--forest);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
}


/* ========================================
   FOOTER · 3 columnas alineadas + dropdown idioma
   ======================================== */
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
}

.footer__nav,
.footer__lang {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.75);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__nav a {
  color: rgba(245,239,228,0.85);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
  padding: 2px 0;
}
.footer__nav a:hover {
  color: var(--terracotta-light);
}

/* === Dropdown de idioma === */
.footer__lang-dropdown {
  position: relative;
  margin-top: 0.2rem;
}

.footer__lang-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,239,228,0.08);
  border: 1px solid rgba(245,239,228,0.18);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  transition: all 0.2s var(--ease);
  user-select: none;
}
.footer__lang-current::-webkit-details-marker { display: none; }
.footer__lang-current::marker { content: ''; }

.footer__lang-current:hover {
  background: rgba(245,239,228,0.14);
  border-color: rgba(245,239,228,0.3);
}

.footer__lang-current img {
  border-radius: 2px;
  flex-shrink: 0;
}

.footer__lang-current svg {
  margin-left: 4px;
  transition: transform 0.2s var(--ease);
  opacity: 0.7;
}

.footer__lang-dropdown[open] .footer__lang-current svg {
  transform: rotate(180deg);
}

.footer__lang-list {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--cream);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  margin: 0;
  min-width: 180px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.5);
  z-index: 10;
  animation: fadeUp 0.2s var(--ease);
}

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

.footer__lang-list li {
  margin: 0;
}

.footer__lang-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s ease;
}

.footer__lang-list a:hover {
  background: var(--cream-warm);
  color: var(--terracotta);
}

.footer__lang-list a[aria-current="page"] {
  background: var(--forest);
  color: var(--cream);
}
.footer__lang-list a[aria-current="page"]:hover {
  background: var(--forest);
  color: var(--cream);
}

.footer__lang-list a img {
  border-radius: 2px;
  flex-shrink: 0;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__lang-list {
    bottom: auto;
    top: calc(100% + 8px);
  }
}
