/* NUUNA — Release 1 skeleton
   Static, framework-free, responsive.
   Asset placeholders intentionally remain until approved photographs are inserted.
*/

:root {
  --sand: #efe4d2;
  --sand-2: #e5d4bb;
  --cream: #f8f3ea;
  --terracotta: #a95538;
  --terracotta-dark: #87422d;
  --salmon: #cf7e68;
  --brown: #34281f;
  --brown-soft: #665447;
  --mustard: #c69a3b;
  --white: #fffdf8;
  --border: rgba(52, 40, 31, .18);
  --shell: 1280px;
  --header-h: 86px;
  --section-y: clamp(5rem, 10vw, 9.5rem);
  --radius: 6px;
  --shadow: 0 12px 36px rgba(40, 30, 20, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  color: var(--brown);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); max-width: 12ch; }
h2 { font-size: clamp(2.6rem, 5.5vw, 5rem); max-width: 13ch; }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
p { max-width: 64ch; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.section { padding-block: var(--section-y); }
.section-warm { background: var(--sand); }
.section-sand { background: var(--sand-2); }
.section-dark { background: var(--brown); color: var(--white); }

.eyebrow {
  font: 700 .76rem/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow.light { color: var(--white); }

.copy-pending {
  border-left: 2px solid var(--terracotta);
  padding-left: 1rem;
  color: var(--brown-soft);
  font-style: italic;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: .7rem 1rem;
  background: var(--brown);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: var(--header-h);
  color: var(--white);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--cream) 95%, transparent);
  color: var(--brown);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-shell {
  width: min(calc(100% - 3rem), 1380px);
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  text-decoration: none;
  margin-right: auto;
}
.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  max-width: 72px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.primary-nav > a:not(.btn) {
  text-decoration: none;
  font-size: .74rem;
  letter-spacing: .11em;
  font-weight: 700;
}
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.35rem;
  border: 1px solid var(--terracotta);
  border-radius: var(--radius);
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.btn-small { min-height: 44px; padding: .65rem 1rem; }
.btn-light { background: var(--white); color: var(--brown); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--brown); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.media-slot-hero {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0 !important;
  border-radius: 0 !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34,24,17,.58), rgba(34,24,17,.16) 62%, rgba(34,24,17,.28));
}
.hero-content { position: relative; z-index: 2; padding-top: 5rem; }
.hero-logo {
  display: block;
  width: clamp(225px, 24vw, 338px);
  height: auto;
  margin-bottom: 2.2rem;
}
.hero-lead {
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.25;
  margin-bottom: .4rem;
}
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.2rem); margin-bottom: 2rem; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
}


.hero h1,
.hero .hero-lead,
.hero .hero-sub,
.hero .eyebrow,
.hero .btn {
  font-family: Helvetica, Arial, sans-serif;
}

.hero h1 {
  letter-spacing: -0.03em;
  line-height: .98;
  font-weight: 400;
}

.hero .hero-lead,
.hero .hero-sub {
  font-weight: 400;
}

.media-slot {
  appearance: none;
  border: 1px solid rgba(52,40,31,.18);
  border-radius: var(--radius);
  min-height: 360px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(169,85,56,.10), rgba(198,154,59,.12)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(52,40,31,.035) 20px 21px);
  color: var(--brown);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.media-slot::after {
  content: "ASSET " attr(data-asset);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.media-slot > span {
  font: italic clamp(2rem, 5vw, 4.5rem)/1 Georgia, serif;
  opacity: .4;
}
.hero .media-slot { color: var(--white); background: #6a5b4c; }
.hero .media-slot::after { color: var(--white); }

.media-slot-hero .asset-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.asset-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.media-slot {
  background: var(--cream);
}
.media-slot > span { display: none; }
.media-slot::after { display: none; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.portrait { min-height: 700px; }

.editorial-pillars { margin-top: 3.5rem; }
.editorial-pillars article {
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
}
.editorial-pillars h3 { margin-bottom: .7rem; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -2rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p:last-child { margin-bottom: .4rem; }
.section-heading.compact { display: block; }
.section-heading.compact .eyebrow { margin-bottom: 1rem; }
.section-heading.compact h2 { margin-bottom: 1.25rem; }

.room-story {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.room-wide { min-height: 0; }
.room-copy { padding: 2rem 0; }
.room-copy-alt { padding-left: clamp(0rem, 4vw, 4rem); }
.room-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(4rem, 8vw, 8rem);
}
.room-duo .media-slot:first-child { min-height: 0; }
.room-duo .media-slot:last-child { min-height: 0; margin-top: 5rem; }
.jicara-block {
  width: min(720px, 100%);
  margin: 5rem auto 0;
  text-align: center;
}
.jicara-block p { margin-inline: auto; }

.common-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.4rem;
}
.common-main { grid-row: 1 / 3; min-height: 0; }
.common-grid > :not(.common-main) { min-height: 0; }

.nature-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
  align-items: start;
}
.nature-grid .media-slot { min-height: 0; }
.nature-large { min-height: 0 !important; grid-row: 1 / 3; grid-column: 2; }
.nature-bottom { max-width: 80%; justify-self: end; }

.mazunte-list {
  margin: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.25);
}
.mazunte-list div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.mazunte-list strong {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}
.text-link {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .13em;
  font-weight: 800;
  text-decoration: none;
}
.light-link { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}
.gallery-grid .media-slot {
  min-height: 0;
  width: 100%;
  cursor: pointer;
  padding: 0;
}
.gallery-grid .asset-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.gallery-g1 { grid-column: span 2; }
.gallery-g8 { grid-column: span 2; }

.faq-shell { width: min(calc(100% - 3rem), 960px); }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 3rem 1.35rem 0;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: .25rem;
  top: 1.25rem;
  font-family: Inter, sans-serif;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 3rem 1.35rem 0; color: var(--brown-soft); }

