/* ==========================================================================
   EL SUEÑO DE MINA — Ichica Ju Mue
   Hoja de estilos principal
   ========================================================================== */

:root {
  --color-primary: #178F95;
  --color-primary-dark: #0E5C60;
  --color-primary-light: #63B4B8;
  --color-primary-pale: #E4F2F2;
  --color-white: #FFFFFF;
  --color-cream: #FAF7F1;
  --color-stone: #EFE9DC;
  --color-stone-dark: #DFD6C0;
  --color-ink: #1B2523;
  --color-ink-soft: #48524F;
  --color-forest: #223A32;
  --color-forest-dark: #16241F;
  --color-accent: #C97A3B;
  --color-accent-light: #E3A868;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1220px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 45px -20px rgba(20, 30, 28, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(20, 30, 28, 0.28);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--color-forest-dark); }
p { line-height: 1.7; margin: 0 0 1em; color: var(--color-ink-soft); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--color-primary);
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.pill-btn.primary { background: var(--color-primary); color: var(--color-white); box-shadow: 0 14px 30px -12px rgba(23,143,149,.55); }
.pill-btn.primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.pill-btn.ghost { background: transparent; border-color: rgba(27,37,35,.25); color: var(--color-ink); }
.pill-btn.ghost:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.pill-btn.on-dark { border-color: rgba(255,255,255,.4); color: var(--color-white); }
.pill-btn.on-dark:hover { border-color: var(--color-white); background: rgba(255,255,255,.1); }
.pill-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--color-primary); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--color-forest-dark);
  color: rgba(255,255,255,.82);
  font-size: .8rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar-links a, .topbar-item { display: inline-flex; align-items: center; gap: 6px; transition: color .25s; }
.topbar-links a:hover { color: var(--color-primary-light); }
.topbar-links svg { width: 14px; height: 14px; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.22); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,.75); display: inline-flex; transition: color .25s; }
.topbar-social a:hover { color: var(--color-primary-light); }
.topbar-social svg { width: 15px; height: 15px; }
.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-switch button {
  background: none; border: none; color: rgba(255,255,255,.6); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; padding: 4px 6px;
}
.lang-switch button.active { color: #fff; }
.lang-switch span { color: rgba(255,255,255,.35); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(27,37,35,.08);
  transition: box-shadow .3s;
}
/* backdrop-filter lives on a ::before (not on .site-header itself) because a
   backdrop-filter on the header would make it the containing block for its
   position:fixed descendants (the mobile nav panel), collapsing that panel's
   height instead of letting it size against the viewport. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.site-header::after {
  content: ""; position: absolute; left: 50%; bottom: -48px; z-index: 0;
  width: 176px; height: 176px; border-radius: 50%;
  background: var(--color-cream); border: 1px solid rgba(27,37,35,.08);
  clip-path: inset(127px 0 0); transform: translateX(-50%);
  transition: width .3s, height .3s, bottom .3s, clip-path .3s;
}
.site-header.is-scrolled::after {
  width: 134px; height: 134px; bottom: -37px;
  clip-path: inset(96px 0 0);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(0,0,0,.25); }
.nav-wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 120px; transition: height .3s; column-gap: 18px;
}
.site-header.is-scrolled .nav-wrap { height: 90px; }

.brand {
  display: flex; align-items: center; justify-content: center; justify-self: center;
  position: relative; z-index: 3; flex-shrink: 0;
  width: 176px; height: 176px; border-radius: 50%;
  transform: translateY(20px);
  transition: width .3s, height .3s, transform .3s;
}
.site-header.is-scrolled .brand { width: 134px; height: 134px; transform: translateY(15px); }
.brand-logo { position: relative; z-index: 1; height: 100px; width: auto; display: block; transition: height .3s; }
.site-header.is-scrolled .brand-logo { height: 76px; }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-forest-dark); letter-spacing: .01em; }
.brand-text span { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-primary); font-weight: 600; margin-top: 3px; }

/* Desktop split nav: one group of links each side of the centered logo.
   The full 7-link list also exists once as .main-nav for the mobile panel;
   .nav-group is hidden below the breakpoint, .main-nav hidden above it. */
.nav-group { display: flex; align-items: center; gap: 8px; width: 100%; }
.nav-group.nav-left { justify-content: flex-start; }
.nav-group.nav-right { justify-content: flex-end; }
.nav-group a {
  padding: 10px 18px; border-radius: 100px; font-size: .86rem; font-weight: 500;
  letter-spacing: .02em; color: var(--color-ink-soft); white-space: nowrap; transition: background .25s, color .25s;
}
.nav-group a:hover { color: var(--color-primary-dark); background: rgba(23,143,149,.08); }
.nav-group a.active { color: var(--color-primary-dark); background: var(--color-primary-pale); font-weight: 600; }
.nav-left { justify-self: stretch; }
.nav-right-wrap { justify-self: stretch; display: flex; align-items: center; justify-content: flex-end; gap: 8px; }

@media (min-width: 861px) {
  .nav-left, .nav-right-wrap { transform: translateY(-28px); transition: transform .3s; }
  .site-header.is-scrolled .nav-left,
  .site-header.is-scrolled .nav-right-wrap { transform: translateY(-22px); }
}

.main-nav { display: none; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px; border-radius: 100px; font-size: .92rem; font-weight: 500;
  color: var(--color-ink-soft); transition: background .25s, color .25s;
}
.main-nav a:hover { color: var(--color-primary-dark); background: rgba(23,143,149,.08); }
.main-nav a.active { color: var(--color-primary-dark); background: var(--color-primary-pale); font-weight: 600; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-forest-dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-page { min-height: 62vh; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; transform-origin: center;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,21,19,.5) 0%, rgba(13,21,19,.28) 32%, rgba(10,17,15,.9) 100%),
    linear-gradient(90deg, rgba(10,17,15,.55) 0%, rgba(10,17,15,0) 58%);
}
/* width:100% keeps this flush with the header's container edge — without it,
   as a flex item (.hero uses display:flex to bottom-align content) it shrinks
   to its text's content width and gets auto-margin-centered in the full
   section instead of starting at the same left edge as the logo. */
