:root {
  --ink: #183343;
  --ink-deep: #102631;
  --wine: #74283d;
  --wine-dark: #541a2c;
  --gold: #c8a76a;
  --eucalyptus: #688078;
  --mist: #edf0ed;
  --paper: #f9f8f4;
  --white: #ffffff;
  --text: #20323b;
  --muted: #65737a;
  --line: rgba(24, 51, 67, 0.18);
  --display: "Libre Caslon Display", Georgia, serif;
  --body: "Manrope", "Helvetica Neue", sans-serif;
  --shell: min(1240px, calc(100vw - 96px));
  --header-height: 104px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
}

h2 {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: clamp(3rem, 5.6vw, 6.1rem);
  letter-spacing: -0.045em;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 24px;
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-wine {
  background: var(--wine);
  color: var(--white);
}

.button-wine button{
  background: var(--wine);
  color: var(--white);
}

.button-wine:hover {
  background: var(--wine-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 8px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 200ms var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 42px;
  color: var(--white);
  transition:
    height 320ms var(--ease),
    background 320ms ease,
    color 320ms ease,
    box-shadow 320ms ease;
}

.site-header.scrolled {
  height: 78px;
  background: rgba(16, 38, 49, 0.96);
  box-shadow: 0 8px 32px rgba(9, 26, 34, 0.12);
  backdrop-filter: blur(12px);
}

.site-header--solid {
  height: 78px;
  background: rgba(16, 38, 49, 0.98);
  box-shadow: 0 8px 32px rgba(9, 26, 34, 0.12);
}

.site-header--solid .brand-logo,
.site-header--solid .brand .custom-logo {
  height: 60px;
}

.admin-bar .site-header {
  top: 32px;
}

.menu-trigger {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  border: 0;
  padding: 12px 0;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-lines,
.menu-lines::before {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 260ms var(--ease);
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-open .menu-lines {
  transform: rotate(45deg);
}

.menu-open .menu-lines::before {
  transform: rotate(-90deg);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.brand-logo {
  width: auto;
  height: 78px;
  object-fit: contain;
  transition: height 320ms var(--ease);
}

.brand .custom-logo {
  width: auto;
  height: 78px;
  object-fit: contain;
}

.site-header.scrolled .brand-logo {
  height: 60px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.header-social-link {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.header-social-link:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.header-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.header-social-link svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-switcher a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  transition: color 180ms ease;
}

.language-switcher a:hover,
.language-switcher .is-active a {
  color: var(--white);
}

.language-switcher .is-active a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
}

.language-switcher--menu {
  display: none;
}

.site-menu {
  position: fixed;
  z-index: 90;
  display: grid;
  visibility: hidden;
  width: 100%;
  min-height: 100svh;
  place-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(90deg, rgba(16, 38, 49, 0.98), rgba(16, 38, 49, 0.94)),
    url("../images/hero-vinedo.jpg") center / cover;
  color: var(--white);
  opacity: 0;
  transition:
    opacity 360ms ease,
    visibility 360ms ease;
}

.site-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.menu-inner {
  display: flex;
  width: min(860px, calc(100vw - 64px));
  flex-direction: column;
  align-items: center;
  padding-top: clamp(72px, 12vh, 100px);
  padding-bottom: 32px;
  text-align: center;
}

.menu-eyebrow {
  margin-bottom: clamp(16px, 3vh, 28px);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-inner > a {
  font-family: var(--display);
  /* el segundo término lo ata a la altura: con 6 enlaces más contacto e idioma,
     un tamaño fijo no entra en pantallas bajas */
  font-size: min(clamp(1.45rem, 5vw, 3.9rem), 7.4vh);
  line-height: 1.18;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.menu-inner > a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.menu-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: clamp(22px, 4vh, 42px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: minmax(500px, 1fr) auto;
  background: var(--ink-deep);
}

.hero {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: hero-arrive 1.8s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 24, 34, 0.72) 0%, rgba(5, 24, 34, 0.3) 47%, rgba(5, 24, 34, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 21, 29, 0.55) 0%, transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 96px));
  margin-left: max(48px, calc((100vw - 1240px) / 2));
  padding-top: 78px;
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 8vw, 8.7rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
}

.wayfinding {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 34px;
  left: 48px;
  display: grid;
  grid-template-columns: auto minmax(36px, 1fr) auto minmax(36px, 1fr) auto;
  align-items: center;
  gap: 18px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wayfinding i {
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-video-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-media-controls {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-video-control:hover {
  color: var(--white);
}

.hero-video-control > span:first-child {
  min-width: 12px;
  font-size: 0.7rem;
  letter-spacing: -0.18em;
}

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

.booking-section {
  position: relative;
  z-index: 5;
  padding: 48px 0 42px;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-stage .booking-section {
  padding: 18px 0 14px;
}

.hero-stage .booking-shell {
  grid-template-columns: minmax(200px, 0.3fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.hero-stage .booking-intro h2 {
  font-size: clamp(2rem, 2.7vw, 2.85rem);
}

.hero-stage .container-form-booking-fns {
  min-height: 60px;
}

.hero-stage .booking-direct-link {
  margin-top: 8px;
}

.booking-section--inner {
  margin-top: 0;
  padding: 56px 0 48px;
}

.booking-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(200, 167, 106, 0.5);
  content: "";
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
}

.booking-intro .eyebrow {
  margin-bottom: 10px;
}

.booking-intro h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(2.25rem, 3.2vw, 3.4rem);
  letter-spacing: -0.035em;
}

.booking-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 300;
}

.booking-engine-wrap {
  min-width: 0;
}

.container-form-booking-fns {
  display: flex;
  min-height: 76px;
  align-items: center;
}

.booking-engine-loading {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.container-form-booking-fns.is-loaded .booking-engine-loading,
.container-form-booking-fns.is-error .booking-engine-loading {
  display: none;
}

.booking-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.booking-direct-link:hover {
  color: var(--white);
}

.booking-section .container-form-booking-fns #FNSbooking-engine {
  width: 100% !important;
  padding: 0 !important;
  z-index: auto !important;
}

.booking-section .container-form-booking-fns #wrappper-FNSbooking,
.booking-section .container-form-booking-fns #FNSbooking {
  width: 100% !important;
}

.booking-section .container-form-booking-fns #contenedor-FNSbooking {
  width: 100% !important;
  max-width: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 0 !important;
  background: var(--paper) !important;
  box-shadow: none !important;
}

.booking-section .container-form-booking-fns #contenedor-FNSbooking #contenedor-titulos {
  display: none !important;
}

.booking-section .container-form-booking-fns #contenedor-FNSbooking input,
.booking-section .container-form-booking-fns #contenedor-FNSbooking select,
.booking-section .container-form-booking-fns #contenedor-FNSbooking button,
.booking-section .container-form-booking-fns #contenedor-FNSbooking span {
  font-family: var(--body) !important;
}

.booking-section .container-form-booking-fns #contenedor-FNSbooking input#fns-dates,
.booking-section .container-form-booking-fns #contenedor-FNSbooking input#cod-promocional {
  color: var(--ink) !important;
  font-weight: 500 !important;
}

.booking-section .container-form-booking-fns #contenedor-FNSbooking div#contenedor-btn {
  border-radius: 0 !important;
  background: var(--wine) !important;
  transition: background 180ms ease !important;
}

.booking-section .container-form-booking-fns #contenedor-FNSbooking div#contenedor-btn:hover {
  background: var(--wine-dark) !important;
}

.booking-section .container-form-booking-fns #contenedor-FNSbooking button#comp-dispo-btn > span {
  font-size: 0.67rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.place-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0 0;
  background: var(--mist);
}

.place-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 120px minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: end;
}

.coordinates {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.place-copy h2 {
  margin-bottom: 0;
}

.place-description {
  padding-bottom: 10px;
}

.place-description p {
  margin-bottom: 34px;
  color: #45565e;
  font-size: 1rem;
  font-weight: 300;
}

.place-word {
  margin: 45px -1vw -2.5vw;
  color: rgba(24, 51, 67, 0.055);
  font-family: var(--display);
  font-size: 16.2vw;
  line-height: 0.78;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.facts > div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 28px;
}

.facts > div:last-child {
  border-right: 0;
}

.facts strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.facts span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
}

.rooms-section {
  overflow: hidden;
  padding: 150px 0 170px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.slider-actions {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
}

.slider-button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.slider-button:hover {
  background: var(--ink);
  color: var(--white);
}

.rooms-track {
  --rooms-gutter: max(48px, calc((100vw - 1240px) / 2));

  display: grid;
  width: 100%;
  grid-auto-columns: minmax(370px, 42vw);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 0 var(--rooms-gutter) 28px;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--rooms-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--wine) transparent;
}

.room-card {
  scroll-snap-align: start;
}

.room-image-link {
  display: block;
  overflow: hidden;
}

