:root {
  --green: #1F2D22;
  --gold: #B8945C;
  --gold-hover: #A4824E;
  --cream: #FAF8F5;
  --text: #2B2B2B;
  --muted: #555555;
  --white: #FFFFFF;
  --line: rgba(31, 45, 34, 0.16);
  --header-height: 72px;
  --header-mobile-height: 72px;
  --booking-bar-height: 70px;
  --font-page-title: clamp(2.35rem, 5vw, 4.5rem);
  --font-section-title: clamp(2rem, 3.5vw, 3.25rem);
  --font-card-title: clamp(1.75rem, 3vw, 3rem);
  --font-item-title: 0.875rem;
  --font-body-small: 0.75rem;
  --font-body-medium: 0.8125rem;
  --font-metadata: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  padding-bottom: var(--booking-bar-height);
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

.editorial-image {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  object-position: center;
}

.editorial-image > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

.balance-text,
.avoid-widows {
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.75rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section {
  padding: 88px 0;
}

.section-compact {
  padding: 34px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 14px clamp(20px, 4vw, 56px);
  background: var(--green);
  color: var(--white);
  transition: background-color 300ms ease;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
}

.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
}

.site-logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 190px;
  object-fit: contain;
}

.main-nav {
  display: none;
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--green);
}

.btn-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.63rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 70px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.hero-content h1,
.hero-content p {
  color: var(--white);
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 360px);
  margin-top: 8px;
}

body:has(.hero-home) .site-header {
  background: rgba(31, 45, 34, 0.12);
  backdrop-filter: blur(2px);
}

body:has(.hero-home) .site-header.header-scrolled {
  background: var(--green);
}

.hero-home {
  min-height: 100vh;
  padding: var(--header-height) 0 72px;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(184, 148, 92, 0.1);
  pointer-events: none;
}

.hero-home .hero-overlay {
  background: rgba(0, 0, 0, 0.46);
}

.hero-home .hero-content {
  z-index: 2;
  gap: 14px;
  width: min(860px, calc(100% - 48px));
}

.hero-home .hero-eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
}

.hero-home h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 58px);
  font-weight: 400;
  line-height: 0.98;
}

.hero-home .hero-subtitle {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(16px, 2vw, 18px);
  font-style: italic;
  font-weight: 400;
  text-wrap: balance;
}

.hero-home .hero-content > p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.65;
}

.hero-home .hero-actions {
  flex-direction: row;
  justify-content: center;
  width: auto;
  gap: 12px;
  margin-top: 10px;
}

.hero-home .btn {
  min-height: 38px;
  padding: 0 26px;
  font-size: 10px;
  letter-spacing: 1.8px;
}

.hero-home .btn-primary {
  background: rgba(184, 148, 92, 0.82);
  border-color: rgba(184, 148, 92, 0.85);
}

.hero-home .btn-primary:hover {
  background: rgba(184, 148, 92, 1);
  border-color: rgba(184, 148, 92, 1);
}

.hero-home .btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.hero-home .btn-secondary:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.distance-strip,
.ratings {
  background: var(--white);
}

.distance-strip {
  margin: 0;
  padding: 24px 0;
  background: var(--green);
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: center;
}

.distance-strip .distance-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.distance-strip .distance-grid article {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  min-width: 204px;
  padding: 8px 22px;
  border: 1px solid var(--gold);
  text-align: center;
}

.distance-strip .distance-grid article:last-child {
  width: auto;
  margin-inline: 0;
}

.distance-strip .distance-grid strong {
  color: var(--gold);
  font-size: 1.18rem;
  line-height: 1;
}

.distance-strip .distance-grid span {
  color: var(--white);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.distance-grid article:last-child {
  grid-column: 1 / -1;
  width: min(220px, 100%);
  margin-inline: auto;
}

.distance-grid strong {
  display: block;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1;
}

.distance-grid span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rating-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.rating-card img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.rating-score {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 0.94rem;
  letter-spacing: 2px;
  line-height: 1;
}

.feature-section {
  background: var(--cream);
}

.feature-alt {
  background: var(--white);
}

.feature-grid {
  display: grid;
  gap: 34px;
}

.carousel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #e8e1d8;
}

.carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.carousel img.is-active {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: var(--white);
  color: var(--green);
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.carousel-arrow::before {
  content: "";
  display: flex;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  line-height: 1;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--white);
}

.carousel-arrow-prev::before {
  transform: rotate(-135deg);
}

.carousel-arrow-next::before {
  transform: rotate(45deg);
}

.carousel-arrow-prev {
  left: 18px;
}

