/* ============================================
   Paimun 2 — Landing San Martín de los Andes
   Mobile-first · vanilla · sin dependencias
   ============================================ */

:root {
  --c-cream:      #FAF5EB;
  --c-cream-2:    #F3EADB;
  --c-ink:        #2B1D10;
  --c-ink-soft:   #5B4632;
  --c-wood:       #8B6F47;
  --c-wood-soft:  #B39779;
  --c-forest:     #4A6B3A;
  --c-forest-dk:  #3A5530;
  --c-terracotta: #B84D2B;
  --c-terracotta-dk:#9A3E21;
  --c-card:       #FFFBF5;
  --c-border:     rgba(43,29,16,.12);
  --c-border-2:   rgba(43,29,16,.24);
  --c-shadow:     0 4px 20px rgba(139,111,71,.14);
  --c-shadow-lg:  0 12px 40px rgba(43,29,16,.18);

  --f-serif: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --f-sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-full: 999px;

  --sp-section: clamp(3rem, 7vw, 6.5rem);
  --sp-container: clamp(1rem, 4vw, 2rem);
  --mx-w: 1200px;
  --mx-w-prose: 680px;

  --header-h: 64px;
  --tap: 44px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--c-forest-dk); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-terracotta); }
:focus-visible { outline: 3px solid var(--c-terracotta); outline-offset: 2px; border-radius: 4px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: 0; }
p { font-size: clamp(1rem, 1.1vw, 1.125rem); color: var(--c-ink-soft); }
.lead { font-size: clamp(1.05rem, 1.3vw, 1.25rem); color: var(--c-ink); }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--mx-w);
  margin-inline: auto;
  padding-inline: var(--sp-container);
}
.prose { max-width: var(--mx-w-prose); }
.section { padding-block: var(--sp-section); }
.section-alt { background: var(--c-cream-2); }

/* ornamento (divisor central) */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-block: 1.5rem;
  color: var(--c-wood-soft);
}
.ornament::before, .ornament::after {
  content: ""; flex: 0 0 60px; height: 1px; background: currentColor;
}
.ornament svg { width: 14px; height: 14px; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-forest-dk);
  font-weight: 600;
  margin-bottom: .85rem;
}
.section-header { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header p { margin-top: 1rem; max-width: 620px; margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: var(--tap);
  padding: .8rem 1.4rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-terracotta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(184,77,43,.3);
}
.btn-primary:hover { background: var(--c-terracotta-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,77,43,.38); }
.btn-secondary {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-border-2);
}
.btn-secondary:hover { color: var(--c-ink); background: rgba(43,29,16,.06); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,29,16,.55), rgba(43,29,16,0));
  opacity: 1; transition: opacity .3s var(--ease);
  pointer-events: none;
}
.site-header.scrolled {
  background: rgba(250,245,235,.96);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom-color: var(--c-border);
  box-shadow: 0 2px 12px rgba(43,29,16,.06);
}
.site-header.scrolled::before { opacity: 0; }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  position: relative; z-index: 1;
}
.site-header.scrolled .brand { color: var(--c-ink); }
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--c-terracotta);
  color: #fff;
  font-family: var(--f-serif); font-weight: 700;
}
.brand-mark svg { width: 22px; height: 22px; }

.primary-nav { display: none; }
.nav-actions { display: flex; align-items: center; gap: .5rem; position: relative; z-index: 1; }