.room-card:first-child {
  scroll-margin-inline-start: var(--rooms-gutter);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.86);
  transition:
    transform 700ms var(--ease),
    filter 400ms ease;
}

.room-card:hover img {
  transform: scale(1.015);
  filter: saturate(1);
}

.room-card-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}

.room-card-copy p {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.room-detail-trigger {
  border: 0;
  padding: 0 0 5px;
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-detail-trigger span {
  display: inline-block;
  transition: transform 180ms var(--ease);
}

.room-detail-trigger:hover span {
  transform: translate(2px, -2px);
}

@media (min-width: 761px) {
  .room-card-copy h3 {
    min-height: 2.04em;
    align-self: start;
  }
}

.experience-section {
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
  background: var(--ink);
  color: var(--white);
}

.experience-image-wrap {
  position: relative;
  min-height: 740px;
  overflow: hidden;
}

.experience-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vertical-caption {
  position: absolute;
  right: 18px;
  bottom: 28px;
  margin: 0;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.experience-copy {
  display: flex;
  max-width: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw;
}

.experience-copy h2,
.events-copy h2,
.location-section h2 {
  color: var(--white);
}

.experience-copy .eyebrow {
  color: #e2c789;
}

.experience-copy h2 {
  color: var(--white);
}

.experience-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.experience-list {
  margin: 30px 0 42px;
  padding: 0;
  list-style: none;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.94);
}

.experience-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-list span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.experience-copy .text-link {
  width: max-content;
  color: var(--white);
}

.image-break {
  position: relative;
  height: min(82vh, 860px);
  overflow: hidden;
  color: var(--white);
}

.image-break::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 31, 41, 0.63), transparent 68%);
  content: "";
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.image-break-copy {
  position: absolute;
  z-index: 2;
  right: 6vw;
  bottom: 7vw;
  left: 6vw;
}

.image-break-copy p {
  max-width: 750px;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.image-break-copy span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dining-section {
  padding: 150px 0 180px;
  background: #dfe5e0;
}

.dining-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: center;
}

.dining-copy {
  padding-bottom: 48px;
}

.dining-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: #45565e;
  font-weight: 300;
}

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.hours span,
.hours strong {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-size: 0.68rem;
}

.hours span {
  color: var(--muted);
}

.hours strong {
  color: var(--ink);
  font-weight: 600;
}

.dining-images {
  position: relative;
  min-height: 720px;
}

.dining-image-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 74%;
  object-fit: cover;
}

.dining-image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 43%;
  border: 12px solid #dfe5e0;
  object-fit: cover;
}

.events-section {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.events-section > img,
.events-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.events-section > img {
  object-fit: cover;
  object-position: center 44%;
}

.events-overlay {
  background: linear-gradient(90deg, rgba(18, 33, 39, 0.86), rgba(18, 33, 39, 0.2) 65%);
}

.events-copy {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100vw - 96px));
  margin-left: max(48px, calc((100vw - 1240px) / 2));
}

.events-copy p:not(.eyebrow) {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 300;
}