.carousel-arrow-next {
  right: 18px;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.spa-feature {
  margin-block: 0;
  padding-block: 0;
  background: var(--white);
}

.spa-feature-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 0;
  align-items: stretch;
}

.spa-gallery {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.spa-gallery img {
  transition-duration: 450ms;
}

.spa-copy {
  padding: 40px clamp(40px, 8vw, 96px);
}

.spa-copy .eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.spa-copy h2 {
  max-width: 560px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.spa-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.feature-check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.feature-check-list li {
  position: relative;
  padding-left: 26px;
}

.feature-check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.spa-copy .arrow-link {
  width: max-content;
  border-bottom: 1px solid var(--gold);
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.spa-copy .arrow-link:hover {
  color: var(--gold);
  letter-spacing: 0.13em;
}

.gastronomy-feature {
  margin-block: 0;
  padding-block: 0;
  background: var(--green);
}

.gastronomy-feature-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 0;
  align-items: stretch;
}

.gastronomy-gallery {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.gastronomy-gallery img {
  transition-duration: 450ms;
}

.gastronomy-copy {
  padding: 40px clamp(40px, 8vw, 96px);
}

.gastronomy-copy .eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.gastronomy-copy h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.gastronomy-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.gastronomy-copy .arrow-link {
  width: max-content;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.gastronomy-copy .arrow-link:hover {
  color: var(--white);
  letter-spacing: 0.13em;
}

.rooms-feature {
  margin-block: 0;
  padding-block: 0;
  background: var(--white);
}

.rooms-feature-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 0;
  align-items: stretch;
}

.rooms-gallery {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.rooms-gallery img {
  transition-duration: 450ms;
}

.rooms-copy {
  padding: 40px clamp(40px, 8vw, 96px);
}

.rooms-copy .eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.rooms-copy h2 {
  max-width: 560px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.rooms-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.rooms-copy .arrow-link {
  width: max-content;
  border-bottom: 1px solid var(--gold);
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.rooms-copy .arrow-link:hover {
  color: var(--gold);
  letter-spacing: 0.13em;
}

.arrow-link {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, letter-spacing 180ms ease;
}

.arrow-link:hover {
  color: var(--gold-hover);
  letter-spacing: 0.17em;
}

.room-grid,
.experience-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.room-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #e8e1d8;
}

.room-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.room-card:hover img {
  transform: scale(1.055);
}

.room-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 44px 22px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  color: var(--white);
}

.room-overlay strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.1;
}

.room-overlay small {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#rooms-grid .section-heading {
  margin-bottom: 40px;
}

#rooms-grid .section-heading .eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

#rooms-grid .section-heading h2 {
  color: var(--green);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

#rooms-grid .section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

#rooms-grid .room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transition: background 450ms ease;
}

#rooms-grid .room-card:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

#rooms-grid .room-overlay {
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
}

#rooms-grid .room-overlay strong {
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  font-weight: 400;
}

#rooms-grid .room-overlay small {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.experience-card {
  display: grid;
  gap: 18px;
  background: var(--white);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.experience-card div {
  padding: 0 6px 8px;
}

.experiences {
  background: #fffefd;
}

.experiences .section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.experiences .section-heading .eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.experiences .section-heading h2 {
  color: var(--green);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.experiences .section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.experiences .experience-grid {
  max-width: 860px;
  margin: 0 auto;
  gap: 24px;
}

.experiences .experience-card {
  gap: 0;
  background: var(--white);
}

.experiences .experience-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.experiences .experience-card div {
  display: grid;
  gap: 10px;
  padding: 20px 18px 24px;
}

.experience-tag {
  display: inline-block;
  width: max-content;
  background: #efe6d5;
  color: var(--text);
  padding: 5px 10px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.experiences .experience-card h3 {
  color: var(--green);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.experiences .experience-card p {
  color: var(--text);
  font-size: 11px;
  line-height: 1.55;
}

.institutional-banner {
  position: relative;
  overflow: hidden;
  background-image: url("../img/home/fondo-la-olivia.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}

.institutional-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(31, 45, 34, 0.72);
}

.institutional-banner::after {
  content: none;
}

.institutional-banner h2,
.institutional-banner p {
  color: var(--white);
}

.banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.banner-content .eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.banner-content h2 {
  max-width: 620px;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.04;
}

.banner-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.6;
}

.banner-stats {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin-top: 8px;
}

.banner-stats > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(184, 148, 92, 0.85);
  background: transparent;
  color: rgba(184, 148, 92, 0.96);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.banner-stats strong {
  display: inline;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
}

.banner-stats em {
  color: rgba(184, 148, 92, 0.96);
  font-style: normal;
}

.banner-cta {
  min-height: 40px;
  margin-top: 8px;
  padding: 0 24px;
  font-size: 10px;
  letter-spacing: 1.6px;
}

.testimonials {
  background: var(--white);
}

.testimonials .section-heading h2 {
  color: var(--green);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.testimonial-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: visible;
  --testimonial-gap: 16px;
  --testimonial-visible: 3;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 420ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonial-visible) - 1) * var(--testimonial-gap)) / var(--testimonial-visible));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 20px;
  background: #f7f7f7;
}