.final-cta {
  background: var(--terracotta);
  color: var(--white);
  padding-block: clamp(5rem, 11vw, 10rem);
}
.final-cta-inner { text-align: center; }
.final-cta h2 { margin-inline: auto; }
.final-cta .eyebrow { margin-inline: auto; }
.social-booking { margin: 2rem auto 0; }
.social-booking a { font-weight: 800; }

.site-footer {
  background: #241b15;
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
  align-items: start;
}
.footer-logo {
  display: block;
  width: 120px;
  height: auto;
  margin-bottom: 1.25rem;
}
.footer-links { display: grid; gap: .55rem; }
.footer-links a, .link-button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.copyright { grid-column: 1 / -1; opacity: .68; margin-top: 2rem; }

.mobile-booking-bar { display: none; }

.lightbox {
  width: min(920px, calc(100% - 2rem));
  border: 0;
  border-radius: var(--radius);
  background: var(--brown);
  color: var(--white);
  box-shadow: var(--shadow);
}
.lightbox::backdrop { background: rgba(20,14,10,.82); }
.lightbox-close {
  position: absolute;
  right: 1rem;
  top: .7rem;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-content { padding: 2.5rem; }
.lightbox-image {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.18);
}
.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  opacity: .85;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: min(760px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cookie-banner p { margin-bottom: 1rem; }
.cookie-banner > div { display: flex; gap: .7rem; flex-wrap: wrap; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 920px) {
  :root { --header-h: 76px; }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-h) 0 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    background: var(--cream);
    color: var(--brown);
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a:not(.btn) {
    font-family: Georgia, serif;
    font-size: 2rem;
    letter-spacing: -.02em;
    font-weight: 400;
  }

  .split-grid,
  .section-heading,
  .room-story,
  .common-grid,
  .nature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-heading .eyebrow { margin-bottom: 0; }
  .portrait { min-height: 0; }
  .room-story .room-copy-alt { grid-row: auto; }
  .room-copy-alt { padding-left: 0; }
  .room-wide { min-height: 0; }
  .common-main { min-height: 0; grid-row: auto; }
  .nature-large { grid-column: auto; grid-row: auto; min-height: 0 !important; }
  .nature-bottom { max-width: 100%; justify-self: stretch; }
  .footer-grid { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .shell, .nav-shell { width: min(calc(100% - 2.5rem), var(--shell)); }
  body { padding-bottom: 66px; }

  .site-header.scrolled { background: rgba(248,243,234,.96); }
  .brand-logo { height: 56px; max-width: 62px; }
  .hero-logo { width: 218px; margin-bottom: 1.75rem; }
  .hero { min-height: 92svh; }
  .hero-content { padding-top: 7rem; }
  .hero-logo-placeholder { display: block; }
  .hero-sub { max-width: 28ch; }

  .section { padding-block: 5.25rem; }
  .media-slot { min-height: 0; }
  .portrait { min-height: 0; }
  .room-wide { min-height: 0; }

  .room-duo {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }
  .room-duo .media-slot:first-child,
  .room-duo .media-slot:last-child {
    min-height: 0;
    margin-top: 0;
  }

  .common-grid { grid-template-rows: auto; }
  .common-main, .common-grid > :not(.common-main) { min-height: 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-g1 { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-g8 { grid-column: 1 / -1; }

  .mazunte-list div { align-items: baseline; }
  .mazunte-list strong { text-align: right; font-size: .67rem; }

  .mobile-booking-bar {
    position: fixed;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    height: 52px;
    border-radius: var(--radius);
    background: var(--terracotta);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .1em;
    box-shadow: var(--shadow);
  }
  .mobile-booking-bar.is-hidden { display: none; }

  .cookie-banner { bottom: 4.8rem; }
  .cookie-banner .btn { width: 100%; }

  .lightbox-content { padding: 2rem 1rem 1rem; }
  .lightbox-image { max-height: 62vh; }
}

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


/* Iteration v6: avoid duplicate branding in the first screen */
.site-header.at-top .brand {
  opacity: 0;
  pointer-events: none;
}

.site-header.at-top .primary-nav {
  margin-left: auto;
}

@media (max-width: 920px) {
  .site-header.at-top .brand {
    opacity: 0;
    pointer-events: none;
  }
}


/* =========================================================
   V7 — Fine tuning: Hero / Experiencia / Habitaciones
   ========================================================= */

:root {
  --shell: 1220px;
  --section-y: clamp(5.5rem, 9vw, 8.5rem);
}

/* HERO: preserve the approved full-bleed direction but refine rhythm */
.hero {
  min-height: 100svh;
  align-items: end;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(29,20,14,.64) 0%, rgba(29,20,14,.38) 35%, rgba(29,20,14,.08) 68%),
    linear-gradient(0deg, rgba(29,20,14,.34) 0%, rgba(29,20,14,0) 44%);
}
.hero-content {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(6.5rem, 12vh, 9.5rem);
}
.hero-logo {
  width: clamp(132px, 12vw, 176px);
  margin-bottom: 1.55rem;
}
.hero .eyebrow {
  margin-bottom: 1rem;
  font-size: .7rem;
  letter-spacing: .22em;
}
.hero h1 {
  font-size: clamp(3.4rem, 6.2vw, 5.9rem);
  line-height: .94;
  max-width: 9.5ch;
  margin-bottom: 1.25rem;
}
.hero-lead {
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  max-width: 28ch;
  margin-bottom: .55rem;
}
.hero-sub {
  max-width: 34ch;
  margin-bottom: 2.1rem;
  opacity: .92;
}
.scroll-cue {
  bottom: 2rem;
  opacity: .75;
}

/* EXPERIENCIA: E-01 is panoramic, so treat it as panoramic */
.experience-section {
  overflow: hidden;
}
.experience-section .eyebrow,
.experience-section h2,
.experience-section h3,
.experience-section p,
.experience-section .pillar-number {
  font-family: Helvetica, Arial, sans-serif;
}
.experience-top {
  display: grid;
  grid-template-columns: minmax(250px, .54fr) minmax(0, 1.46fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}
.experience-intro {
  padding-block: 1rem;
}
.experience-intro .eyebrow {
  margin-bottom: 1rem;
}
.experience-intro h2 {
  max-width: 8ch;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.experience-media {
  margin: 0;
  border: 0;
  overflow: hidden;
}
.experience-media .asset-image {
  width: 100%;
  height: auto;
  display: block;
}
.experience-pillars {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  border-top: 1px solid var(--border);
}
.experience-pillars article {
  position: relative;
  border-top: 0;
  padding: 1.7rem 0 0;
}
.pillar-number {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--terracotta);
}
.experience-pillars h3 {
  margin-bottom: .85rem;
  font-weight: 700;
}
.experience-pillars p {
  max-width: 32ch;
  line-height: 1.55;
}

/* ROOMS: image-specific composition instead of generic cards */
.rooms-section {
  background: var(--cream);
}
.rooms-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(4.5rem, 8vw, 7.5rem);
}
.rooms-heading .eyebrow {
  margin-bottom: 1.25rem;
}
.rooms-heading h2 {
  margin-bottom: 0;
  max-width: 9ch;
}
.rooms-intro {
  margin: 0 0 .5rem;
  max-width: 46ch;
  color: var(--brown-soft);
}

.room-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(290px, .62fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(6rem, 10vw, 10rem);
}
.room-feature-reverse {
  grid-template-columns: minmax(290px, .62fr) minmax(0, 1.38fr);
}
.room-image {
  margin: 0;
  border: 0;
  overflow: hidden;
}
.room-image .asset-image {
  width: 100%;
  height: auto;
}
.room-feature-copy {
  max-width: 360px;
}
.room-feature-copy .eyebrow {
  margin-bottom: 1.15rem;
}
.room-feature-copy h3 {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  max-width: 8ch;
  margin-bottom: 1.3rem;
}
.room-feature-copy p:last-child {
  color: var(--brown-soft);
}

.room-details {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, .52fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 1rem;
}
.room-terrace-image,
.jicara-image {
  margin: 0;
  border: 0;
  overflow: hidden;
}
.room-terrace-image .asset-image,
.jicara-image .asset-image {
  width: 100%;
  height: auto;
}
.jicara-story {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: clamp(1.5rem, 5vw, 5rem);
}
.jicara-image {
  width: min(100%, 390px);
}
.jicara-copy {
  max-width: 370px;
}
.jicara-copy .eyebrow {
  margin-bottom: 1rem;
}
.jicara-copy h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 9ch;
  margin-bottom: 1.25rem;
}
.rooms-cta {
  display: flex;
  justify-content: center;
  padding-top: clamp(4rem, 7vw, 6.5rem);
}

/* Pending copy should not dominate the visual review */
.experience-section .copy-pending,
.rooms-section .copy-pending {
  border-left: 0;
  padding-left: 0;
  font-style: normal;
  opacity: .72;
  font-size: .92rem;
}

@media (max-width: 920px) {
  .hero-content {
    padding-bottom: 7rem;
  }
  .experience-top,
  .rooms-heading,
  .room-feature,
  .room-feature-reverse,
  .room-details {
    grid-template-columns: 1fr;
  }
  .experience-intro h2,
  .rooms-heading h2 {
    max-width: 11ch;
  }
  .experience-media {
    order: 2;
  }
  .experience-pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .experience-pillars article {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
  }
  .pillar-number {
    margin-bottom: 1rem;
  }
  .room-feature-copy {
    max-width: 520px;
  }
  .room-feature-reverse .room-feature-copy {
    order: 2;
  }
  .room-feature-reverse .room-image {
    order: 1;
  }
  .room-details {
    gap: 3rem;
  }
  .jicara-story {
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(210px, .7fr) 1fr;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 94svh;
  }
  .hero-content {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
  .hero-logo {
    width: 118px;
    margin-bottom: 1.35rem;
  }
  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.3rem);
    max-width: 8.5ch;
  }
  .hero-lead {
    font-size: 1.25rem;
    max-width: 24ch;
  }
  .hero-sub {
    font-size: .98rem;
    max-width: 27ch;
  }

  .experience-top {
    gap: 2.5rem;
  }
  .experience-intro {
    padding: 0;
  }
  .experience-pillars {
    margin-top: 3rem;
  }

  .rooms-heading {
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .room-feature {
    gap: 2.2rem;
    margin-bottom: 5.5rem;
  }
  .room-feature-copy h3,
  .jicara-copy h3 {
    max-width: 11ch;
  }
  .room-details {
    gap: 3.25rem;
  }
  .jicara-story {
    display: flex;
    gap: 2rem;
  }
  .jicara-image {
    width: min(78%, 330px);
    margin-inline: auto;
  }
  .jicara-copy {
    margin-inline: auto;
  }
}



@media (max-width: 920px) {
  .experience-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .experience-intro {
    padding-block: 0;
  }
  .experience-intro h2 {
    max-width: 10ch;
  }
  .experience-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .experience-pillars article {
    padding-top: 1.3rem;
    border-top: 1px solid var(--border);
  }
}



/* Iteración v13 — Experiencia más prominente */
.experience-section {
  padding-top: 1rem;
  padding-bottom: var(--section-y);
}

.experience-top {
  display: grid;
  grid-template-columns: minmax(250px, .34fr) minmax(0, 1.66fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
  min-height: clamp(420px, 44vw, 620px);
}

.experience-intro {
  padding-block: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-intro .eyebrow {
  margin-bottom: .85rem;
}

.experience-intro h2 {
  max-width: 8ch;
}

.experience-media {
  margin: 0;
  border: 0;
  overflow: hidden;
  height: 100%;
  align-self: stretch;
}

.experience-media .asset-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.experience-pillars {
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

@media (max-width: 920px) {
  .experience-section {
    padding-top: .75rem;
  }

  .experience-top {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1rem;
  }

  .experience-intro {
    order: 1;
  }

  .experience-media {
    order: 0;
    height: auto;
  }

  .experience-media .asset-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .experience-pillars {
    margin-top: 2rem;
  }
}


/* Iteración v14 — invertir composición de Experiencia */
.experience-top {
  grid-template-columns: minmax(0, 1.66fr) minmax(250px, .34fr);
}

.experience-intro {
  text-align: left;
  align-items: flex-start;
}

@media (max-width: 920px) {
  .experience-top {
    grid-template-columns: 1fr;
  }

  .experience-media {
    order: 0;
  }

  .experience-intro {
    order: 1;
  }
}



/* Iteración v15 — Experiencia full-width image with top-left text */
.experience-section {
  padding-top: 1rem;
}

.experience-top {
  display: block;
  min-height: 0;
}

.experience-intro {
  padding-block: 0 1rem;
  text-align: left;
  align-items: flex-start;
}

.experience-intro .eyebrow {
  margin-bottom: .65rem;
}

.experience-intro h2 {
  max-width: none;
  margin-bottom: 0;
}

.experience-media-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  overflow: hidden;
}

.experience-media-bleed .asset-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.experience-pillars {
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
}

@media (max-width: 920px) {
  .experience-section {
    padding-top: .75rem;
  }

  .experience-intro {
    padding-bottom: .85rem;
  }

  .experience-media-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .experience-media-bleed .asset-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}



/* Iteración v18 — Habitaciones: Helvetica + simplificación + Jícara alineada con Concepto abierto */
.rooms-section .eyebrow,
.rooms-section h2,
.rooms-section h3,
.rooms-section p,
.rooms-section .btn {
  font-family: Helvetica, Arial, sans-serif;
}

.rooms-heading h2,
.room-feature-copy h3 {
  font-weight: 400;
  letter-spacing: -0.03em;
}

.room-feature-jicara {
  /* Uses exactly the same grid component as room-feature-primary */
  grid-template-columns: minmax(0, 1.38fr) minmax(290px, .62fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.room-feature-jicara .room-image,
.room-feature-jicara .room-feature-copy {
  align-self: center;
}

@media (max-width: 920px) {
  .room-feature-jicara {
    grid-template-columns: 1fr;
  }
}



/* Iteración v20 — ampliar texto introductorio de Habitaciones */
.rooms-heading {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.rooms-intro {
  max-width: 68ch;
  width: 100%;
}



/* Iteración v23 — Restaurar Experiencia al formato v14 (image left / text right) */
.experience-section {
  overflow: hidden;
  padding-top: var(--section-y);
}

.experience-section .eyebrow,
.experience-section h2,
.experience-section h3,
.experience-section p,
.experience-section .pillar-number {
  font-family: Helvetica, Arial, sans-serif;
}

.experience-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1.66fr) minmax(250px, .34fr) !important;
  gap: clamp(2rem, 4vw, 4.5rem) !important;
  align-items: center !important;
  min-height: 0 !important;
}

.experience-intro {
  text-align: left !important;
  align-items: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-block: 1rem !important;
}

.experience-intro .eyebrow {
  margin-bottom: 1rem !important;
}

.experience-intro h2 {
  max-width: 8ch !important;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
}

.experience-media {
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  height: auto !important;
  align-self: stretch !important;
}

.experience-media .asset-image {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.experience-pillars {
  margin-top: clamp(3rem, 5vw, 4.5rem) !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(1.6rem, 3vw, 3rem) !important;
  border-top: 1px solid var(--border) !important;
}

.experience-pillars article {
  position: relative !important;
  border-top: 0 !important;
  padding: 1.7rem 0 0 !important;
}

.pillar-number {
  display: inline-block !important;
  margin-bottom: 1.4rem !important;
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .16em !important;
  color: var(--terracotta) !important;
}

.experience-pillars h3 {
  margin-bottom: .85rem !important;
  font-weight: 700 !important;
}

.experience-pillars p {
  max-width: 32ch !important;
  line-height: 1.55 !important;
}

@media (max-width: 920px) {
  .experience-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .experience-intro {
    order: 1 !important;
    padding-block: 0 !important;
  }

  .experience-media {
    order: 0 !important;
    height: auto !important;
  }

  .experience-pillars {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-top: 2.5rem !important;
  }

  .experience-pillars article {
    padding-top: 1.3rem !important;
    border-top: 1px solid var(--border) !important;
  }
}



/* Iteración v24 — Espacios comunes */
#espacios .eyebrow,
#espacios h2,
#espacios p {
  font-family: Helvetica, Arial, sans-serif;
}

#espacios h2 {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

#espacios .section-heading.compact p {
  max-width: 62ch;
  line-height: 1.55;
}

#espacios .common-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

#espacios .common-main {
  grid-row: 1 / 3;
  min-height: 0;
}

#espacios .common-grid .media-slot {
  min-height: 0;
}

#espacios .common-grid .asset-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 920px) {
  #espacios .common-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  #espacios .common-main {
    grid-row: auto;
  }

  #espacios .common-grid .asset-image {
    height: auto;
    object-fit: contain;
  }
}