.testimonials-section {
  overflow: hidden;
  padding: 150px 0;
  background: var(--mist);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.testimonials-heading h2 {
  max-width: 460px;
  margin-bottom: 44px;
  font-size: clamp(3.2rem, 5.1vw, 5.7rem);
  text-wrap: balance;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonials-count {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.testimonials-count span {
  color: var(--wine);
}

.testimonials-count i {
  width: 28px;
  height: 1px;
  background: var(--line);
}

.testimonials-track {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  overflow: hidden;
  padding: 42px clamp(20px, 4vw, 68px) 40px 0;
  scroll-snap-align: start;
}

.testimonial-number {
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.testimonial-mark {
  position: absolute;
  top: 12px;
  right: clamp(12px, 3vw, 48px);
  color: rgba(200, 167, 106, 0.24);
  font-family: var(--display);
  font-size: clamp(10rem, 18vw, 17rem);
  line-height: 1;
  pointer-events: none;
}

.testimonial-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial-card blockquote p {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.65vw, 3rem);
  line-height: 1.17;
  text-wrap: pretty;
}

.testimonial-card figcaption {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-section {
  padding: 150px 0;
  background: var(--ink-deep);
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(390px, 1.35fr) minmax(260px, 0.75fr);
  gap: clamp(42px, 5vw, 80px);
  align-items: center;
}

.location-map {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 28px 28px 0 rgba(200, 167, 106, 0.08);
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.62) saturate(0.62) contrast(1.08);
  transition: filter 400ms ease;
}

.location-map:hover iframe,
.location-map:focus-within iframe {
  filter: grayscale(0.12) saturate(0.88) contrast(1.02);
}

.location-map > p {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 8px 11px;
  background: rgba(16, 38, 49, 0.9);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.location-details > p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
}

.location-details dl {
  margin: 0 0 36px;
}

.location-details dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding: 15px 0;
  font-size: 0.65rem;
}

.location-details dl div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.location-details dt {
  color: rgba(255, 255, 255, 0.5);
}

.location-details dd {
  margin: 0;
  font-weight: 500;
}

.final-cta {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 28px;
  background: var(--paper);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 48px;
  font-size: clamp(4rem, 7.2vw, 8rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px max(48px, calc((100vw - 1240px) / 2)) 38px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-brand img {
  width: 190px;
  height: auto;
  opacity: 0.96;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
}

.footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-links button:hover {
  color: var(--white);
}

.prototype-note {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  border: 0;
  padding: 66px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 28px 90px rgba(7, 23, 31, 0.35);
}

dialog::backdrop {
  background: rgba(7, 24, 32, 0.76);
  backdrop-filter: blur(7px);
}

dialog h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.booking-dialog form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 38px;
}

.booking-dialog label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-dialog label:nth-child(3),
.booking-dialog form .button {
  grid-column: 1 / -1;
}

.booking-dialog input,
.booking-dialog select {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
}

.dialog-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.room-dialog ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 30px 0 40px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 0.76rem;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 48px));
  padding: 18px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  box-shadow: 0 16px 50px rgba(9, 27, 36, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hvl-front-page .joinchat {
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.inner-main {
  min-height: 70svh;
  background: var(--paper);
}

.inner-hero {
  position: relative;
  display: flex;
  min-height: 380px;
  align-items: flex-end;
  overflow: hidden;
  padding: 142px 0 56px;
  background: var(--mist);
}

.inner-hero.has-image {
  min-height: min(68svh, 680px);
  color: var(--white);
}

.inner-hero-image,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero-image {
  object-fit: cover;
}

.inner-hero-overlay {
  background: linear-gradient(0deg, rgba(9, 31, 41, 0.78), rgba(9, 31, 41, 0.14) 72%);
}

.inner-hero-copy {
  position: relative;
  z-index: 2;
}

.inner-hero h1,
.error-page h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.1vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.inner-hero.has-image h1 {
  color: var(--white);
}

.entry-content {
  max-width: 980px;
  padding-top: 100px;
  padding-bottom: 130px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 1.2em;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
}

.entry-content h3 {
  margin-top: 1.7em;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.entry-content p,
.entry-content li {
  font-size: 1.05rem;
}

.entry-content a:not(.button) {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.entry-content img {
  margin-block: 40px;
}

/* Legacy WPBakery / Salient pages (restaurant, experiencias, etc.) */
.hvl-builder-page .inner-main--builder {
  padding-top: 88px;
  background: var(--paper);
}

.hvl-builder-page .entry-content--builder {
  width: 100%;
  max-width: none;
  padding: 0 clamp(20px, 5vw, 72px);
  overflow: clip;
  box-sizing: border-box;
}

.hvl-builder-page .entry-content--builder > .wpb_row,
.hvl-builder-page .entry-content--builder > .vc_row {
  margin-inline: 0;
}

.hvl-builder-page .entry-content--builder img {
  margin-block: 0;
}

.hvl-builder-page .entry-content--builder .row_col_wrap_12,
.hvl-builder-page .entry-content--builder .row_col_wrap_12_inner,
.hvl-builder-page .entry-content--builder > .wpb_row > .span_12 {
  box-sizing: border-box;
}

.hvl-builder-page .entry-content--builder .wpb_text_column,
.hvl-builder-page .entry-content--builder .vc_custom_heading,
.hvl-builder-page .entry-content--builder .wpb_wrapper > p,
.hvl-builder-page .entry-content--builder .nectar-button {
  max-width: 100%;
}

.hvl-builder-page .entry-content--builder > .wpb_row:has(.nectar-slider-wrap),
.hvl-builder-page .entry-content--builder > .wpb_row:has(> .row_col_wrap_12 .wpb_gallery) {
  width: calc(100% + 2 * clamp(20px, 5vw, 72px));
  margin-inline: calc(-1 * clamp(20px, 5vw, 72px));
}

/* Room pages: keep text inset; only the gallery goes edge-to-edge. */
.hvl-room-page .entry-content--builder > .wpb_row:has(.nectar-slider-wrap),
.hvl-room-page .entry-content--builder > .wpb_row:has(> .row_col_wrap_12 .wpb_gallery) {
  width: 100%;
  margin-inline: 0;
}

.hvl-builder-page .entry-content--builder .wpb_gallery,
.hvl-builder-page .entry-content--builder .nectar-slider-wrap,
.hvl-builder-page .entry-content--builder .nectar-slider-loading {
  width: 100%;
  max-width: none;
}

.hvl-builder-page .entry-content--builder .col.padding-20-percent[data-padding-pos="left-right"],
.hvl-builder-page .entry-content--builder .padding-20-percent > .vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hvl-builder-page .vc_custom_heading,
.hvl-builder-page .wpb_text_column,
.hvl-builder-page .wpb_wrapper > p {
  color: var(--ink);
  font-family: var(--sans);
}

.hvl-builder-page .vc_custom_heading {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hvl-builder-page .nectar-button,
.hvl-builder-page .wpb_wrapper .nectar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 0;
  background: var(--wine) !important;
  color: var(--white) !important;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
}

.hvl-builder-page .nectar-button:hover {
  background: var(--ink) !important;
}

.hvl-builder-page .wpcf7 {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 0 48px;
  box-sizing: border-box;
}

.hvl-builder-page .wpcf7 form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  overflow: hidden;
}

.hvl-builder-page .wpcf7 form > div[style] {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  clear: none !important;
}

.hvl-builder-page .wpcf7 form > p {
  grid-column: 1 / -1;
  margin: 0;
}

.hvl-builder-page .wpcf7 form::after {
  content: none;
}

.hvl-builder-page .entry-content--builder .wpb_row.top-level:last-child,
.hvl-builder-page .entry-content--builder > .wpb_row:last-child {
  margin-bottom: 0;
  padding-bottom: 48px !important;
}

.hvl-builder-page .vc_row-flex > .span_12,
.hvl-builder-page .vc_row-flex > .row_col_wrap_12_inner,
.hvl-builder-page .row_col_wrap_12:has(> .vc_col-sm-6 + .vc_col-sm-6),
.hvl-builder-page .row_col_wrap_12_inner:has(> .vc_col-sm-6 + .vc_col-sm-6) {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 24px;
}

.hvl-builder-page .vc_row-flex .vc_col-sm-6,
.hvl-builder-page .row_col_wrap_12 > .vc_col-sm-6,
.hvl-builder-page .row_col_wrap_12_inner > .vc_col-sm-6 {
  float: none;
  flex: 1 1 0;
  width: auto !important;
  min-width: 0;
  max-width: none;
}

.hvl-builder-page .vc_col-sm-6 .img-with-aniamtion-wrap,
.hvl-builder-page .vc_col-sm-6 .img-with-aniamtion-wrap .inner,
.hvl-builder-page .vc_col-sm-6 .img-with-aniamtion-wrap .hover-wrap,
.hvl-builder-page .vc_col-sm-6 .img-with-aniamtion-wrap .hover-wrap-inner,
.hvl-builder-page .vc_col-sm-6 .wpb_single_image,
.hvl-builder-page .vc_col-sm-6 .wpb_wrapper {
  width: 100%;
}

.hvl-builder-page .vc_col-sm-6 .img-with-animation,
.hvl-builder-page .vc_col-sm-6 .wpb_single_image img {
  width: 100% !important;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hvl-builder-page .wpcf7 label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hvl-builder-page .wpcf7 input[type="text"],
.hvl-builder-page .wpcf7 input[type="email"],
.hvl-builder-page .wpcf7 input[type="tel"],
.hvl-builder-page .wpcf7 input[type="date"],
.hvl-builder-page .wpcf7 textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(24, 51, 67, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
}

.hvl-builder-page .wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

.hvl-builder-page .wpcf7 input[type="submit"] {
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border: 0;
  background: var(--wine);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.hvl-builder-page .wpcf7 input[type="submit"]:hover {
  background: var(--ink);
}

.hvl-builder-page .wpcf7 .wpcf7-list-item-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 400;
}

@media (max-width: 760px) {
  .hvl-builder-page .inner-main--builder {
    padding-top: 76px;
  }

  .hvl-builder-page .entry-content--builder {
    padding-inline: 20px;
  }

  .hvl-builder-page .vc_row-flex > .span_12,
  .hvl-builder-page .vc_row-flex > .row_col_wrap_12_inner,
  .hvl-builder-page .row_col_wrap_12:has(> .vc_col-sm-6 + .vc_col-sm-6),
  .hvl-builder-page .row_col_wrap_12_inner:has(> .vc_col-sm-6 + .vc_col-sm-6) {
    flex-wrap: wrap;
  }

  .hvl-builder-page .vc_row-flex .vc_col-sm-6,
  .hvl-builder-page .row_col_wrap_12 > .vc_col-sm-6,
  .hvl-builder-page .row_col_wrap_12_inner > .vc_col-sm-6 {
    flex: 1 1 100%;
  }

  .hvl-builder-page .wpcf7 form {
    grid-template-columns: 1fr;
  }

  .hvl-builder-page .wpcf7 input[type="submit"] {
    width: 100%;
  }
}

/* Room dossier: preserves the legacy WPBakery content while giving it a
   deliberate, editorial hierarchy. */
.hvl-room-page .entry-content,
.hvl-room-page .entry-content--builder {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin-inline: auto;
  padding-top: 0;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
}

.hvl-room-page .entry-content > .wpb_row {
  width: 100%;
  margin-inline: 0;
}

.hvl-room-page .room-navigation-row {
  border-bottom: 1px solid var(--line);
  padding: 30px 0 28px !important;
  background: transparent !important;
}

.hvl-room-page .room-navigation-row > .row-bg-wrap,
.hvl-room-page .room-navigation-row h2,
.hvl-room-page .room-navigation-row > .row_col_wrap_12 > .wpb_column > .vc_column-inner > .wpb_wrapper > .divider-wrap {
  display: none;
}

.hvl-room-page .room-navigation-row .row_col_wrap_12,
.hvl-room-page .room-navigation-row .row_col_wrap_12_inner {
  width: 100%;
  margin: 0;
}

.hvl-room-page .room-navigation-row .row_col_wrap_12_inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.hvl-room-page .room-navigation-row .child_column {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.hvl-room-page .room-navigation-row .child_column:first-child {
  border-left: 0;
}

.hvl-room-page .room-navigation-row .vc_column-inner,
.hvl-room-page .room-navigation-row .wpb_wrapper {
  height: 100%;
}

.hvl-room-page .room-navigation-row p.vc_custom_heading {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--body) !important;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hvl-room-page .room-navigation-row a {
  position: relative;
  display: inline-block;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.hvl-room-page .room-navigation-row a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hvl-room-page .room-navigation-row a:hover::after,
.hvl-room-page .room-navigation-row a:focus-visible::after,
.hvl-room-page .room-navigation-row a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hvl-room-page .room-profile-row {
  padding: 72px 0 0 !important;
}

.hvl-room-page .room-profile-row > .row_col_wrap_12,
.hvl-room-page .room-profile-row > .row_col_wrap_12 > .wpb_column {
  width: 100%;
  margin: 0;
}

.hvl-room-page .room-profile-row .wpb_gallery {
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 78px;
  margin-left: calc(50% - 50vw);
}

.hvl-room-page .room-profile-row .nectar-slider-wrap,
.hvl-room-page .room-profile-row .swiper-container {
  height: clamp(430px, 52vw, 670px) !important;
  background: var(--mist);
}

.hvl-room-page .room-profile-row .vc_column-inner > .wpb_wrapper {
  padding-inline: 0;
}

.hvl-room-page .room-details-heading,
.hvl-room-page .room-details-heading + .divider-wrap,
.hvl-room-page .room-details-heading + .divider-wrap + h4,
.hvl-room-page .room-facts-row {
  margin-inline: 0;
  padding-inline: clamp(4px, 1vw, 12px);
}

.hvl-room-page .room-profile-row .swiper-wrapper,
.hvl-room-page .room-profile-row .swiper-slide,
.hvl-room-page .room-profile-row .image-bg {
  height: 100% !important;
  min-height: 100% !important;
}

.hvl-room-page .room-profile-row .image-bg {
  background-position: center !important;
  background-size: cover !important;
}

.hvl-room-page .room-profile-row > .row_col_wrap_12 > .wpb_column > .vc_column-inner > .wpb_wrapper > .divider-wrap {
  display: none;
}

.hvl-room-page .room-details-heading,
.hvl-room-page .room-amenities-heading {
  margin: 0 !important;
  color: var(--ink) !important;
  font-family: var(--display) !important;
  font-size: clamp(2.7rem, 4.5vw, 4.75rem) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.045em;
  text-align: left !important;
}

.hvl-room-page .room-details-heading {
  max-width: 860px;
}

.hvl-room-page .room-details-heading + .divider-wrap + h4 {
  max-width: 850px;
  margin: 28px 0 52px;
  color: var(--text);
  font-family: var(--body) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.8 !important;
}

.hvl-room-page .room-facts-row .row-bg-wrap {
  display: none;
}

.hvl-room-page .room-facts-row .row_col_wrap_12_inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  border-block: 1px solid var(--line);
  background: rgba(237, 240, 237, 0.44);
}

.hvl-room-page .room-facts-row .child_column {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
}

.hvl-room-page .room-facts-row .child_column > .vc_column-inner {
  height: 100%;
  min-height: 226px;
  border: 0 !important;
  border-left: 1px solid var(--line) !important;
  border-radius: 0;
}

.hvl-room-page .room-facts-row .child_column:first-child > .vc_column-inner {
  border-left: 0 !important;
}

.hvl-room-page .room-facts-row .wpb_wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
}

.hvl-room-page .room-facts-row .img-with-aniamtion-wrap,
.hvl-room-page .room-facts-row .img-with-aniamtion-wrap .inner {
  width: auto !important;
}

.hvl-room-page .room-facts-row img.icono {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.hvl-room-page .room-facts-row h5 {
  margin: 0;
  color: var(--ink);
  font-family: var(--body) !important;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.75;
}

.hvl-room-page .room-facts-row h5 br {
  content: "";
}

.hvl-room-page .room-amenities-heading {
  margin-top: 104px !important;
}

.hvl-room-page .room-amenities-row {
  padding: 38px 0 0 !important;
}

.hvl-room-page .room-amenities-row > .row-bg-wrap {
  display: none;
}

.hvl-room-page .room-amenities-row > .row_col_wrap_12 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
}

.hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 30px 48px 4px 0;
  border-right: 1px solid var(--line);
}

.hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column:not(:first-child) {
  padding-left: 48px;
}

.hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column:last-child {
  padding-right: 0;
  border-right: 0;
}

.hvl-room-page .room-amenities-row h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--body) !important;
  font-size: 0.86rem !important;
  font-weight: 400 !important;
  line-height: 2.05 !important;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 48px;
  padding-top: 100px;
  padding-bottom: 130px;
}

.post-card h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
  object-fit: cover;
}

.error-page {
  display: flex;
  min-height: 78svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 100px;
}

.error-page h1 {
  margin-bottom: 28px;
}

.error-page > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 36px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

dialog.hvl-home-popup {
  inset: 0;
  width: max-content;
  height: max-content;
  max-width: min(520px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 28px 90px rgba(7, 23, 31, 0.42);
}

dialog.hvl-home-popup[open] {
  display: block;
  animation: hvl-popup-in 480ms var(--ease);
}

dialog.hvl-home-popup::backdrop {
  background: rgba(7, 24, 32, 0.78);
  backdrop-filter: blur(8px);
}

dialog.hvl-home-popup[open]::backdrop {
  animation: hvl-popup-backdrop-in 420ms var(--ease);
}

dialog.hvl-home-popup.hvl-home-popup--image-only {
  max-width: min(480px, calc(100vw - 32px));
  background: transparent;
  box-shadow: none;
}

.hvl-home-popup__media {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.hvl-home-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(249, 248, 244, 0.96);
  box-shadow: 0 8px 22px rgba(7, 23, 31, 0.24);
  cursor: pointer;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
  transition:
    background 200ms ease,
    color 200ms ease,
    transform 200ms var(--ease);
}

.hvl-home-popup__close:hover {
  background: var(--wine);
  color: var(--white);
  transform: scale(1.04);
}

.hvl-home-popup__image-link,
.hvl-home-popup__image {
  display: block;
}

.hvl-home-popup__image {
  width: 100%;
  height: auto;
  max-height: min(72svh, 820px);
  object-fit: cover;
  object-position: center;
}

.hvl-home-popup--image-only .hvl-home-popup__image {
  width: auto;
  max-width: min(480px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(7, 23, 31, 0.45);
}

.hvl-home-popup__copy {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 28px 32px 32px;
}

dialog.hvl-home-popup h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.03em;
}

.hvl-home-popup__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hvl-home-popup__copy .button {
  margin-top: 6px;
}

@keyframes hvl-popup-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hvl-popup-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1240px) {
  .booking-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-intro {
    display: grid;
    grid-template-columns: auto auto minmax(220px, 1fr);
    align-items: center;
    gap: 24px;
  }

  .booking-intro .eyebrow,
  .booking-intro h2,
  .booking-intro > p:last-child {
    margin: 0;
  }

  .booking-intro > p:last-child {
    justify-self: end;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 56px, 920px);
  }

  .place-grid {
    grid-template-columns: 70px 1.2fr 0.8fr;
    gap: 36px;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .facts > div:nth-child(2) {
    border-right: 0;
  }

  .facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .experience-section,
  .dining-grid,
  .location-grid,
  .testimonials-layout {
    grid-template-columns: 1fr 1fr;
  }

  .experience-copy {
    padding: 70px 54px;
  }

  .dining-grid {
    gap: 54px;
  }

  .location-heading {
    grid-column: 1 / -1;
  }

  .testimonials-layout {
    gap: 54px;
  }

  .hvl-room-page .entry-content,
  .hvl-room-page .entry-content--builder {
    width: min(920px, calc(100% - 40px));
    margin-inline: auto;
    padding-inline: 20px;
  }

  .hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column {
    padding-right: 32px;
  }

  .hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column:not(:first-child) {
    padding-left: 32px;
  }
}

@media (max-width: 992px) {
  .hero-stage {
    grid-template-rows: minmax(500px, 1fr) auto;
  }

  .hero-stage .booking-section {
    padding: 22px 0;
  }

  .hero-stage .booking-shell {
    grid-template-columns: minmax(210px, 1fr) auto;
    gap: 24px;
  }

  .hero-stage .booking-intro .eyebrow,
  .hero-stage .booking-intro > p:last-child {
    display: none;
  }

  .hero-stage .booking-intro h2 {
    margin: 0;
  }

  .booking-section {
    padding: 38px 0;
  }

  .booking-intro {
    display: block;
  }

  .booking-intro .eyebrow {
    margin-bottom: 10px;
  }

  .booking-intro h2 {
    margin-bottom: 8px;
  }

  .container-form-booking-fns {
    display: none;
  }

  .booking-direct-link {
    min-height: 48px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 20px;
    margin-top: 0;
    color: var(--white);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 40px);
    --header-height: 82px;
  }

  body {
    font-size: 16px;
  }

  .hvl-room-page .entry-content,
  .hvl-room-page .entry-content--builder {
    width: calc(100% - 24px);
    margin-inline: auto;
    padding-inline: 20px;
  }

  .hvl-room-page .room-navigation-row {
    overflow-x: auto;
    padding: 23px 0 21px !important;
    scrollbar-width: none;
  }

  .hvl-room-page .room-navigation-row::-webkit-scrollbar {
    display: none;
  }

  .hvl-room-page .room-navigation-row .row_col_wrap_12_inner {
    display: flex;
    width: max-content;
    min-width: 100%;
  }

  .hvl-room-page .room-navigation-row .child_column {
    width: 190px !important;
    flex: 0 0 190px;
    padding-inline: 18px;
  }

  .hvl-room-page .room-navigation-row p.vc_custom_heading {
    font-size: 0.66rem;
  }

  .hvl-room-page .room-profile-row {
    padding-top: 42px !important;
  }

  .hvl-room-page .room-profile-row .wpb_gallery {
    margin-bottom: 52px;
  }

  .hvl-room-page .room-profile-row .nectar-slider-wrap,
  .hvl-room-page .room-profile-row .swiper-container {
    height: max(270px, 67vw) !important;
  }

  .hvl-room-page .room-details-heading,
  .hvl-room-page .room-amenities-heading {
    font-size: clamp(2.6rem, 13vw, 3.7rem) !important;
  }

  .hvl-room-page .room-details-heading + .divider-wrap + h4 {
    margin: 22px 0 40px;
    font-size: 0.93rem !important;
    line-height: 1.75 !important;
  }

  .hvl-room-page .room-facts-row .row_col_wrap_12_inner {
    grid-template-columns: 1fr;
  }

  .hvl-room-page .room-facts-row .child_column > .vc_column-inner {
    min-height: 184px;
    border-left: 0 !important;
    border-top: 1px solid var(--line) !important;
  }

  .hvl-room-page .room-facts-row .child_column:first-child > .vc_column-inner {
    border-top: 0 !important;
  }

  .hvl-room-page .room-facts-row img.icono {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }

  .hvl-room-page .room-amenities-heading {
    margin-top: 74px !important;
  }

  .hvl-room-page .room-amenities-row {
    padding-top: 28px !important;
  }

  .hvl-room-page .room-amenities-row > .row_col_wrap_12 {
    grid-template-columns: 1fr;
  }

  .hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column,
  .hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column:not(:first-child) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hvl-room-page .room-amenities-row > .row_col_wrap_12 > .wpb_column:last-child {
    border-bottom: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 20px;
  }

  .site-header.scrolled {
    height: 68px;
  }

  .site-header--solid {
    height: 68px;
  }

  .site-header--solid .brand-logo,
  .site-header--solid .brand .custom-logo {
    height: 50px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .menu-label {
    display: none;
  }

  .menu-lines,
  .menu-lines::before {
    width: 25px;
  }

  .brand-logo {
    height: 62px;
  }

  .site-header.scrolled .brand-logo {
    height: 50px;
  }

  .header-actions {
    gap: 0;
  }

  .header-social-link {
    display: none;
  }

  .language-switcher--header {
    display: none;
  }

  .language-switcher--menu {
    display: flex;
    margin-top: 26px;
  }

  .language-switcher--menu a {
    font-size: 0.66rem;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.56rem;
  }

  .menu-inner {
    width: calc(100vw - 40px);
  }

  .menu-inner > a {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .menu-contact {
    flex-direction: column;
    gap: 8px;
  }

  .hero-stage {
    min-height: 100svh;
    grid-template-rows: minmax(520px, 1fr) auto;
  }

  .hero {
    min-height: 0;
    align-items: flex-end;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 24, 34, 0.82) 0%, rgba(5, 24, 34, 0.2) 72%),
      linear-gradient(90deg, rgba(5, 24, 34, 0.4), transparent);
  }

  .hero-copy {
    width: calc(100vw - 40px);
    margin: 0 20px;
    padding: 0 0 130px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.8rem);
  }

  .hero-lead {
    max-width: 340px;
  }

  .wayfinding {
    right: 20px;
    bottom: 25px;
    left: 20px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    font-size: 0.47rem;
  }

  .wayfinding span:last-child,
  .wayfinding i:last-of-type {
    display: none;
  }

  .hero-media-controls {
    right: 20px;
    bottom: 22px;
    gap: 16px;
  }

  .hero-video-control {
    font-size: 0.52rem;
  }

  .hero-stage .booking-section {
    padding: 18px 0;
  }

  .hero-stage .booking-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .hero-stage .booking-intro h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    white-space: nowrap;
  }

  .hero-stage .booking-direct-link {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.52rem;
  }

  .place-section,
  .rooms-section,
  .dining-section,
  .location-section {
    padding-top: 90px;
  }

  .place-grid {
    grid-template-columns: 1fr;
  }

  .coordinates {
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    border-left: 0;
    padding-left: 0;
    writing-mode: horizontal-tb;
  }

  .place-description {
    max-width: 520px;
  }

  .place-word {
    margin-top: 60px;
    font-size: 21vw;
    line-height: 0.9;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .facts > div {
    min-height: 118px;
    padding: 18px 12px;
  }

  .facts strong {
    font-size: 2.2rem;
  }

  .section-heading {
    align-items: flex-end;
    margin-bottom: 40px;
  }

  .slider-actions {
    display: none;
  }

  .rooms-section {
    padding-bottom: 100px;
  }

  .section-heading-lead {
    margin-top: 20px;
    font-size: 0.94rem;
  }

  .rooms-track {
    --rooms-gutter: 20px;

    grid-auto-columns: 84vw;
    gap: 16px;
    padding-inline: var(--rooms-gutter);
  }

  .room-card-copy {
    grid-template-columns: 1fr;
  }

  .room-detail-trigger {
    width: max-content;
    margin-top: 16px;
  }

  .experience-section {
    grid-template-columns: 1fr;
  }

  .experience-image-wrap {
    min-height: 480px;
  }

  .experience-copy {
    max-width: none;
    padding: 85px 20px;
  }

  .image-break {
    height: 72svh;
  }

  .image-break img {
    object-position: 57% center;
  }

  .image-break-copy {
    right: 20px;
    bottom: 36px;
    left: 20px;
  }

  .dining-section {
    padding-bottom: 100px;
  }

  .dining-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dining-copy {
    padding-bottom: 30px;
  }

  .dining-images {
    min-height: 530px;
  }

  .dining-image-primary {
    width: 88%;
    height: 72%;
  }

  .dining-image-secondary {
    width: 58%;
    height: 40%;
  }

  .events-section {
    min-height: 680px;
    align-items: flex-end;
  }

  .events-section > img {
    object-position: 63% center;
  }

  .events-overlay {
    background: linear-gradient(0deg, rgba(18, 33, 39, 0.88), rgba(18, 33, 39, 0.06) 78%);
  }

  .events-copy {
    width: calc(100vw - 40px);
    margin: 0 20px 70px;
  }

  .testimonials-section {
    padding: 90px 0;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .testimonials-heading h2 {
    margin-bottom: 32px;
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .testimonials-controls .slider-actions {
    display: flex;
  }

  .testimonials-controls .slider-button {
    width: 46px;
    height: 46px;
  }

  .testimonial-card {
    min-height: 540px;
    padding: 30px 12px 30px 0;
  }

  .testimonial-mark {
    right: 0;
  }

  .testimonial-card blockquote p {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .location-section {
    padding-bottom: 90px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-heading {
    grid-column: auto;
  }

  .location-map {
    min-height: 420px;
    box-shadow: 14px 14px 0 rgba(200, 167, 106, 0.08);
  }

  .final-cta {
    min-height: 540px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 20px 30px;
  }

  .footer-legal {
    grid-column: auto;
  }

  .inner-hero {
    min-height: 330px;
    padding: 112px 0 44px;
  }

  .inner-hero.has-image {
    min-height: 58svh;
  }

  .inner-hero h1,
  .error-page h1 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .entry-content {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .post-list {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .prototype-note {
    margin-top: 10px;
  }

  dialog {
    padding: 56px 24px 34px;
  }

  dialog.hvl-home-popup,
  dialog.hvl-home-popup.hvl-home-popup--image-only {
    max-width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    padding: 0;
  }

  .hvl-home-popup--image-only .hvl-home-popup__image {
    max-width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
  }

  .hvl-home-popup__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .hvl-home-popup__copy {
    padding: 22px 20px 24px;
  }

  .booking-dialog form {
    grid-template-columns: 1fr;
  }

  .booking-dialog label:nth-child(3),
  .booking-dialog form .button {
    grid-column: auto;
  }

  .room-dialog ul {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Habitaciones / Rooms  (page-habitaciones.php, page-rooms.php)
   ========================================================================== */

.stay-main {
  background: var(--white);
}

/* --- Hero --- */
.stay-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 24px) 0 64px;
  overflow: hidden;
}

.stay-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 38, 49, 0.28) 0%, rgba(16, 38, 49, 0.12) 42%, rgba(16, 38, 49, 0.78) 100%);
}

.stay-hero-copy {
  position: relative;
  color: var(--white);
}

.stay-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  margin: 12px 0 0;
  color: var(--white);
}

.stay-hero-lead {
  max-width: 46ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* --- Intro --- */
.stay-intro {
  background: var(--paper);
  padding: 84px 0 72px;
}

.stay-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.stay-intro-lead {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.stay-facts {
  margin: 0;
}

/* --- Listado --- */
.stay-list {
  padding: 96px 0 40px;
}

.stay-list-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  color: var(--ink);
  margin: 0 0 56px;
}

.stay-row {
  padding: 0 0 88px;
}

.stay-row-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 60px;
  align-items: center;
}

.stay-row--reverse .stay-row-media {
  order: 2;
}

.stay-row-media {
  display: block;
  overflow: hidden;
  background: var(--mist);
}

.stay-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.stay-row-media:hover img,
.stay-row-media:focus-visible img {
  transform: scale(1.04);
}

.stay-row-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 10px 0 26px;
}

.stay-row-lead {
  color: var(--muted);
  line-height: 1.68;
  margin: 0 0 24px;
  max-width: 52ch;
}

/* --- Especificaciones --- */
.stay-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stay-specs > div {
  padding: 16px 22px;
  border-right: 1px solid var(--line);
}

.stay-specs > div:first-child {
  padding-left: 0;
}

.stay-specs > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.stay-specs dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 7px;
}