.testimonial-card p {
  color: #3a3a3a;
  font-size: 11.5px;
  line-height: 1.5;
}

.testimonial-card strong {
  font-weight: 700;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.testimonial-card cite {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.testimonial-card footer span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
}

.testimonial-arrow {
  position: absolute;
  z-index: 20;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonial-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.testimonial-arrow-prev {
  left: -20px;
}

.testimonial-arrow-prev::before {
  transform: rotate(-135deg);
}

.testimonial-arrow-next {
  right: -20px;
}

.testimonial-arrow-next::before {
  transform: rotate(45deg);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8d8d8;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--green);
}

.faq-section {
  width: 100%;
  background: #f8f3eb;
}

.faq-section .narrow {
  width: min(980px, calc(100% - 40px));
}

.faq-section .section-heading {
  margin-bottom: 32px;
}

.faq-section .section-heading h2 {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--white);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 16px 22px;
  border: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  background: var(--white);
  transition: grid-template-rows 240ms ease;
}

.faq-panel p {
  overflow: hidden;
  padding: 0 58px 0 22px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel p {
  padding-bottom: 18px;
}

.faq-item.is-open button span {
  transform: rotate(225deg);
}

.contact-section {
  width: 100%;
  background: #2c3e2f;
}

.contact-grid {
  display: grid;
  width: 100%;
  margin: 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(24px, 8vw, 120px);
}

.contact-content .eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.contact-content h2 {
  max-width: 520px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  font-weight: 400;
}

.contact-content > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-list .contact-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  grid-column: 1 / -1;
  color: inherit;
}

.contact-list span {
  color: var(--gold);
  line-height: 1.55;
}

.contact-list svg {
  display: block;
  width: 15px;
  height: 15px;
  color: #B8945C;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-map {
  min-height: 460px;
  margin: 0;
  padding: 0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  margin: 0;
  padding: 0;
  filter: grayscale(0.25);
}

.site-footer {
  background: #1f2a1f;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.experiences-page-link {
  margin-top: 38px;
  text-align: center;
}

.sustainability-section {
  padding: 74px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.sustainability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.sustainability-copy h2 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 400;
}

.sustainability-copy > p:last-child {
  max-width: 650px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.75;
}

.sustainability-badge {
  display: grid;
  place-items: center;
  min-height: 230px;
  border: 1px solid rgba(184, 148, 92, 0.55);
  background: rgba(255, 255, 255, 0.55);
}

.sustainability-badge img {
  display: none;
  width: min(75%, 280px);
  max-height: 190px;
  object-fit: contain;
}

.sustainability-badge.has-image img { display: block; }
.sustainability-badge.has-image .sustainability-placeholder { display: none; }