/* Iteración v25 — cabecera Espacios comunes en dos columnas */
#espacios .section-heading.compact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  column-gap: clamp(2.5rem, 6vw, 6rem);
  row-gap: 1rem;
  align-items: start;
}

#espacios .section-heading.compact .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 .45rem 0;
}

#espacios .section-heading.compact h2 {
  grid-column: 1;
  margin: 0;
  align-self: start;
}

#espacios .section-heading.compact > p:last-child {
  grid-column: 2;
  margin: 0;
  align-self: start;
  max-width: 62ch;
}

@media (max-width: 920px) {
  #espacios .section-heading.compact {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  #espacios .section-heading.compact .eyebrow,
  #espacios .section-heading.compact h2,
  #espacios .section-heading.compact > p:last-child {
    grid-column: 1;
  }
}



/* Iteración v26 — Tipografía global Helvetica */
html,
body,
button,
input,
select,
textarea,
a,
p,
span,
small,
strong,
em,
label,
summary,
nav,
header,
footer,
section,
article,
div,
h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.btn,
.primary-nav,
.pillar-number,
.text-link,
.footer-links,
.link-button,
.faq-list summary {
  font-family: Helvetica, Arial, sans-serif !important;
}

/* Preserve established hierarchy; only family changes globally. */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
}