.stay-specs dd {
  margin: 0;
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.35;
}

.stay-specs--light {
  border-color: rgba(255, 255, 255, 0.22);
}

.stay-specs--light > div {
  border-right-color: rgba(255, 255, 255, 0.22);
}

.stay-specs--light dt {
  color: rgba(255, 255, 255, 0.62);
}

.stay-specs--light dd {
  color: var(--white);
}

/* --- Servicios de cada habitación --- */
.stay-features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.stay-features li {
  font-size: 0.83rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  line-height: 1.3;
}

.stay-row-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* --- Casa de Huéspedes --- */
.stay-guesthouse {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  margin-top: 24px;
}

.stay-guesthouse-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.stay-guesthouse-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin: 10px 0 22px;
}

.stay-guesthouse-copy > p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 0 28px;
}

.stay-guesthouse-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* --- Amenidades comunes --- */
.stay-amenities {
  background: var(--mist);
  padding: 88px 0;
}

.stay-amenities h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--ink);
  margin: 10px 0 40px;
}

.stay-amenities-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.stay-amenities-grid li {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.stay-amenities-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 1080px) {
  .stay-row-grid,
  .stay-guesthouse-grid,
  .stay-intro-grid {
    gap: 44px;
  }
}

@media (max-width: 992px) {
  .stay-intro-grid,
  .stay-row-grid,
  .stay-guesthouse-grid {
    grid-template-columns: 1fr;
  }

  .stay-row--reverse .stay-row-media {
    order: 0;
  }

  .stay-guesthouse-media {
    order: -1;
  }

  .stay-hero {
    min-height: 54vh;
  }
}