.sustainability-placeholder {
  display: grid;
  justify-items: center;
  gap: 13px;
  color: var(--green);
  width: min(100% - 48px, 390px);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.sustainability-placeholder strong {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.sustainability-placeholder p {
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.sustainability-placeholder small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.sustainability-placeholder svg {
  width: 58px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.booking-bar {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: var(--booking-bar-height);
  background: rgba(31, 45, 34, 0.9);
  border-top: 1px solid rgba(184, 148, 92, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.booking-bar a {
  min-width: 220px;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  transition: background 220ms ease, color 220ms ease;
}

.booking-bar a:hover {
  background: var(--gold);
  color: var(--green);
}

.gallery-section { background: var(--cream); }
.gallery-intro { max-width: 760px; }
.gallery-intro h1,
.gallery-intro h2 { color: var(--green); font-size: var(--font-page-title); font-weight: 400; line-height: 1.05; }
.gallery-intro p:last-child { margin-top: 14px; font-size: 13px; }
.gallery-group + .gallery-group { margin-top: 58px; }
.gallery-group h3 { margin-bottom: 20px; font-size: 1.75rem; font-weight: 400; }
.general-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.general-gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: var(--green); cursor: zoom-in; }
.general-gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 500ms ease, opacity 300ms ease; }
.general-gallery-item:hover img { transform: scale(1.035); opacity: 0.86; }
.gallery-modal[hidden] { display: none; }
.gallery-modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 70px 86px; background: rgba(12, 18, 13, 0.96); }
.gallery-modal-figure { display: grid; justify-items: center; max-width: 100%; max-height: 100%; margin: 0; }
.gallery-modal-figure img { max-width: 100%; max-height: calc(100vh - 150px); object-fit: contain; }
.gallery-modal-figure figcaption { margin-top: 14px; color: var(--gold); font-size: 11px; letter-spacing: 0.16em; }
.gallery-modal button { position: absolute; border: 0; background: transparent; color: var(--white); cursor: pointer; }
.gallery-modal-close { top: 22px; right: 28px; width: 42px; height: 42px; font-size: 34px; font-weight: 200; }
.gallery-modal-arrow { top: 50%; width: 58px; height: 72px; font-family: Georgia, serif; font-size: 42px; transform: translateY(-50%); }
.gallery-modal-prev { left: 18px; }
.gallery-modal-next { right: 18px; }
.gallery-modal-open { overflow: hidden; }
.gallery-page main { padding-top: var(--header-height); }
.gallery-page .gallery-page-content { padding-top: 72px; }

.experiences-page main { padding-top: var(--header-height); }
.experience-listing { background: var(--white); }
.experience-listing.section { padding-top: 64px; }
.experience-listing > .container { width: min(1200px, calc(100% - 48px)); }
.experience-listing-header { max-width: 760px; margin: 0 auto; text-align: center; }
.experience-listing-header h1 { margin-top: 0; font-size: var(--font-page-title); font-weight: 400; line-height: 1.05; }
.experience-listing-header > p:last-child { max-width: 760px; margin: 14px auto 0; font-size: var(--font-body-medium); line-height: 1.75; }
.experience-listing-header > p:last-child,
.section-heading > p:last-child,
.gallery-intro > p:last-child { text-wrap: balance; }
.experience-list { display: grid; gap: 0; margin-top: 64px; }
.experience-feature-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; height: 520px; min-height: 520px; margin: 0; gap: 0; overflow: hidden; background: var(--cream); }
.experience-list .experience-feature-card { margin-top: 0; }
.experience-feature-card > img { grid-column: 2; grid-row: 1; display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; }
.experience-feature-card > .experience-feature-content { grid-column: 1; grid-row: 1; }
.experience-feature-card-reverse > img { grid-column: 1; grid-row: 1; }
.experience-feature-card-reverse > .experience-feature-content { grid-column: 2; grid-row: 1; }
.experience-feature-content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; width: 100%; height: 100%; min-width: 0; padding: clamp(40px, 5vw, 72px); }
.experience-feature-content h3 { margin-top: 12px; font-size: var(--font-card-title); font-weight: 400; }
.experience-feature-content p { margin: 22px 0 30px; font-size: 13px; line-height: 1.75; }

.content-page .experience-feature-card {
  height: auto;
  min-height: 520px;
}

.content-page .experience-feature-content h2,
.content-page .experience-feature-content h3 {
  margin-top: 12px;
  font-size: var(--font-card-title);
  font-weight: 400;
}

.content-page .experience-feature-content p,
.content-page .experience-feature-content .content-feature-lead {
  margin: 18px 0 0;
}

.content-page .experience-feature-content > .arrow-link {
  margin-top: 28px;
}

.content-feature-list + .content-info-section,
.content-info-section + .content-subsection,
.content-subsection + .content-service-note,
.content-info-section + .content-feature-list,
.content-highlight + .content-feature-list,
.content-feature-list + .content-highlight {
  margin-top: 72px;
}

.content-section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.content-section-heading h2 {
  margin-top: 10px;
  font-size: var(--font-section-title);
  font-weight: 400;
  line-height: 1.08;
}

.content-section-heading > p:last-child:not(.eyebrow) {
  margin: 16px auto 0;
  font-size: 13px;
  line-height: 1.75;
}

.content-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.content-info-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-info-grid article {
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
  background: var(--cream);
}

.content-info-grid h3 {
  font-size: 1.95rem;
  font-weight: 400;
}

.content-info-grid p,
.content-info-grid li {
  font-size: var(--font-body-medium);
  line-height: 1.75;
}

.content-info-grid p {
  margin-top: 14px;
}

.content-info-grid ul,
.content-check-list,
.treatment-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.content-info-grid li,
.content-check-list li {
  position: relative;
  padding-left: 18px;
}

.content-info-grid li::before,
.content-check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.gold-dot-items article > p {
  position: relative;
  padding-left: 16px;
}

.gold-dot-items article > p::before,
.treatment-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.content-check-list {
  margin-top: 22px;
}

.content-check-list li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.content-subsection {
  margin-top: 72px;
}

.content-subsection .content-feature-list {
  margin-top: 34px;
}

.content-service-note {
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.included-services-card {
  margin-top: 72px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  background: var(--cream);
  text-align: center;
}

.included-services-card h2 {
  color: var(--green);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: var(--font-metadata);
  font-weight: 600;
  letter-spacing: 0.2em;
}

.included-services-card > p {
  margin-top: 12px;
  font-size: var(--font-body-medium);
  line-height: 1.7;
}

.included-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.included-service-item {
  display: grid;
  place-items: center;
  gap: 14px;
  min-width: 0;
  padding: 26px 14px;
  background: var(--white);
  color: var(--green);
  font-size: var(--font-body-medium);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.included-service-item svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-highlight {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 620px;
  margin-top: 72px;
  overflow: hidden;
  place-items: center;
}

.content-highlight > img,
.content-highlight > video,
.content-highlight-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.content-highlight > img,
.content-highlight > video,
.content-highlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-highlight-overlay {
  background: linear-gradient(180deg, rgba(31, 45, 34, 0.3), rgba(31, 45, 34, 0.88));
}

.content-highlight-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  min-width: 0;
  padding: clamp(42px, 7vw, 82px);
  text-align: center;
}

.content-highlight-copy h2,
.content-highlight-copy p {
  max-width: 100%;
  color: var(--white);
  overflow-wrap: anywhere;
}

.spa-page .content-highlight {
  min-height: 650px;
}

.spa-page .experience-feature-card > .editorial-image {
  grid-column: 2;
  grid-row: 1;
}

.spa-page .experience-feature-card-reverse > .editorial-image {
  grid-column: 1;
  grid-row: 1;
}

.spa-page .experience-feature-card > .editorial-image,
.spa-page .experience-feature-card-reverse > .editorial-image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.spa-page .spa-day-media {
  object-position: center 52%;
}

.content-highlight-copy h2 {
  margin-top: 12px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
}

#meditacion-title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.content-highlight-copy .content-feature-lead {
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.content-highlight-copy > p:last-child {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.75;
}

.treatments-section {
  margin-top: 72px;
}

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

.treatment-grid article {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--cream);
}

.treatment-grid h3 {
  font-size: 1.95rem;
  font-weight: 400;
}

.treatment-grid li {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 0 0 12px 16px;
  border-bottom: 1px solid var(--line);
}

.treatment-grid li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.treatment-grid strong {
  color: var(--green);
  font-size: var(--font-item-title);
  line-height: 1.45;
}

.treatment-grid span {
  color: var(--muted);
  font-size: var(--font-metadata);
  line-height: 1.65;
}

.spa-page .content-service-note {
  font-size: var(--font-body-medium);
  line-height: 1.75;
}

.habitaciones-page .experience-feature-content p {
  font-size: var(--font-item-title);
  line-height: 1.8;
}

.habitaciones-page .experience-feature-content .experience-tag {
  font-size: 9px;
}

.habitaciones-page .experience-feature-content .arrow-link {
  font-size: var(--font-body-medium);
}

.content-page-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 26px;
  margin-top: 72px;
  text-align: center;
}