/* Bottom padding clears the centered .hero-scroll indicator (which sits
   36px from the hero's bottom edge and is ~106px tall) so the CTA button
   and the indicator no longer overlap now that hero content is centered. */
.hero-content { position: relative; z-index: 2; padding: 90px 0 170px; width: 100%; text-align: center; }
.hero-page .hero-content { padding-bottom: 76px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--color-primary-light); font-weight: 600; margin-bottom: 20px;
  padding: 9px 16px; border-radius: 100px; background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px -14px rgba(0,0,0,.4);
}
.hero-eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--color-primary-light); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 4.1rem); max-width: 17ch; margin: 0 auto .32em; }
.glamping-hero h1 {
  font-size: clamp(2.2rem, calc(5vw - 10px), calc(4.1rem - 10px));
  max-width: 22ch;
}
.hero .lead {
  color: rgba(255,255,255,.82); font-size: 1.05rem; font-family: var(--font-display); font-style: italic;
  max-width: 40ch; margin: 0 auto 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 36px; z-index: 2; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.hero-scroll .scroll-mark {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.hero-scroll .scroll-mark img { width: 22px; height: 22px; object-fit: contain; opacity: .92; }
.hero-scroll .line { width: 1px; height: 40px; background: rgba(255,255,255,.5); overflow: hidden; position: relative; }
.hero-scroll .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: #fff;
  animation: scrollLine 2.2s infinite var(--ease);
}
@keyframes scrollLine { to { top: 100%; } }

/* ---------- Stat strip ---------- */
.stat-strip { background: var(--color-forest-dark); color: #fff; }
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 40px 28px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--color-primary-light); }
.stat-item span { font-size: .82rem; color: rgba(255,255,255,.72); }

/* ---------- Intro / concept ---------- */
.intro { padding: 120px 0; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.intro h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.intro-media .float-card {
  position: absolute; left: -34px; bottom: -30px; background: #fff; border-radius: var(--radius-md);
  padding: 22px 26px; box-shadow: var(--shadow-card); max-width: 250px;
}
.intro-media .float-card p { font-family: var(--font-display); font-style: italic; color: var(--color-forest-dark); font-size: 1.02rem; margin: 0; line-height: 1.5; }
.intro-media .float-card cite { display: block; margin-top: 10px; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-primary); font-style: normal; }

