:root {
  --ink: #1d1b17;
  --paper: #f5efe5;
  --paper-2: #ebe1d1;
  --muted: #756c60;
  --deep: #1f2a24;
  --deep-2: #2c392f;
  --gold: #b89058;
  --line: rgba(29, 27, 23, .14);
  --white: #fffaf1;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(22, 20, 16, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.announcement {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 18px;
  background: var(--deep);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.announcement span:not(:last-child)::after { content: ""; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 60px);
  background: rgba(245, 239, 229, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(29,27,23,.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}
.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: .01em;
}
.main-nav { justify-self: center; display: flex; gap: 28px; font-size: 14px; }
.main-nav a { color: rgba(29,27,23,.72); transition: color .2s ease; }
.main-nav a:hover { color: var(--ink); }
.header-cta {
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.menu-toggle { display: none; background: none; border: 0; width: 38px; height: 38px; }
.menu-toggle span { display: block; height: 1px; background: var(--ink); margin: 9px 0; }
.header-right { display: flex; align-items: center; gap: 14px; justify-self: end; }
.lang-select { display: inline-flex; }
.lang-select select {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
}
.lang-select select:hover { border-color: var(--ink); }
.lang-select select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

section { padding: clamp(70px, 9vw, 130px) clamp(22px, 5vw, 80px); }
.section-dark { background: var(--deep); color: var(--paper); }
.section-light { background: var(--paper); }
.section-muted { background: var(--paper-2); }

.hero {
  position: relative;
  min-height: 810px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(245,239,229,.16);
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-content { max-width: 650px; position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3, blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .98;
  margin: 0;
}
h1 { font-size: clamp(58px, 8vw, 118px); letter-spacing: -.055em; }
h2 { font-size: clamp(42px, 5.8vw, 82px); letter-spacing: -.04em; }
h3 { font-size: 34px; letter-spacing: -.025em; }
.lead {
  margin: 28px 0 34px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
  color: rgba(245,239,229,.78);
}
.hero-actions, .final-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn, .booking-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover, .booking-card button:hover { transform: translateY(-2px); }
.btn-primary, .booking-card button { background: var(--gold); color: #17130d; border: 1px solid var(--gold); }
.btn-ghost { border: 1px solid rgba(245,239,229,.45); color: var(--paper); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); }

.booking-card {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  z-index: 3;
  width: min(1120px, calc(100% - 46px));
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.booking-card label { display: grid; gap: 7px; padding: 6px 18px; border-right: 1px solid var(--line); }
.booking-card label span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.booking-card input, .booking-card select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: 0;
}
.booking-card button { border-radius: 18px; border: 0; cursor: pointer; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(22px, 5vw, 80px) 70px;
  background: var(--deep);
  color: var(--paper);
}
.stats article {
  padding: 34px;
  border: 1px solid rgba(245,239,229,.14);
  min-height: 150px;
}
.stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
}
.stats span { color: rgba(245,239,229,.70); }

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}
.intro-text { font-size: 18px; line-height: 1.9; color: var(--muted); }
.intro-text p:first-child { margin-top: 0; }

.section-heading { max-width: 900px; margin: 0 auto 56px; text-align: center; }
.section-heading p:not(.eyebrow) { max-width: 680px; margin: 22px auto 0; color: var(--muted); line-height: 1.8; }
.section-dark .section-heading p:not(.eyebrow) { color: rgba(245,239,229,.70); }

.rooms { background: var(--paper); }
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.room-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(30, 24, 17, .08);
}
.room-card-featured { transform: translateY(-22px); }
.room-card img { height: 330px; width: 100%; object-fit: cover; }
.room-body { padding: 30px; }
.room-kicker { margin: 0 0 10px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.room-body p { color: var(--muted); line-height: 1.7; }
.room-body ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 8px; }
.room-body li { position: relative; padding-left: 22px; color: rgba(29,27,23,.75); }
.room-body li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.room-body a { display: inline-flex; color: var(--ink); border-bottom: 1px solid var(--ink); font-weight: 700; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(29,27,23,.13);
  border: 1px solid rgba(29,27,23,.13);
}
.amenities-grid article {
  background: var(--paper-2);
  padding: clamp(28px, 4vw, 54px);
  min-height: 260px;
}
.amenities-grid span { display: block; color: var(--gold); font-weight: 800; margin-bottom: 36px; }
.amenities-grid p { color: var(--muted); line-height: 1.8; }