.brand-logo,
.hero-logo,
.footer-logo {
  font-family: initial !important;
}



/* Iteración v27 — Naturaleza y detalles */
#naturaleza .section-heading.compact p:last-child {
  max-width: 56ch;
}

.nature-grid-masonry {
  column-count: 3;
  column-gap: 1.4rem;
  margin-top: 2.25rem;
}

.nature-grid-masonry .media-slot {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 1.4rem 0;
  min-height: 0;
}

.nature-grid-masonry .asset-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 920px) {
  .nature-grid-masonry {
    column-count: 2;
    column-gap: 1rem;
  }

  .nature-grid-masonry .media-slot {
    margin-bottom: 1rem;
  }
}

@media (max-width: 620px) {
  .nature-grid-masonry {
    column-count: 1;
  }
}



/* Iteración v28 — Naturaleza en composición tipo ladrillo */
.nature-grid-bricks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
  margin-top: 2.25rem;
}

.nature-grid-bricks .media-slot {
  min-height: 0;
  margin: 0;
}

.nature-grid-bricks .asset-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nature-brick-wide {
  grid-column: span 2;
}

.nature-brick-single {
  grid-column: span 1;
}

@media (max-width: 920px) {
  .nature-grid-bricks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .nature-brick-wide,
  .nature-brick-single {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .nature-grid-bricks {
    grid-template-columns: 1fr;
  }
}



/* Iteración v29 — Naturaleza: muro de ladrillos sin huecos */
.nature-wall {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.25rem;
}

.nature-wall-row {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
  width: 100%;
}

/* Ratios chosen from the actual source-image aspect ratios so each row
   reaches approximately the same image height without cropping. */
.nature-wall-row-1 {
  grid-template-columns: 31.4fr 68.6fr;
}

.nature-wall-row-2 {
  grid-template-columns: 46.2fr 53.8fr;
}

.nature-wall-row-3 {
  grid-template-columns: 18.6fr 41.3fr 40.1fr;
}

.nature-wall .media-slot {
  min-height: 0;
  margin: 0;
  width: 100%;
  align-self: stretch;
}

.nature-wall .asset-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 920px) {
  .nature-wall,
  .nature-wall-row {
    gap: 1rem;
  }

  .nature-wall-row-1,
  .nature-wall-row-2 {
    grid-template-columns: 1fr 1fr;
  }

  .nature-wall-row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .nature-wall-row-3 .media-slot:first-child {
    grid-column: 1 / -1;
    width: min(54%, 440px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .nature-wall-row,
  .nature-wall-row-1,
  .nature-wall-row-2,
  .nature-wall-row-3 {
    grid-template-columns: 1fr;
  }

  .nature-wall-row-3 .media-slot:first-child {
    grid-column: auto;
    width: 100%;
  }
}



/* Iteración v30 — Mazunte editorial */
#mazunte {
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.mazunte-editorial {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.mazunte-intro h2 {
  margin: .4rem 0 1.6rem;
  max-width: 10ch;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.mazunte-copy {
  max-width: 48ch;
  color: rgba(248, 243, 234, .78);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.light-link {
  color: var(--sand);
  border-bottom-color: rgba(239, 228, 210, .5);
}

.mazunte-places {
  border-top: 1px solid rgba(255,255,255,.28);
}

.mazunte-place {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.mazunte-place span {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.25;
}

.mazunte-place strong {
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .06em;
  white-space: nowrap;
  opacity: .78;
}

.mazunte-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: baseline;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  color: rgba(248,243,234,.58);
}

.mazunte-note span {
  font-size: .68rem;
  letter-spacing: .12em;
  white-space: nowrap;
}

.mazunte-note p {
  max-width: 56ch;
  font-size: .78rem;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .mazunte-editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mazunte-intro h2 {
    max-width: 14ch;
  }

  .mazunte-note {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
}

@media (max-width: 620px) {
  .mazunte-place {
    gap: 1rem;
    padding: 1rem 0;
  }

  .mazunte-place span {
    font-size: 1rem;
  }

  .mazunte-place strong {
    font-size: .78rem;
  }
}



/* Iteración v31 — Mapa interactivo de Mazunte */
.mazunte-heading {
  margin-bottom: 2.25rem;
}

.mazunte-heading h2 {
  max-width: 12ch;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.mazunte-heading > p:last-child {
  max-width: 54ch;
  color: rgba(248, 243, 234, .8);
  line-height: 1.6;
}

.mazunte-map-stage {
  display: grid;
  gap: 1.2rem;
}

.mazunte-map-frame {
  position: relative;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(239, 228, 210, .08);
}

.mazunte-map {
  position: relative;
  aspect-ratio: 12 / 7.2;
  min-height: 520px;
  overflow: hidden;
  background: #efe4d2;
}

.mazunte-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nuuna-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  z-index: 3;
}

.nuuna-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #34281f;
  box-shadow: 0 0 0 6px rgba(52,40,31,.14);
}

.nuuna-pin-label {
  font-size: .82rem;
  letter-spacing: .14em;
  color: #34281f;
  padding: .48rem .7rem;
  background: rgba(248, 243, 234, .92);
}

.mazunte-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
  padding: 0;
}

.mazunte-marker span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #c87d5a;
  box-shadow: 0 0 0 7px rgba(200,125,90,.18);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.mazunte-marker:hover span,
.mazunte-marker:focus-visible span,
.mazunte-marker.is-active span {
  background: #34281f;
  transform: scale(1.1);
  box-shadow: 0 0 0 9px rgba(52,40,31,.16);
}

.mazunte-popover {
  position: absolute;
  width: 250px;
  background: rgba(248,243,234,.98);
  border: 1px solid rgba(52,40,31,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  z-index: 6;
  overflow: hidden;
  transform: translate(-50%, calc(-100% - 20px));
}

.mazunte-popover[hidden] {
  display: none;
}

.mazunte-popover-image {
  display: block;
  width: 100%;
  height: 146px;
  object-fit: cover;
}

.mazunte-popover-copy {
  padding: .9rem 1rem 1rem;
}

.mazunte-popover-title {
  color: #34281f;
  margin: 0 0 .25rem 0;
  font-size: 1rem;
  line-height: 1.2;
}

.mazunte-popover-time {
  color: #6b4f3b;
  margin: 0;
  font-size: .82rem;
  letter-spacing: .04em;
}

.mazunte-map-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
}

.mazunte-map-instruction {
  color: rgba(248, 243, 234, .66);
  font-size: .88rem;
  line-height: 1.45;
  max-width: 58ch;
  margin: 0;
}

@media (max-width: 920px) {
  .mazunte-map {
    min-height: 440px;
  }

  .mazunte-map-footer {
    display: grid;
    gap: .7rem;
  }

  .mazunte-popover {
    left: 1rem !important;
    right: 1rem;
    top: auto !important;
    bottom: 1rem;
    width: auto;
    transform: none !important;
  }

  .nuuna-pin-label {
    font-size: .72rem;
  }
}

@media (max-width: 620px) {
  .mazunte-map {
    min-height: 380px;
  }

  .mazunte-marker {
    width: 22px;
    height: 22px;
  }

  .mazunte-popover-image {
    height: 118px;
  }
}


/* Iteración v32 — Mazunte map refined */
.mazunte-heading {
  margin-bottom: 2.25rem;
}

.mazunte-heading h2 {
  max-width: 12ch;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.mazunte-heading > p:last-child {
  max-width: 54ch;
  color: rgba(248, 243, 234, .8);
  line-height: 1.6;
}

.mazunte-map-stage {
  display: grid;
  gap: 1rem;
}

.mazunte-map-frame {
  position: relative;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(239, 228, 210, .08);
}

.mazunte-map {
  position: relative;
  aspect-ratio: 12 / 7.6;
  min-height: 540px;
  overflow: hidden;
  background: #efe4d2;
}

.mazunte-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nuuna-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  z-index: 3;
}

.nuuna-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #34281f;
  box-shadow: 0 0 0 6px rgba(52,40,31,.14);
}

.nuuna-pin-label {
  font-size: .82rem;
  letter-spacing: .14em;
  color: #34281f;
  padding: .48rem .7rem;
  background: rgba(248, 243, 234, .92);
}

.mazunte-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
  padding: 0;
}

.mazunte-marker span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #c87d5a;
  box-shadow: 0 0 0 7px rgba(200,125,90,.18);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.mazunte-marker:hover span,
.mazunte-marker:focus-visible span,
.mazunte-marker.is-active span {
  background: #34281f;
  transform: scale(1.08);
  box-shadow: 0 0 0 9px rgba(52,40,31,.18);
}

.mazunte-popover {
  position: absolute;
  width: 252px;
  background: rgba(248,243,234,.99);
  border: 1px solid rgba(52,40,31,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}

.mazunte-popover[hidden] {
  display: none !important;
}

.mazunte-popover-image {
  display: block;
  width: 100%;
  height: 146px;
  object-fit: cover;
}

.mazunte-popover-copy {
  padding: .9rem 1rem 1rem;
}

.mazunte-popover-title {
  color: #34281f;
  margin: 0 0 .25rem 0;
  font-size: 1rem;
  line-height: 1.2;
}

.mazunte-popover-time {
  color: #6b4f3b;
  margin: 0;
  font-size: .82rem;
  letter-spacing: .04em;
}

.mazunte-map-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
}

.mazunte-map-instruction {
  color: rgba(248, 243, 234, .66);
  font-size: .88rem;
  line-height: 1.45;
  max-width: 64ch;
  margin: 0;
}

@media (max-width: 920px) {
  .mazunte-map {
    min-height: 460px;
  }

  .mazunte-map-footer {
    display: grid;
    gap: .7rem;
  }

  .mazunte-popover {
    width: min(270px, calc(100% - 2rem));
  }
}

@media (max-width: 620px) {
  .mazunte-map {
    min-height: 390px;
  }

  .mazunte-marker {
    width: 22px;
    height: 22px;
  }

  .mazunte-popover {
    left: 1rem !important;
    right: 1rem;
    top: auto !important;
    bottom: 1rem;
    width: auto;
    transform: none !important;
  }

  .mazunte-popover-image {
    height: 118px;
  }
}


/* Iteración v33 — Mapa original de Mazunte */
.mazunte-map-original {
  position: relative;
  aspect-ratio: 1554 / 992;
  min-height: 0;
  overflow: hidden;
  background: #4d2107;
}

.mazunte-map-background {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mazunte-map-original .mazunte-marker {
  z-index: 5;
}

.mazunte-map-original .nuuna-pin {
  z-index: 6;
}

.mazunte-map-original .mazunte-popover {
  z-index: 9;
}

@media (max-width: 620px) {
  .mazunte-map-original {
    aspect-ratio: 1554 / 992;
  }
}


/* Iteración v34 — MapaNuuna aprobado */
.mazunte-map-original {
  aspect-ratio: 705 / 450;
  background: #4b2107;
}

.mazunte-map-background {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Nuuna remains visible as the fixed reference point over the approved map. */
.mazunte-map-original .nuuna-pin-label {
  background: rgba(248,243,234,.95);
}


/* Iteración v35 — Mapa estático sin hover/tap */
.mazunte-marker-static {
  pointer-events: none;
  cursor: default;
}

.mazunte-marker-static span {
  background: #34281f;
  box-shadow: 0 0 0 7px rgba(52,40,31,.18);
}

.mazunte-marker-static:hover span,
.mazunte-marker-static:focus-visible span,
.mazunte-marker-static.is-active span {
  background: #34281f;
  transform: none;
  box-shadow: 0 0 0 7px rgba(52,40,31,.18);
}

.mazunte-popover {
  display: none !important;
}


/* Iteración v36 — Mazunte con imagen única */
.mazunte-heading {
  margin-bottom: 2.25rem;
}

.mazunte-heading h2 {
  max-width: 12ch;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.mazunte-map-single {
  margin: 0;
  display: block;
}

.mazunte-map-single .mazunte-map-background {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* Iteración v39 — Galería en carrete continuo robusto */
.gallery-section {
  overflow: hidden;
}

.gallery-section .section-heading {
  margin-bottom: 2.2rem;
}

.gallery-reel {
  width: 100%;
  overflow: hidden;
}

.gallery-reel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: nuuna-gallery-reel 105s linear infinite;
}

.gallery-reel-sequence {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: none;
  padding-right: 1.25rem;
}

.gallery-reel-item {
  flex: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  height: clamp(300px, 32vw, 430px);
}

.gallery-reel-item img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.gallery-reel-item:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 5px;
}

@keyframes nuuna-gallery-reel {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 760px) {
  .gallery-reel-sequence {
    gap: .9rem;
    padding-right: .9rem;
  }

  .gallery-reel-item {
    height: clamp(230px, 68vw, 310px);
  }

  .gallery-reel-track {
    animation-duration: 90s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-reel {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-reel::-webkit-scrollbar {
    display: none;
  }

  .gallery-reel-track {
    animation: none;
  }
}


/* Iteración v40 — Galería: G-07 corregida + tamaño 50% menor */
.gallery-reel-item {
  height: clamp(150px, 16vw, 215px) !important;
}

.gallery-reel-sequence {
  gap: .85rem !important;
  padding-right: .85rem !important;
}

@media (max-width: 760px) {
  .gallery-reel-item {
    height: clamp(115px, 34vw, 155px) !important;
  }

  .gallery-reel-sequence {
    gap: .65rem !important;
    padding-right: .65rem !important;
  }
}


/* Iteración v41 — Galería ampliada a 30 fotografías */
.gallery-reel-track {
  animation-duration: 300s !important;
}

@media (max-width: 760px) {
  .gallery-reel-track {
    animation-duration: 270s !important;
  }
}


/* Iteración v44 — FAQ cerrado */
.faq-section {
  background: var(--cream);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 7rem;
  margin: 0;
}

.faq-heading h2 {
  margin-top: .4rem;
  max-width: 9ch;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.45rem 3rem 1.45rem 0;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.3;
  font-weight: 400;
  color: var(--brown);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: .1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--terracotta);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 3rem 1.5rem 0;
  max-width: 68ch;
  color: var(--brown-soft);
  line-height: 1.65;
}

.faq-list details p strong {
  font-weight: 500;
  color: var(--brown);
}

@media (max-width: 920px) {
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .faq-list summary {
    padding: 1.25rem 2.5rem 1.25rem 0;
    font-size: 1rem;
  }

  .faq-list details p {
    padding-right: 1.25rem;
  }
}


/* Iteración v45 — CTA final + Footer cerrados */
.final-cta {
  background: var(--terracotta);
  color: var(--cream);
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.final-cta-inner {
  max-width: 980px;
}

.final-cta .eyebrow {
  margin-bottom: 1.2rem;
}

.final-cta h2 {
  margin: 0;
  max-width: 10ch;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -0.04em;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.final-cta-actions {
  margin-top: clamp(2rem, 4vw, 3.2rem);
}

.final-cta-direct {
  margin: 1.6rem 0 0;
  color: rgba(248,243,234,.78);
  font-size: .95rem;
  line-height: 1.5;
}

.final-cta-direct a {
  color: var(--cream);
  border-bottom: 1px solid rgba(248,243,234,.5);
}

.site-footer {
  background: var(--brown);
  color: var(--sand);
  padding: 3.2rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  width: min(180px, 70%);
  height: auto;
}

.footer-label {
  margin: 0 0 .65rem;
  font-size: .68rem;
  letter-spacing: .14em;
  color: rgba(239,228,210,.62);
}

.footer-contact,
.footer-social,
.footer-legal {
  display: grid;
  gap: .55rem;
  align-content: start;
}

.site-footer a,
.site-footer .link-button,
.site-footer span {
  color: var(--sand);
  font-size: .88rem;
  line-height: 1.4;
}

.site-footer a {
  width: fit-content;
}

.site-footer a:hover,
.site-footer .link-button:hover {
  color: var(--cream);
}

.footer-legal {
  justify-items: start;
}

.footer-legal .link-button {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
}

.footer-legal span {
  margin-top: .55rem;
  color: rgba(239,228,210,.58);
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
}

@media (max-width: 620px) {
  .final-cta {
    padding: 4.8rem 0 5.5rem;
  }

  .final-cta h2 {
    max-width: 11ch;
  }

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

  .footer-logo {
    width: 150px;
  }
}


/* Iteración v48 — Aviso de Privacidad */
.privacy-page {
  background: var(--cream);
  color: var(--brown);
}

.privacy-header {
  border-bottom: 1px solid var(--border);
}

.privacy-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.privacy-logo {
  width: 132px;
  height: auto;
  display: block;
}

.privacy-back {
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--brown);
}

.privacy-main {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.privacy-content {
  max-width: 900px;
}

.privacy-title {
  margin-bottom: 4rem;
}

.privacy-title h1 {
  margin: .55rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -0.04em;
  color: var(--brown);
}

.privacy-updated {
  color: var(--brown-soft);
  font-size: .9rem;
}

.privacy-content section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.privacy-content section:last-of-type {
  border-bottom: 1px solid var(--border);
}

.privacy-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brown);
}

.privacy-content p,
.privacy-content li {
  color: var(--brown-soft);
  line-height: 1.7;
}

.privacy-content p {
  margin: .75rem 0;
}

.privacy-content ul {
  margin: .9rem 0 1.2rem;
  padding-left: 1.25rem;
}

.privacy-content li + li {
  margin-top: .35rem;
}

.privacy-content strong {
  color: var(--brown);
  font-weight: 500;
}

.privacy-content a {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(169,85,56,.35);
}

.privacy-return {
  margin-top: 3rem !important;
}

@media (max-width: 620px) {
  .privacy-header-inner {
    min-height: 76px;
  }

  .privacy-logo {
    width: 110px;
  }

  .privacy-back {
    font-size: .64rem;
  }

  .privacy-title {
    margin-bottom: 2.8rem;
  }
}


/* Iteración v50 — QA responsive */
@media (max-width: 920px) {
  /* Allow the mobile/tablet menu to remain usable on short screens. */
  .primary-nav {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  /* The menu already contains its own Booking CTA, so avoid a duplicate
     sticky CTA covering the open navigation. */
  body.menu-open .mobile-booking-bar {
    display: none;
  }

  /* Prevent long footer/legal strings from forcing horizontal overflow. */
  .site-footer a,
  .site-footer button,
  .privacy-content a {
    overflow-wrap: anywhere;
  }

  /* Keep cookie actions and mobile CTA comfortably tappable. */
  .cookie-banner .btn,
  .mobile-booking-bar {
    min-height: 48px;
  }
}