@media (max-width: 760px) {
  .stay-intro,
  .stay-amenities,
  .stay-guesthouse {
    padding: 60px 0;
  }

  .stay-list {
    padding: 64px 0 24px;
  }

  .stay-row {
    padding-bottom: 60px;
  }

  .stay-specs {
    grid-template-columns: 1fr;
  }

  .stay-specs > div,
  .stay-specs > div:first-child,
  .stay-specs > div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
  }

  .stay-specs > div:last-child {
    border-bottom: 0;
  }

  .stay-specs--light > div {
    border-bottom-color: rgba(255, 255, 255, 0.22);
  }

  .stay-row-actions {
    gap: 18px;
  }
}

/* ==========================================================================
   Habitación individual  (templates/room.php)
   ========================================================================== */

.room-main {
  background: var(--white);
}

.room-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 24px) 0 56px;
  overflow: hidden;
}

.room-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 38, 49, 0.3) 0%, rgba(16, 38, 49, 0.1) 40%, rgba(16, 38, 49, 0.8) 100%);
}

.room-hero-copy {
  position: relative;
  color: var(--white);
}

.room-back {
  display: inline-block;
  margin-bottom: 22px;
}

.room-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.06;
  color: var(--white);
  margin: 10px 0 0;
}

/* --- Resumen --- */
.room-overview {
  padding: 84px 0;
}