.content-page-cta-inline {
  margin-top: 34px;
}

.content-related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  width: 100%;
}

.content-feature-emphasis {
  border-top: 3px solid var(--gold);
}

.footer-content {
  display: grid;
  gap: 18px;
  padding: 42px 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 220ms ease, color 220ms ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:nth-child(2) svg,
.footer-social a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.room-page .hero {
  min-height: 58vh;
}

.placeholder-page .hero {
  min-height: 62vh;
}

.room-detail {
  background: var(--white);
}

.room-detail-grid {
  display: grid;
  gap: 42px;
}

.room-gallery {
  display: grid;
  gap: 12px;
}

.room-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-content {
  display: grid;
  gap: 24px;
}

.amenity-list,
.rule-list,
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-list li,
.rule-list li,
.chip-list li {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.sustainable-block,
.note-block {
  padding: 24px;
  background: var(--cream);
}

.room-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.room-template {
  background: var(--white);
}

.template-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 60vh;
  padding: calc(var(--header-height) + 56px) 0 56px;
  overflow: hidden;
  text-align: center;
}

.template-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.template-hero-content h1,
.template-hero-content p {
  color: var(--white);
}

.template-hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
}

.template-layout {
  display: grid;
  gap: 42px;
}

.model-gallery {
  display: grid;
  gap: 14px;
}