.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-btn {
  display: flex; align-items: center; gap: .4rem;
  min-height: var(--tap);
  min-width: var(--tap);
  padding: 0 .9rem;
  border-radius: var(--r-full);
  color: #fff;
  font-weight: 600; font-size: .92rem;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  transition: background .2s var(--ease);
}
.site-header.scrolled .lang-btn { color: var(--c-ink); border-color: var(--c-border-2); background: transparent; }
.lang-btn:hover { background: rgba(255,255,255,.2); }
.site-header.scrolled .lang-btn:hover { background: rgba(43,29,16,.06); }
.lang-btn svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.lang-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  min-width: 140px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--c-shadow-lg);
  padding: .35rem;
  display: none;
  z-index: 80;
}
.lang-menu[data-open="true"] { display: block; }
.lang-menu a {
  display: block;
  padding: .7rem .9rem;
  border-radius: var(--r-sm);
  color: var(--c-ink);
  font-weight: 500;
}
.lang-menu a:hover { background: var(--c-cream-2); color: var(--c-ink); }
.lang-menu a[aria-current="page"] { background: var(--c-forest); color: #fff; }

/* CTA header — oculto en mobile, visible en desktop */
.cta-header { display: none; }

/* hamburguesa */
.menu-toggle {
  display: grid; place-items: center;
  width: var(--tap); height: var(--tap);
  border-radius: var(--r-full);
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.35);
}
.site-header.scrolled .menu-toggle { color: var(--c-ink); border-color: var(--c-border-2); background: transparent; }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* menú overlay mobile */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-cream);
  z-index: 55;
  padding: calc(var(--header-h) + 1rem) var(--sp-container) 2rem;
  display: flex; flex-direction: column; gap: 1.4rem;
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .2rem; }
.mobile-menu a.menu-link {
  display: block;
  padding: 1rem .25rem;
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu a.menu-link:hover { color: var(--c-terracotta); }
.mobile-menu .menu-footer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 1.5rem;
}
.mobile-menu .menu-lang {
  display: flex; gap: .5rem; justify-content: center;
}
.mobile-menu .menu-lang a {
  padding: .6rem 1rem; border: 1px solid var(--c-border-2); border-radius: var(--r-full);
  font-weight: 500;
}
.mobile-menu .menu-lang a[aria-current="page"] { background: var(--c-forest); color: #fff; border-color: var(--c-forest); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(43,29,16,.5) 0%, rgba(43,29,16,.15) 35%, rgba(43,29,16,.7) 100%);
}
.hero .container { padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3rem; width: 100%; }
.hero-content { max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28);
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.92);
  max-width: 640px;
  line-height: 1.55;
}
.hero-actions {
  margin-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: .8rem;
}

/* code box */
.code-box {
  display: inline-flex; align-items: center; gap: .9rem;
  margin-top: 1.6rem;
  padding: .85rem 1.2rem;
  background: rgba(255,251,245,.96);
  color: var(--c-ink);
  border: 2px dashed var(--c-terracotta);
  border-radius: var(--r-md);
  box-shadow: var(--c-shadow);
  max-width: 100%;
}
.code-box .icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--c-terracotta);
  color: #fff;
}
.code-box .icon svg { width: 20px; height: 20px; }
.code-box-text { font-size: .95rem; line-height: 1.35; }
.code-box-text b { font-weight: 600; }
.code-box code {
  display: inline-block;
  margin-top: .15rem;
  padding: .2rem .55rem;
  background: var(--c-cream);
  border-radius: var(--r-sm);
  font-family: "SFMono-Regular", ui-monospace, Consolas, monospace;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-terracotta-dk);
  letter-spacing: .05em;
}

/* scroll indicator */
.scroll-down {
  position: absolute; bottom: 1.3rem; left: 50%;
  transform: translateX(-50%);
  display: none;
  color: rgba(255,255,255,.8);
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  align-items: center; flex-direction: column; gap: .4rem;
  animation: bobbing 2.2s ease-in-out infinite;
}
.scroll-down svg { width: 16px; height: 16px; }
@keyframes bobbing { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,6px); } }