.room-overview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: start;
}

.room-lead {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.42;
  color: var(--ink);
  margin: 26px 0 22px;
}

.room-description {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 30px;
  max-width: 60ch;
}

.room-features-panel {
  background: var(--paper);
  padding: 34px 32px;
  border-top: 2px solid var(--gold);
}

.room-features-panel h2 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--body);
  font-weight: 600;
  margin: 0 0 16px;
}

.room-features-panel h2 + ul + h2 {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.room-features {
  margin-bottom: 0;
}

.room-amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.room-amenities li {
  color: var(--text);
  font-size: 0.92rem;
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.room-amenities li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}

/* --- Galería --- */
.room-gallery {
  background: var(--mist);
  padding: 88px 0;
}

.room-gallery h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--ink);
  margin: 10px 0 40px;
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.room-gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.room-gallery-item--wide {
  grid-column: 1 / -1;
}

.room-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.room-gallery-item--wide img {
  aspect-ratio: 16 / 7;
}

.room-gallery-item:hover img {
  transform: scale(1.03);
}

/* --- Otras habitaciones --- */
.room-others {
  padding: 88px 0;
}

.room-others h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--ink);
  margin: 0 0 40px;
}

.room-others-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.room-others-grid .room-card {
  width: auto;
  min-width: 0;
  flex: initial;
}

@media (max-width: 992px) {
  .room-overview-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .room-others-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-hero {
    min-height: 50vh;
  }
}

@media (max-width: 760px) {
  .room-overview,
  .room-gallery,
  .room-others {
    padding: 58px 0;
  }

  .room-gallery-grid,
  .room-others-grid {
    grid-template-columns: 1fr;
  }

  .room-gallery-item--wide img {
    aspect-ratio: 3 / 2;
  }

  .room-features-panel {
    padding: 28px 24px;
  }
}

/* ==========================================================================
   Banners promocionales de la portada  (template-parts/home-banners.php)
   ========================================================================== */

.home-banners {
  background: var(--paper);
  padding: 56px 0;
}

.home-banners-stack {
  display: grid;
  gap: 22px;
}

.home-banner {
  display: block;
  overflow: hidden;
  background: var(--mist);
  position: relative;
  transition: box-shadow 0.5s var(--ease);
}

.home-banner-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.9s var(--ease);
}

a.home-banner:hover .home-banner-image,
a.home-banner:focus-visible .home-banner-image {
  transform: scale(1.015);
}

a.home-banner:hover {
  box-shadow: 0 18px 44px rgba(24, 51, 67, 0.16);
}

a.home-banner:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .home-banners {
    padding: 40px 0;
  }

  .home-banners-stack {
    gap: 16px;
  }
}

/* ==========================================================================
   Experiencias  (template-parts/experiences.php)
   ========================================================================== */

.exp-main {
  background: var(--white);
}

.exp-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 24px) 0 60px;
  overflow: hidden;
}

.exp-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 38, 49, 0.3) 0%, rgba(16, 38, 49, 0.12) 42%, rgba(16, 38, 49, 0.8) 100%);
}

.exp-hero-copy {
  position: relative;
  color: var(--white);
}

.exp-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  line-height: 1.04;
  color: var(--white);
  margin: 12px 0 0;
}

/* --- Intro --- */
.exp-intro {
  background: var(--paper);
  padding: 84px 0 0;
}

.exp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.exp-intro-lead {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.exp-intro-body p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 16px;
}

/* --- Navegación por anclas --- */
.exp-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 52px;
  padding-bottom: 72px;
}

.exp-jump a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.exp-jump a:hover,
.exp-jump a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* --- Tours --- */
.exp-section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  color: var(--ink);
  margin: 10px 0 56px;
}

.exp-tours {
  padding: 92px 0 40px;
  scroll-margin-top: var(--header-height);
}

.exp-tour {
  padding-bottom: 84px;
  scroll-margin-top: var(--header-height);
}

.exp-tour-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.exp-tour--reverse .exp-tour-media {
  order: 2;
}

.exp-tour-media {
  overflow: hidden;
  background: var(--mist);
}

.exp-tour-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.exp-tour:hover .exp-tour-media img {
  transform: scale(1.03);
}

.exp-tour-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 22px;
}

.exp-tour-copy p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 16px;
  max-width: 56ch;
}

.exp-tour-meta {
  list-style: none;
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.exp-tour-meta li {
  font-size: 0.86rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.exp-tour-meta li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}

.exp-tour-price {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--wine);
  margin: 22px 0 26px !important;
}

/* --- Actividades --- */
.exp-activities {
  background: var(--mist);
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.exp-activities-grid {
  border-top: 1px solid var(--line);
}

.exp-activity {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: 20px 48px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.exp-activity h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.exp-activity p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 0;
  max-width: 62ch;
}

/* --- Aeródromo --- */
.exp-airfield {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  scroll-margin-top: var(--header-height);
}

.exp-airfield-head h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin: 10px 0 24px;
}

.exp-airfield-lead {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 18px;
  max-width: 54ch;
}

.exp-airfield-body {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
  max-width: 58ch;
  margin: 0;
}

.exp-airfield-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 54px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.exp-airfield-specs > div {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.exp-airfield-specs > div:nth-child(3n + 1) {
  padding-left: 0;
}

.exp-airfield-specs > div:nth-child(3n) {
  border-right: 0;
  padding-right: 0;
}

.exp-airfield-specs dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px;
}

.exp-airfield-specs dd {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.36;
}

.exp-airfield-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.exp-airfield-gallery figure {
  margin: 0;
  overflow: hidden;
}

.exp-airfield-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.exp-airfield-actions {
  margin-top: 44px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .exp-intro-grid,
  .exp-tour-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exp-tour--reverse .exp-tour-media {
    order: 0;
  }

  .exp-airfield-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exp-airfield-specs > div,
  .exp-airfield-specs > div:nth-child(3n),
  .exp-airfield-specs > div:nth-child(3n + 1) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 26px;
    padding-right: 26px;
  }

  .exp-airfield-specs > div:nth-child(2n + 1) {
    padding-left: 0;
  }

  .exp-airfield-specs > div:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .exp-airfield-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .exp-airfield-gallery figure:first-child {
    grid-column: 1 / -1;
  }

  .exp-activity {
    gap: 8px 32px;
  }

  .exp-hero {
    min-height: 52vh;
  }
}