.experience {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
  background: var(--paper);
}
.experience-image img { border-radius: var(--radius); min-height: 620px; object-fit: cover; box-shadow: var(--shadow); }
.experience-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.85; font-size: 18px; }
.feature-list { display: grid; gap: 18px; margin-top: 34px; }
.feature-list div { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.feature-list strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; }
.feature-list span { color: var(--muted); }

.gallery { overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 20px;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

.reviews {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}
.quote span { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; }
blockquote { margin: 22px 0; font-size: clamp(38px, 5vw, 74px); }
.quote p { color: var(--muted); }
.reviews-list { display: grid; gap: 16px; }
.reviews-list div { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.reviews-list strong { display: block; font-size: 24px; margin-bottom: 4px; }
.reviews-list span { color: var(--muted); }

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  background: var(--paper-2);
}
.final-cta p:not(.eyebrow) { color: var(--muted); max-width: 680px; line-height: 1.8; }

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr .6fr .8fr;
  gap: 40px;
  padding: 58px clamp(22px, 5vw, 80px);
  background: #171a15;
  color: var(--paper);
}
.site-footer p { color: rgba(245,239,229,.68); max-width: 380px; line-height: 1.8; }
.site-footer h4 { margin: 0 0 16px; }
.site-footer a:not(.brand) { display: block; color: rgba(245,239,229,.74); margin: 10px 0; }
.footer-brand { margin-bottom: 18px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Componentes añadidos ---------- */

/* Enlace de encabezado de sección */
.heading-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap .2s ease;
}
.heading-link::after { content: "\2192"; }
.heading-link:hover { gap: 14px; }
.section-dark .heading-link { color: var(--paper); }

/* Botón de WhatsApp (tono de marca, sin verde chillón) */
.btn-whatsapp { background: var(--deep); color: var(--paper); border: 1px solid var(--deep); }

/* Franja de fotos de Comodidades */
.amenities-media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.amenities-media figure { margin: 0; }
.amenities-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
}

/* ---------- Páginas internas ---------- */

/* Hero compacto de subpágina */
.page-hero {
  display: grid;
  gap: 22px;
  max-width: 920px;
}
.page-hero h1 { font-size: clamp(48px, 7vw, 90px); letter-spacing: -.05em; }
.page-hero .lead { color: var(--muted); margin: 0; }
.breadcrumb { font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.breadcrumb a { border-bottom: 1px solid var(--line); }

/* Bloque de estancia (detalle) */
.stay {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(50px, 7vw, 96px) clamp(22px, 5vw, 80px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.stay:nth-child(even) .stay-gallery { order: 2; }
.stay-kicker { margin: 0 0 12px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.stay-copy p { color: var(--muted); line-height: 1.85; font-size: 18px; }
.stay-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 180px;
  gap: 14px;
}
.stay-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.stay-gallery img:first-child { grid-row: span 2; }

.spec-list { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 12px; }
.spec-list li { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.spec-list strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; font-weight: 600; }
.spec-list span { color: var(--muted); align-self: center; }

/* Mapa / ubicación */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
.map-frame {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.map-actions { margin-top: 18px; }
.map-actions a { font-weight: 700; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.info-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); margin-bottom: 18px; }
.info-card h3 { font-size: 26px; margin-bottom: 8px; }
.info-card p { color: var(--muted); line-height: 1.75; margin: 0; }
.placeholder-note { color: var(--gold); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--gold);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--muted); line-height: 1.8; margin: 0 0 24px; max-width: 720px; }

@media (max-width: 980px) {
  .announcement { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    display: none;
    flex-direction: column;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 260px; }
  .hero::before { display: none; }
  .hero-media img { min-height: 400px; }
  .booking-card { grid-template-columns: 1fr; bottom: 34px; }
  .booking-card label { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats, .intro, .room-grid, .amenities-grid, .experience, .reviews, .final-cta, .site-footer { grid-template-columns: 1fr; }
  .room-card-featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-grid .tall, .gallery-grid .wide { grid-row: auto; grid-column: auto; }
  .feature-list div { grid-template-columns: 1fr; gap: 8px; }
  .amenities-media { grid-template-columns: 1fr 1fr; }
  .stay { grid-template-columns: 1fr; }
  .stay:nth-child(even) .stay-gallery { order: 0; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 16px 18px; }
  section { padding: 58px 18px; }
  h1 { font-size: 54px; }
  h2 { font-size: 43px; }
  .hero { padding-bottom: 310px; }
  .hero-media img { min-height: 330px; }
  .stats { padding: 0 18px 50px; }
  .stats article { padding: 24px; min-height: 120px; }
  .room-card img { height: 250px; }
  .experience-image img { min-height: 360px; }
  .final-actions { width: 100%; }
  .final-actions .btn { width: 100%; }
}