/* ---------- benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.benefit-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--c-shadow); }
.benefit-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--c-cream-2);
  color: var(--c-forest-dk);
  margin-bottom: 1rem;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 { font-family: var(--f-sans); font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; }
.benefit-card p { font-size: .97rem; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.about-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--c-shadow);
  aspect-ratio: 4/3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p + p { margin-top: 1rem; }
.fact-list {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem;
  padding: 0; list-style: none;
}
.fact-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .97rem;
  color: var(--c-ink);
}
.fact-list svg { width: 20px; height: 20px; color: var(--c-forest); flex: 0 0 auto; }

.amenities {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
}
.amenity {
  display: flex; align-items: center; gap: .7rem;
  padding: .85rem 1rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: .96rem;
}
.amenity svg { width: 22px; height: 22px; color: var(--c-forest-dk); flex: 0 0 auto; }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--c-cream-2);
  cursor: zoom-in;
  transition: transform .3s var(--ease);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:focus-visible { outline-offset: -3px; }

/* ---------- seasons ---------- */
.seasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.season-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.season-card:hover { transform: translateY(-4px); box-shadow: var(--c-shadow); }
.season-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.season-media img { width: 100%; height: 100%; object-fit: cover; }
.season-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.season-head { display: flex; align-items: center; gap: .6rem; }
.season-head svg { width: 22px; height: 22px; color: var(--c-forest-dk); }
.season-head h3 { font-size: 1.25rem; }
.season-body p { font-size: .97rem; }
.season-activities { list-style: none; padding: 0; margin-top: auto; display: flex; flex-direction: column; gap: .4rem; }
.season-activities li { display: flex; gap: .5rem; font-size: .92rem; color: var(--c-ink); }
.season-activities li::before { content: "·"; color: var(--c-terracotta); font-weight: 700; flex: 0 0 auto; }

/* ---------- location ---------- */
.location-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.map-wrap {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-cream-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-hint {
  position: absolute;
  left: 50%; bottom: .8rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .85rem;
  background: rgba(255, 251, 245, .96);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 500;
  color: var(--c-ink);
  box-shadow: 0 4px 14px rgba(43, 29, 16, .18);
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100% - 1.6rem);
}
.map-hint svg { width: 14px; height: 14px; color: var(--c-terracotta); flex: 0 0 auto; }
.distances {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: .55rem;
}
.distances li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .75rem 1rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: .98rem;
}
.distances .place { font-weight: 500; color: var(--c-ink); }
.distances .dist { font-family: var(--f-serif); color: var(--c-forest-dk); font-weight: 600; white-space: nowrap; }
.distances .highlight { border-color: var(--c-forest); background: rgba(74,107,58,.07); }

/* ---------- testimonials ---------- */
.reviews {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.review {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.stars { display: flex; gap: 2px; color: var(--c-terracotta); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-text { font-size: 1rem; color: var(--c-ink); line-height: 1.55; font-style: italic; }
.review-author { display: flex; flex-direction: column; gap: .15rem; margin-top: auto; font-size: .92rem; color: var(--c-ink-soft); }
.review-author strong { color: var(--c-ink); font-style: normal; font-weight: 600; font-size: .98rem; }
.rating-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .6rem 1rem;
  background: var(--c-forest);
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 600;
  margin-bottom: 1rem;
}
.rating-badge svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border-top: 1px solid var(--c-border);
  padding: 1.2rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--c-border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--f-serif);
  font-size: 1.15rem;
  color: var(--c-ink);
  font-weight: 500;
  padding-right: .25rem;
  min-height: var(--tap);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--c-terracotta);
  transition: transform .25s var(--ease);
  flex: 0 0 auto;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: .7rem;
  font-size: .98rem;
  line-height: 1.6;
}