@media (max-width: 760px) {
  .exp-intro {
    padding-top: 58px;
  }

  .exp-jump {
    margin-top: 38px;
    padding-bottom: 52px;
  }

  .exp-tours {
    padding: 62px 0 20px;
  }

  .exp-tour {
    padding-bottom: 58px;
  }

  .exp-activities,
  .exp-airfield {
    padding: 62px 0;
  }

  .exp-airfield-specs {
    grid-template-columns: 1fr;
  }

  .exp-airfield-specs > div,
  .exp-airfield-specs > div:nth-child(2n),
  .exp-airfield-specs > div:nth-child(2n + 1),
  .exp-airfield-specs > div:nth-child(3n),
  .exp-airfield-specs > div:nth-child(3n + 1) {
    border-right: 0;
    padding: 18px 0;
  }

  .exp-airfield-gallery {
    grid-template-columns: 1fr;
  }

  .exp-activity {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
}

/* ==========================================================================
   Eventos  (template-parts/events.php)
   ========================================================================== */

.ev-main {
  background: var(--white);
}

.ev-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 24px) 0 60px;
  overflow: hidden;
}

.ev-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 38, 49, 0.32) 0%, rgba(16, 38, 49, 0.12) 40%, rgba(16, 38, 49, 0.82) 100%);
}

.ev-hero-copy {
  position: relative;
  color: var(--white);
}

.ev-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  line-height: 1.04;
  color: var(--white);
  margin: 12px 0 0;
}

.ev-hero-lead {
  max-width: 48ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.ev-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* --- Intro --- */
.ev-intro {
  background: var(--paper);
  padding: 84px 0;
}

.ev-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ev-intro-lead {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.ev-intro-body p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 16px;
}

/* --- Tipos de evento --- */
.ev-types {
  padding: 92px 0 40px;
  scroll-margin-top: var(--header-height);
}

.ev-type {
  padding-bottom: 88px;
  scroll-margin-top: var(--header-height);
}

.ev-type-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.ev-type--reverse .ev-type-media {
  order: 2;
}

.ev-type-media {
  display: block;
  overflow: hidden;
  background: var(--mist);
}

.ev-type-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.ev-type-media:hover img,
.ev-type-media:focus-visible img {
  transform: scale(1.04);
}

.ev-type-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.9vw, 2.4rem);
  line-height: 1.16;
  color: var(--ink);
  margin: 10px 0 22px;
  max-width: 20ch;
}

.ev-type-copy p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 16px;
  max-width: 56ch;
}

/* --- Espacios --- */
.ev-section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  color: var(--ink);
  margin: 10px 0 48px;
}

.ev-venues {
  background: var(--mist);
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.ev-venues-list {
  border-top: 1px solid var(--line);
}

.ev-venue {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.8fr) minmax(0, 1.5fr);
  gap: 18px 44px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.ev-venue h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.ev-venue-specs {
  margin: 0;
  display: grid;
  gap: 12px;
}

.ev-venue-specs dt {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}

.ev-venue-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.ev-venue > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 0;
}

/* --- Testimonios --- */
.ev-testimonials {
  padding: 88px 0;
}

.ev-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.ev-testimonial {
  margin: 0;
  padding: 32px 30px;
  background: var(--paper);
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ev-testimonial blockquote {
  margin: 0;
  flex: 1;
}

.ev-testimonial blockquote p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.ev-testimonial figcaption {
  display: grid;
  gap: 4px;
}

.ev-testimonial figcaption strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 400;
}

.ev-testimonial figcaption span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- CTA final --- */
.ev-cta {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0;
}

.ev-cta-inner {
  text-align: center;
}

.ev-cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: var(--white);
  margin: 0 0 16px;
}

.ev-cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 52ch;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ev-intro-grid,
  .ev-type-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ev-type--reverse .ev-type-media {
    order: 0;
  }

  .ev-venue {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px 32px;
  }

  .ev-venue > p {
    grid-column: 1 / -1;
  }

  .ev-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ev-hero {
    min-height: 56vh;
  }
}

@media (max-width: 760px) {
  .ev-intro,
  .ev-venues,
  .ev-testimonials,
  .ev-cta {
    padding: 60px 0;
  }

  .ev-types {
    padding: 62px 0 20px;
  }

  .ev-type {
    padding-bottom: 60px;
  }

  .ev-venue {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .ev-venue-specs {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }

  .ev-hero-actions {
    gap: 18px;
  }
}

/* ==========================================================================
   Micrositios de eventos  (template-parts/microsite.php)
   ========================================================================== */

.ms-main {
  background: var(--white);
}

.ms-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  /* el encabezado es fijo: el hero reserva su altura para no quedar debajo */
  padding: calc(var(--header-height) + 24px) 0 64px;
  overflow: hidden;
}

.ms-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 38, 49, 0.34) 0%, rgba(16, 38, 49, 0.14) 38%, rgba(16, 38, 49, 0.84) 100%);
}

.ms-hero-copy {
  position: relative;
  color: var(--white);
}

.ms-hero-copy h1 {
  font-family: var(--display);
  /* títulos largos: hasta ~100 caracteres, así que baja el cuerpo y ensancha la caja */
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  line-height: 1.14;
  color: var(--white);
  margin: 12px 0 0;
  max-width: 28ch;
  text-wrap: balance;
}

.ms-hero-lead {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.88);
}

.ms-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* --- Navegación interna --- */
.ms-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.ms-jump a {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 19px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.ms-jump a:hover,
.ms-jump a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* --- La experiencia --- */
.ms-experience {
  padding: 84px 0;
}

.ms-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.5fr);
  gap: 56px;
  align-items: start;
}

.ms-experience-grid h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.18;
}

.ms-experience-body p {
  color: var(--muted);
  line-height: 1.76;
  margin: 0 0 18px;
  max-width: 62ch;
}

.ms-experience-body p:first-child {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
}

/* --- Secciones --- */
.ms-section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--ink);
  margin: 10px 0 20px;
}

.ms-section-lead {
  color: var(--muted);
  line-height: 1.72;
  max-width: 66ch;
  margin: 0 0 44px;
}

/* --- Espacios --- */
.ms-spaces {
  background: var(--paper);
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.ms-spaces-list {
  border-top: 1px solid var(--line);
}

.ms-space {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: 20px 48px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.ms-space h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.28;
}

.ms-space p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 0;
  max-width: 62ch;
}

/* --- Servicios --- */
.ms-services {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.ms-services .ms-section-title {
  color: var(--white);
}

.ms-services-lead {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
  max-width: 62ch;
  margin: 0 0 46px;
}

.ms-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.ms-services-grid h3 {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.ms-services-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ms-services-grid li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.ms-services-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}

/* --- Galería --- */
.ms-gallery {
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.ms-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.ms-gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.ms-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.ms-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.ms-gallery-item:first-child img {
  aspect-ratio: 3 / 2.02;
}

.ms-gallery-item:hover img {
  transform: scale(1.03);
}

.ms-credits {
  margin-block: 26px 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* --- Testimonios --- */
.ms-testimonials {
  background: var(--paper);
}

/* --- FAQ --- */
.ms-faq {
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

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

.ms-faq-item {
  border-bottom: 1px solid var(--line);
}

.ms-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}

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

.ms-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
  line-height: 1;
}

.ms-faq-item[open] summary::after {
  content: "−";
}

.ms-faq-item summary:hover,
.ms-faq-item summary:focus-visible {
  color: var(--wine);
}

.ms-faq-item p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.76;
  max-width: 74ch;
  padding-right: 44px;
}

/* --- Cotizar --- */
.ms-quote {
  background: var(--mist);
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.ms-quote-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.34;
  color: var(--ink);
  margin: 0 0 44px;
  max-width: 32ch;
}

.ms-quote-form input[type="text"],
.ms-quote-form input[type="email"],
.ms-quote-form input[type="tel"],
.ms-quote-form input[type="date"],
.ms-quote-form select,
.ms-quote-form textarea {
  background: var(--white);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ms-experience-grid,
  .ms-services-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ms-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ms-gallery-item:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .ms-hero {
    min-height: 62vh;
  }

  .ms-space {
    gap: 8px 32px;
  }
}

@media (max-width: 760px) {
  .ms-experience,
  .ms-spaces,
  .ms-services,
  .ms-gallery,
  .ms-faq,
  .ms-quote {
    padding: 60px 0;
  }

  .ms-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ms-gallery-item:first-child {
    grid-column: auto;
  }

  .ms-space {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .ms-hero-actions {
    gap: 18px;
  }

  .ms-faq-item summary {
    padding-right: 36px;
  }
}

/* --- Galería de eventos (templates/events-gallery.php) --- */
.gal-hero {
  padding: calc(var(--header-height) + 56px) 0 48px;
  background: var(--paper);
}

.gal-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.06;
  color: var(--ink);
  margin: 12px 0 0;
}

.gal-hero-lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
  margin: 20px 0 0;
}