/* ---------- Pillars ---------- */
.pillars { background: var(--color-stone); padding: 110px 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.pillar-card {
  background: #fff; border-radius: var(--radius-md); padding: 34px 28px; box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -20px rgba(20,30,28,.3); }
.pillar-icon {
  width: 54px; height: 54px; border-radius: 16px; background: var(--color-primary-pale); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pillar-card p { font-size: .92rem; margin: 0; }

/* ---------- Stays / accommodation cards ---------- */
.stays { padding: 120px 0; }
.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.stay-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 460px;
  box-shadow: var(--shadow-card); display: flex; align-items: flex-end;
}
.stay-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.stay-card:hover img { transform: scale(1.08); }
.stay-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,25,23,0) 40%, rgba(11,18,17,.92) 100%);
}
.stay-card-tags {
  position: absolute; top: 20px; left: 20px; right: 20px; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.stay-card-body { position: relative; z-index: 2; padding: 30px 28px; color: #fff; width: 100%; }
.stay-card .tag {
  background: var(--color-primary-light); color: #fff;
  box-shadow: 0 6px 18px rgba(8,45,47,.18);
}
.stay-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.stay-card p { color: rgba(255,255,255,.82); font-size: .92rem; margin-bottom: 18px; }
.stay-card .link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; color: #fff; }
.stay-card .link-arrow svg { width: 16px; height: 16px; transition: transform .3s; }
.stay-card:hover .link-arrow svg { transform: translateX(5px); }

/* ---------- Experience strip (icons row) ---------- */
.exp-strip { background: var(--color-forest); color: #fff; padding: 90px 0; }
.exp-strip .section-head h2, .exp-strip .section-head p { color: #fff; }
.exp-strip .section-head p { color: rgba(255,255,255,.75); }
.exp-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.exp-icon-card { text-align: center; padding: 26px 16px; border-radius: var(--radius-md); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); transition: background .3s; }
.exp-icon-card:hover { background: rgba(255,255,255,.09); }
.exp-icon-card svg { width: 30px; height: 30px; color: var(--color-primary-light); margin-bottom: 14px; }
.exp-icon-card h4 { color: #fff; font-size: .96rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.exp-icon-card p { color: rgba(255,255,255,.65); font-size: .82rem; margin: 0; }

/* ---------- Featured experiences ---------- */
.experience-featured { padding: 110px 0; background: var(--color-stone); }
.experience-featured-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.experience-featured-item { min-width: 0; }
.experience-featured-media {
  height: 430px; overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); background: var(--color-forest-dark);
}
.experience-featured-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.experience-featured-item.horseback img { object-position: 72% 68%; }
.experience-featured-item.rzr img { object-position: 64% 76%; }
.experience-featured-copy { padding: 24px 4px 0; }
.experience-featured-copy .tag { display: inline-flex; margin-bottom: 14px; background: var(--color-primary-light); color: #fff; }
.experience-featured-copy h3 { font-size: 1.55rem; margin-bottom: 10px; }
.experience-featured-copy p { margin: 0; max-width: 52ch; }

/* ---------- Gallery / masonry ---------- */
.gallery { padding: 120px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; grid-auto-flow: dense; gap: 16px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: rgba(23,143,149,0); transition: background .3s; }
.gallery-grid figure:hover::after { background: rgba(23,143,149,.12); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 999; background: rgba(10,16,15,.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: var(--radius-sm); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff;
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

/* ---------- Story / historia ---------- */
.story { padding: 130px 0; background: var(--color-cream); }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.story-timeline { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.story-timeline li { display: flex; gap: 18px; }
.story-timeline .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary); margin-top: 8px; flex-shrink: 0; }
.story-timeline strong { display: block; color: var(--color-forest-dark); font-family: var(--font-display); font-size: 1.05rem; }

/* ---------- Culture band ---------- */
.culture-band {
  background: var(--color-forest-dark); color: #fff; padding: 100px 0; position: relative; overflow: hidden;
}
.culture-band .container { position: relative; z-index: 2; max-width: 820px; text-align: center; }
.culture-band .eyebrow { color: var(--color-primary-light); }
.culture-band .eyebrow::before { background: var(--color-primary-light); }
.culture-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.culture-band p { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.culture-word { font-family: var(--font-display); font-style: italic; color: var(--color-primary-light); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  color: #fff; padding: 90px 0; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 18ch; margin: 0 auto .4em; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 50ch; margin: 0 auto 34px; }
.cta-band .actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-band .pill-btn.on-dark:hover { background: rgba(255,255,255,.14); }
.cta-band .pill-btn.primary { background: #fff; color: var(--color-primary-dark); }
.cta-band .pill-btn.primary:hover { background: var(--color-forest-dark); color: #fff; }

/* ---------- Amenities list (used across stay pages) ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.amenity-item {
  display: flex; align-items: center; gap: 14px; background: #fff; border-radius: var(--radius-md);
  padding: 18px 20px; box-shadow: var(--shadow-card);
}
.amenity-item svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; }
.amenity-item span { font-weight: 500; font-size: .92rem; color: var(--color-ink); }

/* ---------- Split feature (image + text alternating) ---------- */
.feature-split { padding: 100px 0; }
.feature-split .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-split.reverse .container { direction: rtl; }
.feature-split.reverse .container > * { direction: ltr; }
.feature-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; height: 520px; object-fit: cover; }
.feature-split h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
.feature-split .amenities-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.feature-split.on-stone { background: var(--color-stone); }

/* ---------- Dome sunset feature ---------- */
.dome-sunset-feature {
  position: relative; min-height: 640px; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.dome-sunset-feature > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 68%;
}
.dome-sunset-feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,12,11,.76) 0%, rgba(7,12,11,.18) 52%, rgba(7,12,11,.38) 100%);
}
.dome-sunset-content {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.dome-sunset-content .eyebrow {
  color: var(--color-primary-light); padding: 9px 16px; border-radius: 100px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px -14px rgba(0,0,0,.4);
}
.dome-sunset-content .eyebrow::before { background: var(--color-primary-light); }
.dome-sunset-content h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); max-width: 12ch; margin-left: auto; margin-right: auto; }
.dome-sunset-content p { color: rgba(255,255,255,.84); max-width: 48ch; font-size: 1.02rem; margin-left: auto; margin-right: auto; }

/* ---------- Info cards (ubicación / transporte) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.info-card { background: #fff; border-radius: var(--radius-md); padding: 32px 28px; box-shadow: var(--shadow-card); }
.info-card .pillar-icon { margin-bottom: 22px; }
.info-card h3 { font-size: 1.1rem; }
.info-card p { font-size: .92rem; margin-bottom: 0; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); height: 460px; border: none; width: 100%; }
.map-note { display: flex; gap: 12px; align-items: flex-start; background: var(--color-primary-pale); border-radius: var(--radius-md); padding: 18px 20px; margin-top: 20px; }
.map-note svg { width: 20px; height: 20px; color: var(--color-primary-dark); flex-shrink: 0; margin-top: 2px; }
.map-note p { margin: 0; font-size: .88rem; color: var(--color-forest-dark); }

/* ---------- Steps (cómo llegar) ---------- */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(27,37,35,.1); }
.step:last-child { border-bottom: none; }
.step-num { counter-increment: step; font-family: var(--font-display); font-size: 1.6rem; color: var(--color-primary); }
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h4 { margin-bottom: 4px; font-size: 1.02rem; }
.step p { margin: 0; }

/* ---------- Testimonials placeholder ---------- */
.testimonial-note {
  background: #fff; border: 1.5px dashed var(--color-stone-dark); border-radius: var(--radius-lg);
  padding: 60px 40px; text-align: center; max-width: 620px; margin: 0 auto;
}
.testimonial-note svg { width: 36px; height: 36px; color: var(--color-primary); margin-bottom: 18px; }
.testimonial-note p { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--color-forest-dark); }

/* ---------- Contact page ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 110px 0 130px; }
.contact-card { background: var(--color-forest-dark); color: #fff; border-radius: var(--radius-lg); padding: 46px; }
.contact-card h2 { color: #fff; }
.contact-card p { color: rgba(255,255,255,.75); }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-method:last-child { border-bottom: none; }
.contact-method .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method .ic svg { width: 21px; height: 21px; color: var(--color-primary-light); }
.contact-method strong { display: block; font-size: .96rem; }
.contact-method span { font-size: .84rem; color: rgba(255,255,255,.65); }
.contact-social { display: flex; gap: 12px; margin-top: 26px; }
.contact-social a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.contact-social a:hover { background: var(--color-primary); }
.contact-social svg { width: 19px; height: 19px; color: #fff; }
.contact-side { display: flex; flex-direction: column; justify-content: center; }
.contact-side h3 { font-size: 1.3rem; }
.hours-box { background: #fff; border-radius: var(--radius-md); padding: 26px 28px; box-shadow: var(--shadow-card); margin-top: 18px; }
.hours-box .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(27,37,35,.08); font-size: .92rem; }
.hours-box .row:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-forest-dark); color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand {
  display: inline-flex; width: auto; height: auto; border-radius: 0;
  justify-content: flex-start; transform: none;
}
.footer-brand .brand-mark { width: 96px; height: 96px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; max-width: 32ch; margin-top: 16px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .9rem; transition: color .25s; }
.footer-col a:hover { color: var(--color-primary-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: .8rem; flex-wrap: wrap; gap: 10px 24px;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .25s; }
.footer-bottom a:hover { color: var(--color-primary-light); }
.footer-credit { font-weight: 500; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal-stagger].in-view > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in-view > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].in-view > *:nth-child(2) { transition-delay: .15s; }
[data-reveal-stagger].in-view > *:nth-child(3) { transition-delay: .25s; }
[data-reveal-stagger].in-view > *:nth-child(4) { transition-delay: .35s; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner-content { max-width: 640px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .intro-grid, .story-grid, .feature-split .container { grid-template-columns: 1fr; }
  .feature-split.reverse .container { direction: ltr; }
  .feature-split img { height: 380px; }
  .pillar-grid, .stay-grid, .exp-icon-grid, .info-grid, .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; padding: 80px 0 100px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .experience-featured-media { height: 360px; }
}

@media (max-width: 860px) {
  .topbar .topbar-links span.full { display: none; }
  .topbar-item, .topbar-sep { display: none; }
  .nav-wrap { display: flex; justify-content: space-between; height: 96px; }
  .site-header.is-scrolled .nav-wrap { height: 76px; }
  .nav-group { display: none; }
  /* Mobile: plain logo, no circular badge */
  .brand, .site-header.is-scrolled .brand {
    justify-self: auto; width: auto; height: auto; border-radius: 0;
    transform: none;
  }
  .site-header::after { display: none; }
  .brand-logo { height: 66px; }
  .site-header.is-scrolled .brand-logo { height: 52px; }
  .main-nav {
    display: flex; position: fixed; inset: 134px 0 0 0; background: var(--color-cream); flex-direction: column;
    align-items: stretch; padding: 20px; gap: 4px; transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 16px 18px; font-size: 1.05rem; border-radius: 12px; }
  .nav-toggle { display: flex; }
  .hero-scroll { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-eyebrow { max-width: 100%; justify-content: center; text-align: center; }
  .hero-eyebrow::before { display: none; }
  .hero-content { padding: 60px 24px 50px; }
  .intro, .stays, .story, .pillars, .exp-strip, .experience-featured, .gallery, .feature-split { padding: 70px 0; }
  .experience-featured-grid { grid-template-columns: 1fr; gap: 46px; }
  .experience-featured-media { height: 300px; }
  .dome-sunset-feature { min-height: 560px; }
  .dome-sunset-feature > img { object-position: 54% 68%; }
  .pillar-grid, .stay-grid, .exp-icon-grid, .info-grid, .amenities-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 34px 20px; }
  .intro-media .float-card { position: static; margin-top: -40px; margin-left: 16px; margin-right: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .stay-card { height: 380px; }
  .hero-actions .pill-btn { width: 100%; justify-content: center; }
}