.gallery-stage {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--cream);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 360ms ease;
}

.gallery-stage img.is-visible {
  opacity: 1;
}

.gallery-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(250, 248, 245, 0.62);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.model-gallery.is-loading .gallery-loader {
  opacity: 1;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(31, 45, 34, 0.56);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease;
  cursor: pointer;
}

.gallery-arrow:hover {
  background: rgba(31, 45, 34, 0.82);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  border-color: var(--gold);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.template-info {
  display: grid;
  align-content: start;
  gap: 22px;
}

.capacity {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.template-amenities-section,
.template-rules-section {
  background: var(--white);
}

.comfort-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comfort-list li {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--text);
}

.sustainable-feature {
  background: var(--cream);
}

.sustainable-content {
  display: grid;
  gap: 24px;
}

.sustainable-items {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sustainable-items li {
  border: 1px solid var(--line);
  padding: 16px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-note {
  max-width: 900px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.rule-cards {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.rule-cards article {
  border: 1px solid var(--line);
  padding: 22px;
  text-align: center;
}

.rule-cards span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rule-cards strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.template-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.template-chip-list li {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.82rem;
  transition: border-color 180ms ease, color 180ms ease;
}

.template-chip-list li:hover {
  border-color: var(--gold);
  color: var(--green);
}

.room-model-main {
  padding-top: var(--header-height);
  background: var(--white);
}

.room-model-layout {
  display: grid;
  width: 100%;
  margin: 0;
}

.room-model-gallery {
  width: 100%;
  margin: 0;
  padding: 0;
}

.room-model-gallery .gallery-stage {
  min-height: calc(100vh - var(--header-height));
  background: var(--cream);
}

.room-model-gallery .gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.room-model-gallery .gallery-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: var(--white);
  color: var(--green);
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.room-model-gallery .gallery-arrow:hover {
  background: var(--gold);
  color: var(--white);
}

.room-model-gallery .gallery-thumbs {
  display: none;
}

.room-model-content {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(44px, 7vw, 84px) clamp(24px, 7vw, 92px);
}

.room-model-content .eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.room-model-content h1 {
  color: var(--green);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
}

.room-model-content > p:not(.eyebrow),
.room-model-block li,
.room-model-note {
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.room-model-block {
  display: grid;
  gap: 12px;
}

.room-model-block h2,
.room-model-rules h2,
.room-model-amenities h2 {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.room-model-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.room-model-note {
  margin-top: 2px;
}

.room-model-rules,
.room-model-amenities {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.room-rule-list {
  display: grid;
  gap: 12px;
}

.room-rule-list article {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  line-height: 1.3;
}

.room-rule-list svg,
.room-model-amenities svg {
  display: block;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-rule-list svg {
  grid-row: span 2;
  width: 18px;
  height: 18px;
}

.room-rule-list strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.room-model-amenities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-model-amenities li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(43, 43, 43, 0.22);
  border-radius: 4px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.2;
}

.room-model-amenities svg {
  width: 15px;
  height: 15px;
}

.final-cta {
  background: var(--green);
  text-align: center;
}

.final-cta-content {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.related-grid {
  display: grid;
  gap: 22px;
}

.related-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 500ms ease;
}

.related-card:hover img {
  transform: scale(1.055);
}

.related-card span {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(184, 148, 92, 0.55);
}

@media (min-width: 720px) {
  .hero-actions,
  .room-actions {
    flex-direction: row;
    width: auto;
  }

  .distance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .distance-grid article:last-child {
    grid-column: auto;
    width: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 50% 50%;
    align-items: stretch;
  }

  .room-model-layout {
    grid-template-columns: 50% 50%;
    align-items: stretch;
  }

  .room-rule-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spa-feature-grid,
  .gastronomy-feature-grid,
  .rooms-feature-grid {
    grid-template-columns: 50% 50%;
    align-items: stretch;
  }

  .feature-alt .carousel {
    order: 2;
  }

  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid,
  .banner-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .room-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .template-hero {
    min-height: 70vh;
  }

  .comfort-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }

  .sustainable-content {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .sustainable-items,
  .rule-cards,
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .main-nav {
    display: flex;
  }

  .room-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .room-detail-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .template-layout {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }

  .gallery-stage,
  .gallery-stage img {
    min-height: 560px;
  }
}

@media (max-width: 1199px) {
  .site-header { gap: 12px; }
  .site-header > .btn-small { margin-left: auto; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 24px 22px;
    background: rgba(31, 45, 34, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }
  .main-nav a { padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .site-header.menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}

@media (max-width: 768px) {
  .gallery-page main { padding-top: var(--header-mobile-height); }
  .gallery-page .gallery-page-content { padding-top: 36px; }
  .experiences-page main { padding-top: var(--header-mobile-height); }
  .experience-listing.section { padding-top: 48px; }
  .experience-list { margin-top: 48px; }

  .site-logo img {
    height: 36px;
    max-width: 170px;
  }

  .site-header { gap: 12px; }
  .site-header > .btn-small { margin-left: auto; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0; padding: 8px 24px 22px; background: rgba(31,45,34,.98); border-top: 1px solid rgba(255,255,255,.1); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease; }
  .main-nav a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-header.menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .general-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-modal { padding: 62px 54px; }
  .gallery-modal-arrow { width: 48px; }
  .gallery-modal-prev { left: 2px; }
  .gallery-modal-next { right: 2px; }
  .sustainability-layout { grid-template-columns: 1fr; }
  .experience-feature-card { display: flex; flex-direction: column; height: auto; min-height: 0; }
  .experience-feature-card > img,
  .experience-feature-card-reverse > img { order: 1; width: 100%; height: clamp(280px, 75vw, 360px); min-height: 0; }
  .spa-page .experience-feature-card > .editorial-image,
  .spa-page .experience-feature-card-reverse > .editorial-image {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .experience-feature-card > .experience-feature-content,
  .experience-feature-card-reverse > .experience-feature-content { order: 2; width: 100%; height: auto; min-height: 320px; }
  .content-info-grid,
  .content-info-grid-four,
  .treatment-grid { grid-template-columns: 1fr; }
  .included-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-highlight,
  .spa-page .content-highlight { min-height: 560px; }
  .content-page-cta { margin-top: 52px; }
  .sustainability-badge { min-height: 200px; }

  .testimonial-carousel {
    max-width: min(640px, calc(100% - 56px));
    --testimonial-visible: 2;
  }

  .testimonial-arrow-prev {
    left: -16px;
  }

  .testimonial-arrow-next {
    right: -16px;
  }

  .institutional-banner {
    padding: 60px 0;
  }

  .banner-stats {
    max-width: 420px;
  }

  .banner-stats > span {
    width: 100%;
  }

  .banner-cta {
    width: min(100%, 360px);
  }

  .hero-home {
    padding: var(--header-height) 0 58px;
  }

  .hero-home .hero-content {
    gap: 0;
    width: min(860px, calc(100% - 28px));
  }

  .hero-home .hero-eyebrow {
    order: 1;
    margin-bottom: 10px;
  }

  .hero-home h1 {
    order: 2;
    margin-bottom: 26px;
    font-size: clamp(38px, 12vw, 48px);
    text-wrap: balance;
  }

  .hero-home .hero-subtitle {
    display: none;
  }

  .hero-home .hero-content > p:not(.eyebrow):not(.hero-subtitle) {
    order: 4;
    max-width: 360px;
    margin-inline: auto;
    font-size: 12px;
    text-wrap: pretty;
  }

  .hero-home .hero-actions {
    order: 3;
    flex-direction: column;
    align-items: center;
    width: min(100%, 300px);
    margin: 0 0 20px;
    gap: 12px;
  }

  .hero-home .hero-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    min-height: 48px;
    padding: 0 18px;
    box-sizing: border-box;
    flex: 0 0 48px;
  }

  .booking-bar {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease, visibility 0s linear 300ms;
  }

  .booking-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .distance-strip .distance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(620px, calc(100% - 28px));
  }

  .distance-strip .distance-grid article {
    min-width: 0;
    padding-inline: 14px;
  }

  .distance-strip .distance-grid article:last-child {
    grid-column: 1 / -1;
    width: min(260px, 100%);
    margin-inline: auto;
  }

  .spa-copy {
    padding: 48px 24px 56px;
  }

  .gastronomy-copy {
    padding: 48px 24px 56px;
  }

  .rooms-copy {
    padding: 48px 24px 56px;
  }

  .spa-feature,
  .gastronomy-feature,
  .rooms-feature {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .spa-feature-grid,
  .gastronomy-feature-grid,
  .rooms-feature-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .feature-alt .carousel {
    order: 0;
  }

  .spa-gallery,
  .gastronomy-gallery,
  .rooms-gallery {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .spa-gallery img,
  .gastronomy-gallery img,
  .rooms-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .carousel-arrow-prev {
    left: 16px;
  }

  .carousel-arrow-next {
    right: 16px;
  }

  .rating-grid {
    gap: 24px;
  }

  .rating-card {
    gap: 6px;
  }

  .rating-card img {
    width: 28px;
    height: 28px;
  }

  .rating-score {
    font-size: 0.94rem;
  }

  .rating-stars {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .faq-section .narrow {
    width: min(100% - 40px, 980px);
  }

  .faq-item button {
    padding: 15px 18px;
  }

  .faq-panel p {
    padding-right: 46px;
    padding-left: 18px;
  }

  .contact-content {
    padding: 58px 24px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 340px;
  }

  .room-model-gallery .gallery-stage,
  .room-model-gallery .gallery-stage img {
    min-height: 430px;
  }

  .room-model-content {
    padding: 38px 24px 54px;
  }
}

@media (max-width: 480px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .brand-text {
    display: none;
  }

  .site-logo img {
    height: 32px;
    max-width: 145px;
  }

  .btn-small {
    display: none;
    padding-inline: 12px;
    letter-spacing: 0.06em;
  }

  .general-gallery-grid { grid-template-columns: 1fr 1fr; gap: 5px; }
  .gallery-group + .gallery-group { margin-top: 40px; }
  .gallery-group h3 { font-size: 1.45rem; }
  .gallery-modal { padding: 58px 8px 72px; }
  .gallery-modal-figure img { max-height: calc(100vh - 150px); }
  .gallery-modal-arrow { top: auto; bottom: 8px; transform: none; }
  .gallery-modal-prev { left: calc(50% - 70px); }
  .gallery-modal-next { right: calc(50% - 70px); }
  .booking-bar a { min-width: 200px; padding: 11px 20px; }
  .sustainability-section { padding: 58px 0; }
  .experience-feature-content { padding: 34px 22px 40px; }
  .experience-feature-content .btn { width: 100%; padding-inline: 12px; font-size: 10px; }
  .content-feature-list + .content-info-section,
  .content-info-section + .content-subsection,
  .content-subsection + .content-service-note,
  .content-info-section + .content-feature-list,
  .content-highlight + .content-feature-list,
  .content-feature-list + .content-highlight,
  .content-subsection,
  .content-highlight,
  .treatments-section { margin-top: 52px; }
  .content-highlight,
  .spa-page .content-highlight { min-height: 520px; }
  .content-highlight-copy { padding: 40px 22px; }
  .content-page-cta { flex-direction: column; }
  .content-page-cta .btn { width: min(100%, 300px); }
  .gallery-page .gallery-page-content { padding-top: 32px; }

  .section {
    padding: 64px 0;
  }

  .spa-feature,
  .gastronomy-feature,
  .rooms-feature {
    padding: 0;
  }

  .spa-feature-grid,
  .gastronomy-feature-grid,
  .rooms-feature-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .spa-gallery,
  .gastronomy-gallery,
  .rooms-gallery {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .testimonial-carousel {
    max-width: min(100%, calc(100% - 52px));
    --testimonial-visible: 1;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-card p {
    font-size: 12px;
  }

  .testimonial-arrow-prev {
    left: 4px;
  }

  .testimonial-arrow-next {
    right: 4px;
  }

  .hero-home h1 {
    font-size: 36px;
  }

  .hero-home .hero-subtitle {
    font-size: 16px;
  }

  .hero-home .btn {
    width: auto;
    padding-inline: 18px;
  }

  .distance-strip {
    padding: 18px 0;
  }

  .distance-strip .distance-grid {
    grid-template-columns: 1fr;
  }

  .distance-strip .distance-grid article,
  .distance-strip .distance-grid article:last-child {
    width: 100%;
  }

  .room-template .container {
    width: min(100% - 48px, 1120px);
  }

  .room-model-gallery .gallery-stage,
  .room-model-gallery .gallery-stage img {
    min-height: 360px;
  }

  .room-model-content h1 {
    font-size: 34px;
  }

  .room-model-block h2,
  .room-model-rules h2,
  .room-model-amenities h2 {
    font-size: 20px;
  }

  .room-template main .btn {
    width: 100%;
  }

  .rating-grid {
    gap: 12px;
  }

  .rating-card {
    gap: 4px;
  }

  .rating-card img {
    width: 24px;
    height: 24px;
  }

  .rating-score {
    font-size: 0.86rem;
  }

  .rating-stars {
    font-size: 0.62rem;
    letter-spacing: 0;
  }
}