.gal-group {
  padding: 62px 0 0;
}

.gal-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.gal-group-head h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--ink);
  margin: 0;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gal-item {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.gal-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.gal-item:hover img {
  transform: scale(1.04);
}

.gal-credits {
  margin-block: 44px 62px;
}

@media (max-width: 992px) {
  .gal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gal-hero {
    padding: calc(var(--header-height) + 32px) 0 36px;
  }

  .gal-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Formularios: el select debe verse igual que el resto de los campos --- */
.wpcf7 select,
.hvl-builder-page .wpcf7 select,
.ms-quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 2.6rem 0.85rem 1rem;
  border: 1px solid rgba(24, 51, 67, 0.18);
  border-radius: 0;
  background-color: #fff;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.3;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2320323b' stroke-width='1.4' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  cursor: pointer;
}

.wpcf7 select:focus-visible,
.hvl-builder-page .wpcf7 select:focus-visible,
.ms-quote-form select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* El formulario de los micrositios usa la misma retícula que el resto */
.ms-quote-form .wpcf7 input[type="text"],
.ms-quote-form .wpcf7 input[type="email"],
.ms-quote-form .wpcf7 input[type="tel"],
.ms-quote-form .wpcf7 input[type="date"],
.ms-quote-form .wpcf7 textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(24, 51, 67, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
}

.ms-quote-form .wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

.ms-quote-form .wpcf7 label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.ms-quote-form .wpcf7 input[type="submit"] {
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border: 0;
  background: var(--wine);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s var(--ease);
}

.ms-quote-form .wpcf7 input[type="submit"]:hover {
  background: var(--wine-dark);
}

/* ==========================================================================
   Restaurant  (template-parts/dining.php)
   ========================================================================== */

.din-main {
  background: var(--white);
}

.din-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 24px) 0 60px;
  overflow: hidden;
}

.din-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.din-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 38, 49, 0.3) 0%, rgba(16, 38, 49, 0.12) 42%, rgba(16, 38, 49, 0.8) 100%);
}

.din-hero-copy {
  position: relative;
  color: var(--white);
}

.din-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  line-height: 1.04;
  color: var(--white);
  margin: 12px 0 0;
}

.din-intro {
  background: var(--paper);
  padding: 84px 0;
}

.din-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.din-intro-lead {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.din-intro-body p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 22px;
}

.din-section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--ink);
  margin: 10px 0 40px;
}

/* --- Horarios --- */
.din-hours {
  padding: 88px 0;
}

.din-hours-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.din-hours-list > div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr);
  gap: 20px 48px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.din-hours-list dt {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: var(--ink);
  margin: 0;
}

.din-hours-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.din-hours-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 60ch;
}

/* --- Galería --- */
.din-gallery {
  background: var(--mist);
  padding: 88px 0;
}

.din-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.din-gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.din-gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.din-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.din-gallery-item--wide img {
  aspect-ratio: 3 / 2.04;
}

.din-gallery-item:hover img {
  transform: scale(1.03);
}

/* --- Reserva --- */
.din-reserve {
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.din-reserve-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--ink);
  margin: 0 0 44px;
}

@media (max-width: 992px) {
  .din-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .din-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .din-gallery-item--wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .din-hero {
    min-height: 52vh;
  }
}

@media (max-width: 760px) {
  .din-intro,
  .din-hours,
  .din-gallery,
  .din-reserve {
    padding: 60px 0;
  }

  .din-gallery-grid {
    grid-template-columns: 1fr;
  }

  .din-gallery-item--wide {
    grid-column: auto;
  }

  .din-hours-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
}

/* ==========================================================================
   Casa de Huéspedes, Contacto, Ubicación y Menú
   ========================================================================== */

.gh-main,
.con-main,
.menu-main {
  background: var(--white);
}

/* --- Casa de Huéspedes --- */
.gh-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 24px) 0 56px;
  overflow: hidden;
}

.gh-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* la fachada queda algo lejana en el original: se encuadra más cerca */
  object-position: center 58%;
  transform: scale(1.12);
  transform-origin: center 58%;
}

.gh-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 38, 49, 0.3) 0%, rgba(16, 38, 49, 0.12) 42%, rgba(16, 38, 49, 0.8) 100%);
}

.gh-hero-copy {
  position: relative;
  color: var(--white);
}

.gh-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.06;
  color: var(--white);
  margin: 12px 0 0;
}

.gh-hero-lead {
  max-width: 52ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.88);
}

.gh-intro {
  background: var(--paper);
  padding: 76px 0;
}

.gh-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.gh-intro-lead {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.42;
  color: var(--ink);
  margin: 0;
}

.gh-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.gh-facts > div {
  padding: 20px 16px 20px 0;
  border-bottom: 1px solid var(--line);
}

.gh-facts strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--ink);
  font-weight: 400;
}

.gh-facts span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.gh-section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--ink);
  margin: 10px 0 40px;
}

.gh-rooms {
  padding: 84px 0;
}

.gh-rooms-list {
  border-top: 1px solid var(--line);
}

.gh-room {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: 18px 48px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.gh-room h3 {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--ink);
  margin: 0;
}

.gh-room p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.66;
  margin: 0;
}

.gh-facilities {
  background: var(--ink);
  color: var(--white);
  padding: 84px 0;
}

.gh-facilities .gh-section-title {
  color: var(--white);
}

.gh-facilities-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 40px;
}

.gh-facilities-grid li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.gh-facilities-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}

.gh-gallery {
  padding: 84px 0;
}

.gh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gh-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.gh-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.gh-gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gh-cta {
  background: var(--ink);
  color: var(--white);
  padding: 84px 0;
}

.gh-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--white);
  margin: 0 0 16px;
}

.gh-cta p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 52ch;
}

/* --- Contacto y Ubicación --- */
.con-hero {
  padding: calc(var(--header-height) + 56px) 0 44px;
  background: var(--paper);
}

.con-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.06;
  color: var(--ink);
  margin: 12px 0 0;
}

.con-details {
  padding: 62px 0;
}

.con-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.con-card {
  border-top: 2px solid var(--gold);
  padding: 26px 0 0;
}

.con-card h2 {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 16px;
}

.con-card ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.con-card a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease);
}

.con-card a:hover {
  border-color: var(--wine);
}

.con-card p {
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 14px;
}

.con-section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--ink);
  margin: 10px 0 36px;
}

.con-directions {
  background: var(--mist);
  padding: 76px 0;
}

.con-directions-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.con-directions-list > div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr);
  gap: 16px 48px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.con-directions-list dt {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--ink);
}

.con-directions-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 0.96rem;
}

.con-map iframe {
  display: block;
  width: 100%;
}

.con-form {
  padding: 84px 0;
  scroll-margin-top: var(--header-height);
}

.con-form-lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
  margin: -20px 0 40px;
}

/* --- Menú / QR --- */
.menu-hero-lead {
  color: var(--muted);
  max-width: 52ch;
  margin: 20px 0 0;
  line-height: 1.66;
}

.menu-body {
  padding: 76px 0 96px;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
}

.menu-qr {
  margin: 0;
  background: var(--paper);
  padding: 28px;
  text-align: center;
}

.menu-qr img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}

.menu-qr figcaption {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-actions h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--ink);
  margin: 0 0 16px;
}

.menu-actions p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 48ch;
}

.menu-back {
  display: inline-block;
  margin-top: 22px;
}

@media (max-width: 992px) {
  .gh-intro-grid,
  .con-details-grid,
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gh-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-hero {
    min-height: 50vh;
  }
}

@media (max-width: 760px) {
  .gh-intro,
  .gh-rooms,
  .gh-facilities,
  .gh-gallery,
  .gh-cta,
  .con-directions,
  .con-form,
  .menu-body {
    padding: 58px 0;
  }

  .con-hero {
    padding: calc(var(--header-height) + 32px) 0 32px;
  }

  .gh-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gh-room,
  .con-directions-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .gh-facts > div {
    padding-right: 10px;
  }
}

/* --- Modalidades de estadía (Habitaciones) --- */
.stay-board {
  background: var(--paper);
  padding: 84px 0;
}

.stay-board h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--ink);
  margin: 10px 0 40px;
}

.stay-board-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.stay-board-item {
  padding: 28px 26px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.stay-board-item:first-child {
  padding-left: 0;
}

.stay-board-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.stay-board-item h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}

.stay-board-item p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.66;
  margin: 0;
}

.din-hours-detail {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .stay-board {
    padding: 58px 0;
  }

  .stay-board-list {
    grid-template-columns: 1fr;
  }

  .stay-board-item,
  .stay-board-item:first-child,
  .stay-board-item:last-child {
    border-right: 0;
    padding: 22px 0;
  }
}