/* ---------- cta final ---------- */
.cta-final {
  position: relative;
  color: #fff;
  padding-block: clamp(4rem, 10vw, 8rem);
  isolation: isolate;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../img/cta-final.jpg");
  background-size: cover;
  background-position: center;
}
.cta-final::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(43,29,16,.78), rgba(43,29,16,.88));
}
.cta-final .container { text-align: center; }
.cta-final h2 { color: #fff; margin-bottom: 1rem; max-width: 720px; margin-inline: auto; }
.cta-final p { color: rgba(255,255,255,.88); max-width: 580px; margin-inline: auto; }
.cta-final .code-box { margin-top: 1.8rem; margin-inline: auto; background: rgba(255,251,245,.98); }
.cta-final .btn { margin-top: 0; }
.cta-dual {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  align-items: stretch;
}
.cta-dual .btn { flex: 1 1 220px; min-width: 0; max-width: 320px; }
.cta-final .cta-dual { margin: 1.8rem auto 0; max-width: 580px; }
.cta-dual .platform-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
}
.cta-dual .platform-icon svg { width: 100%; height: 100%; }
.cta-final .agency-note {
  margin-top: 2.2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.72);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,251,245,.85);
  padding-block: 3rem 2rem;
  font-size: .93rem;
}
.site-footer a { color: rgba(255,251,245,.92); }
.site-footer a:hover { color: var(--c-terracotta); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-about h4 { color: #fff; margin-bottom: .6rem; font-family: var(--f-serif); font-size: 1.15rem; font-weight: 600; }
.footer-about p { color: rgba(255,251,245,.72); font-size: .9rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  padding: .55rem .9rem;
  background: rgba(255, 251, 245, .06);
  border: 1px solid rgba(255, 251, 245, .18);
  border-radius: var(--r-full);
  color: rgba(255, 251, 245, .92);
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.social-link:hover {
  background: rgba(255, 251, 245, .14);
  border-color: rgba(255, 251, 245, .32);
  color: #fff;
}
.social-link svg { width: 18px; height: 18px; flex: 0 0 auto; }
.footer-links h4, .footer-lang h4 { color: #fff; margin-bottom: .9rem; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links ul, .footer-lang ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,251,245,.6);
}

/* ---------- sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 50;
  padding: .7rem var(--sp-container);
  background: rgba(250,245,235,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-border);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  display: flex; gap: .6rem; justify-content: center;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1 1 0; min-width: 0; max-width: 220px; padding: .8rem .85rem; font-size: .95rem; gap: .35rem; }
.sticky-cta .btn svg { width: 16px; height: 16px; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,14,8,.94);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox-figure {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: 100%;
  margin: 0;
  display: flex; flex-direction: column; gap: .8rem;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  max-height: calc(100svh - 8rem);
  object-fit: contain;
  border-radius: var(--r-sm);
  margin: 0 auto;
}
.lightbox-caption {
  color: rgba(255,255,255,.85);
  text-align: center;
  font-size: .95rem;
}
.lightbox-btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  transition: background .2s var(--ease);
}
.lightbox-btn:hover { background: rgba(255,255,255,.28); }
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-prev { top: 50%; left: 1rem; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 1rem; transform: translateY(-50%); }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-count {
  position: absolute; top: 1rem; left: 1rem;
  color: #fff; font-size: .88rem;
  background: rgba(0,0,0,.4);
  padding: .35rem .75rem;
  border-radius: var(--r-full);
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- media queries ---------- */
@media (min-width: 480px) {
  .scroll-down { display: flex; }
  .gallery { gap: .8rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .distances li .place { font-weight: 500; }
}

@media (min-width: 768px) {
  :root { --header-h: 72px; }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .seasons { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
  .amenities { grid-template-columns: repeat(3,1fr); }
  .fact-list { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
  .sticky-cta { display: none; }
  .cta-header {
    display: inline-flex;
  }
  .lang-menu { min-width: 150px; }
}

@media (min-width: 1024px) {
  .primary-nav {
    display: flex; align-items: center; gap: .4rem;
    position: relative; z-index: 1;
  }
  .primary-nav a {
    padding: .55rem .85rem;
    border-radius: var(--r-full);
    color: #fff;
    font-weight: 500;
    font-size: .94rem;
    transition: background .2s var(--ease);
  }
  .site-header.scrolled .primary-nav a { color: var(--c-ink); }
  .primary-nav a:hover { background: rgba(255,255,255,.12); color: #fff; }
  .site-header.scrolled .primary-nav a:hover { background: rgba(43,29,16,.06); color: var(--c-ink); }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .seasons { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(4, 1fr); }
  .hero-content { max-width: 820px; }
}

@media (min-width: 1280px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
