:root {
  color-scheme: light;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: #f8fafc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--site-header-height, 0px) + 1rem);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--site-header-height, 0px);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.hero-section,
.page-hero {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.top-bar {
  background: rgb(28, 75, 52);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.45rem 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.top-bar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #f7faf7;
}

.top-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #e9f7ef;
}

.top-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  color: #ffffff;
}

.button-sm {
  padding: 0.42rem 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-bar .button-top {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: rgb(28, 75, 52);
}

.top-bar .button-top:hover {
  background: rgb(87, 130, 114);
  color: #ffffff;
  border-color: rgb(87, 130, 114);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0f172a;
}

.brand-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #334155;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  width: auto;
  padding: 0.7rem 0 0;
  max-width: 860px;
}

.main-nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
  border-radius: 0.35rem;
  transition: background 0.2s ease, color 0.2s ease, text-decoration-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(28, 75, 52, 0.12);
  color: rgb(28, 75, 52);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 1rem;
  }

  body {
    padding-top: 0;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    justify-content: center;
  }

  .header-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .header-inner {
    align-items: stretch;
  }

  .main-nav {
    justify-content: center;
  }

  .header-actions {
    justify-content: center;
    width: 100%;
  }
}

.top-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  color: #ffffff;
}

.top-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.top-bar-text span {
  display: inline-block;
}

.help-text {
  font-weight: 600;
}

.button-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-bar .button-top {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.45rem 0.9rem;
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .top-bar-text {
    gap: 0.85rem;
  }

  .button-sm {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .top-bar-text {
    width: 100%;
    gap: 0.8rem;
  }

  .top-item {
    min-width: 0;
  }

  .top-bar-text span {
    word-spacing: 0.16em;
    white-space: nowrap;
  }

  .help-text {
    display: block;
  }

  .button-sm {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .top-bar-inner {
    gap: 0.65rem;
  }

  .top-bar-text {
    gap: 0.6rem;
  }

  .top-bar-text span {
    white-space: normal;
  }

  .help-text {
    display: none;
  }
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #0f172a;
}

.brand-logo {
  display: block;
  width: 150px;
  height: 52px;
  object-fit: contain;
  border-radius: 0.3rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f172a;
}

.brand-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #334155;
}

.button-sm {
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: auto;
}

.top-bar .button-top {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.28rem 0.65rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f172a;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0;
  max-width: 100%;
}

.main-nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  background: rgba(28, 75, 52, 0.12);
  color: rgb(28, 75, 52);
  outline: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 60;
  min-width: 235px;
  overflow: hidden;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0 0 0.5rem 0.5rem;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
}

.nav-dropdown-menu a {
  display: block;
  padding: 1rem 1.35rem;
  border-radius: 0;
  color: #334155;
  font-weight: 500;
  text-transform: none;
}

.nav-dropdown-menu a + a {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.85rem;
}

.button-large {
  padding: 0.7rem 1.3rem;
  min-width: 140px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: rgb(28, 75, 52);
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  color: rgb(28, 75, 52);
  border: 1px solid rgb(28, 75, 52);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  padding: 0;
  background: none; /* remove green background so images are the visible background */
  color: #f8fafc;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  position: relative;
  height: 100%;
}

.hero-section h1,
.section-header h2,
.contact-card h2 {
  margin: 0 0 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.hero-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh; /* full viewport height so images go from top to bottom */
  min-height: 420px;
  overflow: hidden;
  border-radius: 0; /* no rounded corners for full-bleed */
  box-shadow: none; /* remove shadow so images reach edges cleanly */
  z-index: 1;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay title centered on the slider */
.hero-content h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 10;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Make controls visible above images but under the title if needed */
.slider-button,
.slider-dots {
  z-index: 15;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
    min-height: 280px;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-button:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.05);
}

.slider-button.prev {
  left: 1rem;
}

.slider-button.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.25rem 0.5rem;
  background: rgba(0,0,0,0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.slider-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  opacity: 0.9;
}

.slider-dot.active {
  background: #ffffff;
  transform: scale(1.25);
  opacity: 1;
}

@media (max-width: 768px) {
  .slider-dots {
    bottom: 1rem;
    gap: 0.5rem;
    padding: 0.2rem 0.4rem;
  }

  .slider-dot {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d1fae5;
  font-size: 0.85rem;
}

.hero-section p,
.section-header p,
.card-body p,
.feature-card p,
.location-list li,
.contact-info p,
.site-footer p {
  margin: 0;
  color: inherit;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: 5rem 0;
}

#hero-divider.section {
  padding: 3rem 0 2.25rem;
  background: linear-gradient(135deg, #f8faf7 0%, #eef5ef 52%, #ffffff 100%);
  color: #1c4b34;
  position: relative;
}

#hero-divider.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 129, 56, 0.62), transparent);
}

.hero-divider-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.divider-copy {
  max-width: 1120px;
  width: min(100%, 1120px);
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  padding: 2.2rem clamp(1.5rem, 4vw, 4rem);
  position: relative;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(28, 75, 52, 0.14);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(28, 75, 52, 0.12);
}

.divider-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60%);
  height: 4px;
  background: linear-gradient(90deg, transparent, #d9862c, #f4a047, #d9862c, transparent);
}

.divider-copy h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(1.8rem, 2.65vw, 2.8rem);
  line-height: 1.1;
  color: #1c4b34;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.divider-copy h2::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, #c78138, transparent);
}

.divider-text {
  margin: 0;
  max-width: 820px;
  color: #395b48;
  font-size: clamp(1rem, 1vw, 1.05rem);
  line-height: 1.7;
}

.divider-text:first-of-type {
  font-size: clamp(1.08rem, 1.3vw, 1.25rem);
  color: #214f39;
}

@media (max-width: 768px) {
  .hero-divider-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .divider-copy {
    padding: 2rem 1.25rem;
  }

  .divider-copy h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }
}

#info-split.section {
  padding: 2.8rem 0 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f0 100%);
  position: relative;
}

#info-split.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 129, 56, 0.62), transparent);
}

#info-split > .container {
  width: min(1120px, calc(100% - 2rem));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.12);
}

.split-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #0f172a;
}

.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.34)),
    linear-gradient(90deg, transparent 54%, rgba(15, 23, 42, 0.22));
}

.split-image img {
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.split-section:hover .split-image img {
  transform: scale(1.035);
}

.split-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(248, 250, 247, 0.96), rgba(255, 255, 255, 0.98)),
    #ffffff;
  padding: clamp(2rem, 3.2vw, 3rem);
  color: rgb(28, 75, 52);
  position: relative;
}

.split-copy-bg {
  background:
    linear-gradient(135deg, rgba(248, 250, 247, 0.96), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.split-title-block {
  display: grid;
  gap: 0.25rem;
  text-align: left;
}

.split-title {
  margin: 0;
  font-size: clamp(1.35rem, 1.9vw, 2.05rem);
  line-height: 1.12;
  font-weight: 800;
  color: rgb(28, 75, 52);
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.info-block {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.15rem;
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(199, 129, 56, 0.26);
}

.info-block p {
  margin: 0;
  color: #476351;
  font-size: 1rem;
}

.info-block strong {
  color: rgb(28, 75, 52);
}

.split-reserve-button {
  width: fit-content;
  margin-top: 0.75rem;
  justify-self: center;
  padding: 0.85rem 1.8rem;
  background: rgb(28, 75, 52);
  color: #ffffff;
  border: 1px solid rgb(28, 75, 52);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(28, 75, 52, 0.18);
}

.split-reserve-button:hover {
  background: #c78138;
  border-color: #c78138;
  color: #ffffff;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0;
  padding: 1.2rem;
  background: rgb(28, 75, 52);
  border-top: 1px solid rgba(199, 129, 56, 0.42);
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.12);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  background: rgba(199, 129, 56, 0.2);
  color: #f7d7ad;
}

.contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 320px;
  }

  .split-copy {
    padding: 1.6rem;
  }

  .split-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }

  .contact-row {
    justify-content: stretch;
  }

  .contact-item {
    flex: 1 1 100%;
  }
}

.section-light {
  background: #ffffff;
}

.section-white {
  background: #f8fafc;
}

.section-dark {
  background: #0f172a;
  color: #f8fafc;
}

#contacto.section-dark {
  background:
    radial-gradient(circle at top left, rgba(199, 129, 56, 0.14), transparent 34%),
    linear-gradient(180deg, #dcebdd 0%, #c9ddcd 100%);
  color: rgb(28, 75, 52);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.25rem;
  position: relative;
}

.section-header .eyebrow {
  margin-bottom: 0.9rem;
  color: #c78138;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section-header h2 {
  color: rgb(28, 75, 52);
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  margin: 1.15rem auto 0;
  background: linear-gradient(90deg, transparent, #c78138, transparent);
}

.section-header p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 auto;
  color: #476351;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

#habitaciones,
#eventos,
#servicios,
#ubicacion,
#premios {
  position: relative;
}

#habitaciones.section {
  padding: 3rem 0 2.4rem;
}

#eventos.section {
  padding: 2.6rem 0 3.5rem;
}

#servicios.section {
  padding: 3rem 0 3.1rem;
}

#ubicacion.section {
  padding: 3rem 0 3.6rem;
}

#premios.section {
  padding: 3.4rem 0 3.8rem;
}

#habitaciones > .container,
#eventos > .container,
#servicios > .container,
#ubicacion > .container,
#premios > .container {
  width: min(1120px, calc(100% - 2rem));
}

#habitaciones .section-header,
#eventos .section-header,
#servicios .section-header,
#ubicacion .section-header,
#premios .section-header {
  max-width: 1120px;
  margin-bottom: 1.65rem;
}

#habitaciones .section-header .eyebrow,
#eventos .section-header .eyebrow,
#servicios .section-header .eyebrow,
#ubicacion .section-header .eyebrow,
#premios .section-header .eyebrow {
  margin-bottom: 0.55rem;
}

#habitaciones .section-header h2,
#eventos .section-header h2,
#servicios .section-header h2,
#ubicacion .section-header h2,
#premios .section-header h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.95rem;
}

#habitaciones .section-header p:not(.eyebrow),
#eventos .section-header p:not(.eyebrow),
#servicios .section-header p:not(.eyebrow),
#ubicacion .section-header p:not(.eyebrow),
#premios .section-header p:not(.eyebrow) {
  max-width: 820px;
}

#habitaciones .section-header h2::after,
#eventos .section-header h2::after,
#servicios .section-header h2::after,
#ubicacion .section-header h2::after,
#premios .section-header h2::after {
  margin-top: 0.8rem;
}

#habitaciones::before,
#eventos::before,
#servicios::before,
#ubicacion::before,
#premios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 129, 56, 0.62), transparent);
}

.cards-grid,
.feature-grid,
.location-layout {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.rooms-grid .card {
  position: relative;
  min-height: clamp(330px, 34vw, 470px);
  border: 1px solid rgba(28, 75, 52, 0.16);
  border-radius: 0.5rem;
  background: #0f172a;
  isolation: isolate;
}

.rooms-grid .card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.72)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.46), transparent 62%);
}

.rooms-grid .card-image,
.rooms-grid .card-image picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.rooms-grid .card-image {
  aspect-ratio: auto;
}

.rooms-grid .card-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.rooms-grid .card:hover .card-image img {
  transform: scale(1.04);
}

.rooms-grid .card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  color: #ffffff;
}

.rooms-grid .card-body::before {
  content: "";
  width: 5.5rem;
  height: 2px;
  background: linear-gradient(90deg, #c78138, transparent);
}

.rooms-grid .card-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.rooms-grid .card-body p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  line-height: 1.6;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.16);
}

.card-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: rgb(28, 75, 52);
}

.event-showcase {
  background: #ffffff;
  border: 1px solid rgba(28, 75, 52, 0.16);
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.12);
}

.event-tabs {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  border-bottom: 1px solid rgba(28, 75, 52, 0.16);
  scrollbar-width: thin;
}

.event-tab {
  min-width: max-content;
  padding: 1.2rem clamp(1.1rem, 2vw, 2rem);
  border: 0;
  border-right: 1px solid rgba(28, 75, 52, 0.1);
  background: #fbfcfb;
  color: #557864;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.event-tab:hover,
.event-tab.is-active {
  background: #ffffff;
  color: rgb(28, 75, 52);
  box-shadow: inset 0 3px 0 #c78138;
}

.event-panels {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.event-panel {
  position: relative;
  min-height: clamp(430px, 58vw, 650px);
  overflow: hidden;
  isolation: isolate;
  background: #0f172a;
}

.event-panel[hidden] {
  display: none;
}

.event-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 58vw, 650px);
  object-fit: cover;
}

.event-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.58)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.48), transparent 58%);
}

.event-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: clamp(1.25rem, 4vw, 4rem);
  padding: clamp(1.35rem, 4vw, 3.5rem);
  color: #ffffff;
}

.event-overlay h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

.event-specs {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
  gap: clamp(1rem, 3vw, 2rem);
  justify-self: start;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.16), transparent);
  padding: 1rem clamp(1rem, 2vw, 1.5rem);
  border-left: 3px solid #c78138;
}

.event-specs div {
  display: grid;
  gap: 0.1rem;
}

.event-specs strong {
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-specs span {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.86rem, 1.3vw, 1rem);
  line-height: 1.35;
}

.event-quote {
  white-space: nowrap;
  align-self: center;
  background: #ffffff;
  color: rgb(28, 75, 52);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: stretch;
}

.services-highlight {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.1);
  background: #10291e;
}

.services-highlight img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.services-highlight figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  background: rgba(16, 41, 30, 0.82);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.35;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff, #eef5ef);
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.5rem;
  padding: 1.8rem;
  box-shadow: 0 16px 40px rgba(28, 75, 52, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.75rem;
  min-height: 188px;
  padding: 1.35rem;
  text-align: center;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(199, 129, 56, 0.35);
  border-radius: 50%;
  color: #c78138;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0;
  color: rgb(28, 75, 52);
}

.service-card p {
  line-height: 1.55;
  text-align: center;
}

.services-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(28, 75, 52, 0.07);
}

.services-strip span {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: #eef5ef;
  color: rgb(28, 75, 52);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-layout {
  align-items: center;
}

.location-copy {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
}

.location-copy .section-header {
  max-width: 1120px;
  margin-bottom: 0;
}

.location-copy .section-header h2 {
  max-width: 1120px;
}

.location-copy .section-header p:not(.eyebrow) {
  max-width: 920px;
}

.location-intro {
  margin: 0;
  max-width: 820px;
  color: #476351;
  font-size: 1rem;
  line-height: 1.65;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-highlight {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(28, 75, 52, 0.07);
}

.location-highlight strong {
  color: rgb(28, 75, 52);
  font-size: 1.08rem;
}

.location-highlight p {
  margin: 0;
  color: #476351;
  font-size: 0.92rem;
  line-height: 1.5;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.location-list li {
  padding-left: 1.2rem;
  position: relative;
}

.location-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c78138;
}

.location-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(28, 75, 52, 0.14);
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.1);
}

.location-map {
  min-height: 450px;
  background: #eef5ef;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.location-media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.location-media-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-media-card:hover,
.location-media-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.16);
  outline: none;
}

.location-media-card img,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.location-media-card div:not(.video-placeholder) {
  padding: 1.1rem;
}

.location-media-card h3 {
  margin: 0 0 0.45rem;
  color: rgb(28, 75, 52);
  font-size: 1.05rem;
}

.location-media-card p {
  margin: 0;
  color: #476351;
  font-size: 0.93rem;
  line-height: 1.55;
}

.awards-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: start;
}

.award-card {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.award-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  background: #eef5ef;
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.1);
}

.award-card figcaption {
  text-align: center;
  color: #c78138;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.guest-reviews-section {
  position: relative;
  padding-top: 2.35rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
}

.guest-reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 129, 56, 0.62), transparent);
}

.guest-reviews-section > .container {
  width: min(1120px, calc(100% - 2rem));
}

#resenas > .container {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(28, 75, 52, 0.28);
  border-radius: 0.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 246, 0.96)),
    #ffffff;
  box-shadow: 0 26px 66px rgba(28, 75, 52, 0.16);
}

.guest-reviews-section .section-header {
  max-width: 920px;
  margin-bottom: 1.15rem;
}

.guest-reviews-section .section-header h2 {
  max-width: 920px;
  margin-bottom: 0.58rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.guest-reviews-section .section-header h2::after {
  margin-top: 0.65rem;
}

.guest-reviews-section .section-header p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1rem;
}

.review-scoreboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 0 auto 1.35rem;
}

.review-scoreboard article {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(28, 75, 52, 0.08);
}

.review-scoreboard p {
  margin: 0;
  color: #51685b;
  font-size: 0.94rem;
}

.review-score-label {
  display: block;
  margin-bottom: 0.18rem;
  color: #c78138;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.review-scoreboard .review-score {
  color: rgb(28, 75, 52);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
}

.booking-award-inline {
  width: min(100%, 190px);
  max-height: 86px;
  margin-top: 0.75rem;
  object-fit: contain;
  border-radius: 0.45rem;
  border: 1px solid rgba(0, 59, 149, 0.12);
  background: #ffffff;
}

.review-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  padding: 0.55rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(28, 75, 52, 0.12);
}

.review-platform img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-platform-booking {
  background: #003b95;
  padding: 0.46rem;
}

.guest-reviews-slider {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
}

.guest-reviews-viewport {
  overflow: hidden;
  padding: 0.35rem 0.25rem 0.65rem;
}

.guest-reviews-track {
  --review-gap: 1rem;
  display: flex;
  gap: var(--review-gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.guest-review-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  flex: 0 0 calc((100% - (var(--review-gap) * 2)) / 3);
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(28, 75, 52, 0.09);
}

.review-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(28, 75, 52, 0.18);
  border-radius: 50%;
  color: rgb(28, 75, 52);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(28, 75, 52, 0.12);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.review-slider-button:hover,
.review-slider-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(199, 129, 56, 0.55);
  color: #ffffff;
  background: rgb(28, 75, 52);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-card-top h3 {
  margin: 0;
  color: rgb(28, 75, 52);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.review-card-top p,
.guest-review-card p {
  margin: 0;
}

.review-card-top p {
  color: #7a8c82;
  font-size: 0.82rem;
}

.review-stars {
  color: #f5b21b;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.guest-review-card > p {
  color: #496052;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 1.55rem;
}

.restaurant-google-reviews {
  margin-top: 2rem;
  margin-bottom: 4.15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(28, 75, 52, 0.28);
  border-radius: 0.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 246, 0.96)),
    #ffffff;
  box-shadow: 0 26px 66px rgba(28, 75, 52, 0.16);
}

.restaurant-google-reviews::before {
  display: none;
}

.restaurant-google-reviews > .section-header {
  margin-bottom: 0.75rem;
}

.restaurant-google-reviews .review-scoreboard {
  grid-template-columns: auto;
  justify-content: end;
  margin: -0.25rem 0 1rem;
}

.restaurant-google-reviews .guest-reviews-viewport {
  padding-bottom: 0.35rem;
}

.restaurant-review-score article {
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(28, 75, 52, 0.08);
}

.restaurant-review-score .review-platform {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.45rem;
}

.restaurant-review-score .review-score-label {
  margin-bottom: 0.08rem;
  font-size: 0.64rem;
}

.restaurant-review-score .review-score {
  display: inline;
  margin-right: 0.35rem;
  font-size: 1.5rem;
  vertical-align: middle;
}

.restaurant-review-score p:last-child {
  display: inline;
  font-size: 0.82rem;
}

.restaurant-google-reviews + .reservation-legal {
  margin-top: 4.15rem;
}

.video-placeholder {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #1c4b34;
  color: #ffffff;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(28, 75, 52, 0.62), rgba(16, 41, 30, 0.78));
}

.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.location-video-card:hover .video-placeholder img,
.location-video-card:focus-visible .video-placeholder img {
  transform: scale(1.05);
}

.video-placeholder span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.8rem;
  min-height: 4.2rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(247, 215, 173, 0.78);
  border-radius: 999px;
  background: rgba(16, 41, 30, 0.68);
  color: #f7d7ad;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.video-placeholder span::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 0.65rem;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.72rem solid #f7d7ad;
}

.media-modal[hidden] {
  display: none;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 16, 0.82);
  backdrop-filter: blur(8px);
}

.media-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: min(86vh, 780px);
  display: grid;
  gap: 1rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(199, 129, 56, 0.32);
  border-radius: 0.5rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.media-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(28, 75, 52, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: rgb(28, 75, 52);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.media-modal h2 {
  margin: 0;
  padding: 0 3.25rem;
  text-align: center;
  color: rgb(28, 75, 52);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  text-transform: uppercase;
}

.media-modal-body {
  overflow: auto;
}

.media-modal-body img,
.media-modal-body video {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #ffffff;
}

.media-modal-video-placeholder {
  min-height: min(70vh, 560px);
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(28, 75, 52, 0.96), rgba(16, 41, 30, 0.96)),
    #1c4b34;
  color: #ffffff;
  text-align: center;
}

.media-modal-video-placeholder p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.form-success-modal .media-modal-dialog {
  max-width: 560px;
}

.form-success-content {
  display: grid;
  gap: 0.9rem;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.98)),
    #ffffff;
}

.form-success-content .eyebrow {
  margin: 0;
  color: #c78138;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-success-content h2 {
  margin: 0;
  color: rgb(28, 75, 52);
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  line-height: 1.08;
}

.form-success-content p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 430px;
  color: #496052;
  font-size: 1rem;
  line-height: 1.7;
}

.form-status-modal .media-modal-dialog {
  max-width: 540px;
}

.form-status-modal .form-success-content {
  border-top: 4px solid rgb(28, 75, 52);
}

.form-status-modal.form-status-error .form-success-content {
  border-top-color: #b3261e;
}

.form-status-modal.form-status-error .form-success-content .eyebrow {
  color: #b3261e;
}

.form-status-modal.form-status-error .form-success-content h2 {
  color: #8f1d18;
}

.form-status-action {
  justify-self: center;
  min-width: 150px;
  margin-top: 0.35rem;
  border: 0;
  cursor: pointer;
}

.dual-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.dual-video-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0.65rem;
  background: #ffffff;
  box-shadow: 0 26px 64px rgba(28, 75, 52, 0.2);
}

.dual-video-card h3 {
  margin: 0;
  padding: 1.1rem 1rem;
  background:
    linear-gradient(135deg, rgb(28, 75, 52), rgb(16, 41, 30)),
    rgb(28, 75, 52);
  color: #ffffff;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.dual-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 56vh;
  object-fit: contain;
  background: #ffffff;
  border-top: 0;
}

.vertical-media-modal .media-modal-dialog {
  width: min(520px, 100%);
  max-height: 92vh;
  padding: 0.7rem;
}

.vertical-media-modal .media-modal-body {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.vertical-media-modal .media-modal-body img {
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  aspect-ratio: auto;
  border-radius: 0.35rem;
  object-fit: contain;
}

.plans-grid img {
  cursor: zoom-in;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(28, 75, 52, 0.98), rgba(16, 41, 30, 0.98)),
    #1c4b34;
  border: 1px solid rgba(199, 129, 56, 0.28);
  border-radius: 0.5rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.16);
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 70%);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #c78138, transparent);
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.contact-actions .button {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-info div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
}

.contact-info p {
  color: #ffffff;
}

.contact-info strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #f7d7ad;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(199, 129, 56, 0.28);
  padding: 1.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1.4fr) 1fr;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-left {
  justify-content: flex-start;
}

.footer-logo-right {
  justify-content: flex-end;
}

.footer-logo img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.2rem;
  height: 3rem;
  border: 1px solid rgba(28, 75, 52, 0.18);
  color: rgb(28, 75, 52);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-center {
  display: grid;
  gap: 0.25rem;
  position: relative;
  padding: 0;
}

.footer-title {
  color: rgb(28, 75, 52);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-center p {
  margin: 0;
  color: #476351;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0;
  position: absolute;
  left: 50%;
  width: calc(100% + 10rem);
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(28, 75, 52, 0.18);
  border-radius: 50%;
  color: rgb(28, 75, 52);
  background: rgba(28, 75, 52, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  pointer-events: auto;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(199, 129, 56, 0.58);
  background: rgb(28, 75, 52);
  color: #ffffff;
}

.footer-social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social svg path {
  fill: currentColor;
  stroke: none;
}

.page-hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: 8rem 0 3.2rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.62)),
    var(--page-hero-image, linear-gradient(135deg, #1c4b34, #10291e));
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 129, 56, 0.86), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
}

.restaurant-page .page-hero {
  align-items: center;
}

.restaurant-page .page-hero-content {
  text-align: center;
  justify-items: center;
}

.restaurant-page .page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}

.events-catering-page .page-hero {
  align-items: center;
}

.events-catering-page .page-hero-content {
  text-align: center;
  justify-items: center;
}

.events-catering-page .page-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}

.rooms-page .page-hero {
  align-items: center;
}

.rooms-page .page-hero-content {
  text-align: center;
  justify-items: center;
}

.rooms-page .page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}

.compact-hero-page .page-hero {
  align-items: center;
}

.compact-hero-page .page-hero-content {
  text-align: center;
  justify-items: center;
}

.compact-hero-page .page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}

.compact-hero-page .page-section > .container > .section-header p:not(.eyebrow) {
  max-width: 980px;
  line-height: 1.7;
}

.restaurant-page .page-section > .container > .section-header p:not(.eyebrow) {
  max-width: 980px;
  line-height: 1.7;
}

.page-hero .eyebrow {
  color: #f7d7ad;
  font-weight: 800;
}

.page-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.page-section {
  padding: 3.4rem 0;
  position: relative;
}

.page-section .section-header {
  max-width: 1120px;
}

.page-section .section-header h2 {
  max-width: 1120px;
}

.page-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 129, 56, 0.62), transparent);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.template-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.1);
}

.template-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.template-card-body {
  padding: clamp(1.25rem, 2vw, 1.7rem);
}

.template-card h3,
.template-panel h3 {
  margin: 0 0 0.65rem;
  color: rgb(28, 75, 52);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.template-card p,
.template-panel p {
  margin: 0;
  color: #476351;
}

.salon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.salon-card {
  display: grid;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(28, 75, 52, 0.24);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(28, 75, 52, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.salon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 75, 52, 0.38);
  box-shadow: 0 28px 68px rgba(28, 75, 52, 0.2);
}

.salon-card img {
  width: 100%;
  min-height: 310px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.28s ease;
}

.salon-card:hover img {
  transform: scale(1.025);
}

.salon-card-body {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.2rem, 2.2vw, 1.65rem);
  background:
    linear-gradient(180deg, rgba(238, 245, 239, 0.9), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.salon-card h3 {
  margin: 0 auto;
  width: fit-content;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(199, 129, 56, 0.6);
  color: rgb(28, 75, 52);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.salon-card p {
  margin: 0;
  color: #476351;
  line-height: 1.6;
  text-align: justify;
}

.salon-details {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.72);
}

.salon-details div {
  display: grid;
  gap: 0.2rem;
}

.salon-details strong {
  color: rgb(28, 75, 52);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.salon-details span {
  color: #496052;
  font-size: 0.9rem;
  line-height: 1.45;
}

.salon-quote {
  justify-self: center;
  min-width: 190px;
  margin-top: 0.45rem;
}

.template-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.template-meta span {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(199, 129, 56, 0.28);
  color: rgb(28, 75, 52);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.template-band {
  background: linear-gradient(135deg, #ffffff, #eef5ef);
}

.template-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.template-feature {
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 14px 36px rgba(28, 75, 52, 0.08);
}

.template-feature h3 {
  margin: 0 0 0.55rem;
  color: rgb(28, 75, 52);
}

.template-feature p {
  margin: 0;
  color: #476351;
}

.catering-support {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.catering-support-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(28, 75, 52, 0.18);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(28, 75, 52, 0.94), rgba(16, 41, 30, 0.96)),
    rgb(28, 75, 52);
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(28, 75, 52, 0.18);
  text-align: center;
}

.catering-support-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.catering-support-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  text-align: justify;
}

.catering-menu-button {
  min-width: 230px;
  min-height: 3.35rem;
  justify-content: center;
  border-color: #ffffff;
  background: #ffffff;
  color: rgb(28, 75, 52);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.catering-menu-button:hover,
.catering-menu-button:focus-visible {
  background: #eef5ef;
  transform: translateY(-2px);
}

.catering-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catering-service-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 220px;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 1px solid rgba(28, 75, 52, 0.16);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(28, 75, 52, 0.1);
}

.catering-service-card h3 {
  margin: 0;
  color: rgb(28, 75, 52);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  text-align: center;
  text-transform: uppercase;
}

.catering-service-card p {
  margin: 0;
  color: #476351;
  line-height: 1.62;
  text-align: justify;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}

.plans-grid .plan-card {
  grid-column: span 2;
}

.plans-grid .plan-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.plans-grid .plan-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.experiences-grid .plan-card:nth-child(4),
.experiences-grid .plan-card:nth-child(5) {
  grid-column: span 2;
}

.experiences-grid .plan-card:nth-child(6) {
  grid-column: span 2;
}

.experiences-grid .plan-card:nth-child(7) {
  grid-column: 2 / span 2;
}

.experiences-grid .plan-card:nth-child(8) {
  grid-column: 4 / span 2;
}

.plan-card {
  overflow: hidden;
  padding: 0.55rem;
  border: 1px solid rgba(28, 75, 52, 0.24);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(238, 245, 239, 0.95), rgba(255, 255, 255, 1)),
    #ffffff;
  box-shadow: 0 20px 48px rgba(28, 75, 52, 0.13);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(28, 75, 52, 0.2);
}

.plan-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.38rem;
  background:
    linear-gradient(145deg, rgba(238, 245, 239, 0.95), rgba(255, 255, 255, 1)),
    #eef5ef;
}

.plan-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.plan-card:hover img {
  transform: scale(1.025);
}

.selector-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 1.35rem;
  padding: 0.6rem;
  width: fit-content;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 14px 36px rgba(28, 75, 52, 0.08);
}

.selector-tab {
  border: 1px solid rgba(28, 75, 52, 0.16);
  background: #ffffff;
  color: rgb(28, 75, 52);
  padding: 1rem clamp(1rem, 2vw, 1.6rem);
  border-radius: 0.5rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 190px;
}

.selector-tab.is-active {
  background: rgb(28, 75, 52);
  color: #ffffff;
  border-color: rgb(28, 75, 52);
}

.template-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.1);
}

.template-panel[hidden] {
  display: none;
}

.template-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.template-panel-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.restaurant-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: clamp(1.15rem, 3vw, 2rem);
  align-items: stretch;
  scroll-margin-top: 8rem;
}

.restaurant-gallery {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f6f4ef;
  box-shadow: 0 22px 55px rgba(28, 75, 52, 0.14);
}

.restaurant-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
}

.restaurant-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.restaurant-gallery img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.restaurant-gallery img:hover {
  transform: scale(1.012);
}

.restaurant-slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(28, 75, 52, 0.72);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.restaurant-slider-button:hover {
  background: rgb(28, 75, 52);
  transform: translateY(-50%) scale(1.05);
}

.restaurant-slider-button.prev {
  left: 1rem;
}

.restaurant-slider-button.next {
  right: 1rem;
}

.restaurant-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(28, 75, 52, 0.56);
  backdrop-filter: blur(8px);
}

.restaurant-slider-dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.restaurant-slider-dot.active {
  background: #ffffff;
  transform: scale(1.22);
}

.restaurant-gallery-static img {
  position: static;
  min-height: 560px;
}

.restaurant-menu-preview {
  display: grid;
  align-content: center;
  gap: 1.65rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 2px solid rgba(28, 75, 52, 0.26);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(28, 75, 52, 0.08), rgba(199, 129, 56, 0.13)),
    #ffffff;
  box-shadow: 0 28px 70px rgba(28, 75, 52, 0.18);
}

.restaurant-menu-preview h3 {
  margin: 0;
  color: rgb(28, 75, 52);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  text-align: center;
}

.restaurant-menu-preview > p {
  margin: 0;
  color: #476351;
  line-height: 1.65;
  text-align: justify;
}

.restaurant-hours {
  display: grid;
  place-items: stretch;
  min-height: auto;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  border: 1px solid rgba(199, 129, 56, 0.48);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  color: rgb(28, 75, 52);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(28, 75, 52, 0.08);
}

.restaurant-hours ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.restaurant-hours li {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.45rem;
  min-height: 82px;
  padding: 0.95rem;
  border: 1px solid rgba(28, 75, 52, 0.12);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.restaurant-hours li:last-child {
  border-bottom: 1px solid rgba(28, 75, 52, 0.12);
}

.restaurant-hours strong {
  color: rgb(28, 75, 52);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
}

.restaurant-hours span {
  color: #476351;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

.menu-preview-list {
  display: grid;
  gap: 0.75rem;
}

.menu-preview-list article {
  padding: 0.95rem;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.76);
}

.menu-preview-list strong {
  display: block;
  margin-bottom: 0.3rem;
  color: rgb(28, 75, 52);
}

.menu-preview-list span {
  display: block;
  color: #476351;
  font-size: 0.92rem;
  line-height: 1.5;
}

.restaurant-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.restaurant-actions-single {
  grid-template-columns: minmax(220px, 320px);
  justify-content: center;
}

.restaurant-actions-single .button {
  min-height: 3.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.button-outline {
  border-color: rgb(28, 75, 52);
  background: #ffffff;
  color: rgb(28, 75, 52);
}

.rooms-page-intro {
  padding-bottom: 0.9rem;
}

.rooms-page-intro .section-header {
  margin-bottom: 0.6rem;
}

.room-corridor-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.room-corridor-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  box-shadow: 0 18px 45px rgba(28, 75, 52, 0.1);
  background: #10291e;
}

.room-corridor-strip img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-corridor-strip figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(16, 41, 30, 0.82);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.rooms-catalog {
  padding-top: 1.3rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f7f4 100%);
}

.room-category-list {
  display: grid;
  gap: 1.5rem;
}

.room-category {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
  gap: clamp(0.9rem, 2vw, 1.25rem);
  align-items: stretch;
  padding: clamp(0.75rem, 1.7vw, 1rem);
  border: 1px solid rgba(28, 75, 52, 0.3);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(28, 75, 52, 0.1), rgba(199, 129, 56, 0.14)),
    #ffffff;
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.17);
  overflow: hidden;
}

.room-category:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(199, 129, 56, 0.16), rgba(28, 75, 52, 0.1)),
    #ffffff;
  border-color: rgba(199, 129, 56, 0.42);
}

.room-category-reverse .room-gallery {
  order: 2;
}

.room-category-reverse {
  grid-template-columns: minmax(280px, 35fr) minmax(0, 65fr);
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  aspect-ratio: 16 / 10.5;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0.4rem;
  background: #eef5ef;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-gallery img:hover,
.room-gallery img:focus-visible,
.room-corridor-strip img:hover,
.room-corridor-strip img:focus-visible {
  transform: scale(1.015);
  box-shadow: 0 16px 38px rgba(28, 75, 52, 0.18);
  outline: none;
}

.room-gallery-main {
  grid-column: auto;
}

.room-gallery-three {
  grid-template-rows: 1.18fr 1fr;
}

.room-gallery-three .room-gallery-main {
  grid-column: 1 / -1;
}

.room-category-copy {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  justify-items: center;
  height: 100%;
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(28, 75, 52, 0.22);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: rgb(28, 75, 52);
  text-align: center;
  box-shadow: 0 14px 34px rgba(28, 75, 52, 0.08);
}

.room-category-copy .eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(28, 75, 52, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgb(28, 75, 52);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 1;
}

.room-category-copy h2 {
  margin: 0 0 0.45rem;
  color: inherit;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.05;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.room-category-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 32rem;
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.6;
  opacity: 0.86;
  text-align: justify;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 32rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-amenities li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(28, 75, 52, 0.16);
  border-radius: 999px;
  background: rgba(28, 75, 52, 0.055);
  color: rgb(28, 75, 52);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}

.room-amenities svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facilities-intro {
  padding-bottom: 1rem;
}

.facilities-intro .section-header {
  margin-bottom: 0.6rem;
}

.facilities-catalog {
  padding-top: 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7f4 100%);
}

.facility-list {
  display: grid;
  gap: 1.5rem;
}

.facility-block {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
  gap: clamp(0.9rem, 2vw, 1.25rem);
  align-items: stretch;
  padding: clamp(0.75rem, 1.7vw, 1rem);
  border: 1px solid rgba(28, 75, 52, 0.3);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(28, 75, 52, 0.1), rgba(199, 129, 56, 0.14)),
    #ffffff;
  box-shadow: 0 24px 58px rgba(28, 75, 52, 0.17);
  overflow: hidden;
}

.facility-block:nth-child(even) {
  border-color: rgba(199, 129, 56, 0.42);
  background:
    linear-gradient(135deg, rgba(199, 129, 56, 0.16), rgba(28, 75, 52, 0.1)),
    #ffffff;
}

.facility-block-reverse {
  grid-template-columns: minmax(280px, 35fr) minmax(0, 65fr);
}

.facility-block-reverse .facility-gallery {
  order: 2;
}

.spa-facility-block .spa-info-panel {
  order: 3;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  aspect-ratio: 16 / 10.5;
}

.facility-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0.4rem;
  background: #eef5ef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facility-gallery img:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 38px rgba(28, 75, 52, 0.18);
}

.facility-gallery-three {
  grid-template-rows: 1.18fr 1fr;
}

.facility-gallery-three .facility-gallery-main {
  grid-column: 1 / -1;
}

.facility-gallery-single {
  display: block;
  aspect-ratio: 16 / 9;
}

.facility-gallery-single img {
  width: 100%;
  height: 100%;
}

.facility-gallery:not(.facility-gallery-three) img:first-child {
  grid-column: 1 / -1;
}

.facility-copy {
  display: grid;
  gap: 0.7rem;
  align-content: center;
  height: 100%;
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(28, 75, 52, 0.22);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: rgb(28, 75, 52);
  text-align: center;
  box-shadow: 0 14px 34px rgba(28, 75, 52, 0.08);
}

.facility-copy .eyebrow {
  margin: 0;
  color: inherit;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.facility-copy h2 {
  margin: 0 0 0.8rem;
  color: inherit;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  font-weight: 700;
}

.facility-copy p:not(.eyebrow) {
  margin: 0;
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.6;
  opacity: 0.86;
  text-align: justify;
}

.spa-info-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  grid-template-areas:
    "details details"
    "note action";
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(28, 75, 52, 0.18);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
}

.spa-details {
  grid-area: details;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.spa-details article {
  display: grid;
  gap: 0.25rem;
  min-height: 5rem;
  padding: 0.85rem 0.75rem;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.55rem;
  background: rgba(28, 75, 52, 0.055);
}

.spa-details span {
  color: #6b7d71;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.spa-details strong {
  color: rgb(28, 75, 52);
  font-size: 0.95rem;
  line-height: 1.2;
}

.spa-note {
  grid-area: note;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(199, 129, 56, 0.32);
  border-radius: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 242, 230, 0.92)),
    #ffffff;
  color: rgb(28, 75, 52);
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  box-shadow:
    0 18px 42px rgba(28, 75, 52, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
  text-align: left !important;
}

.spa-note::before {
  content: "$";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(199, 129, 56, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(199, 129, 56, 0.18), rgba(255, 255, 255, 0.86)),
    #fffaf3;
  color: #a4672d;
  font-weight: 800;
}

.spa-note::after {
  content: "INFORMACI\00D3N IMPORTANTE";
  position: absolute;
  top: -0.62rem;
  left: 1rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #ffffff;
  color: #a4672d;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 16px rgba(28, 75, 52, 0.08);
}

.spa-contact-button {
  grid-area: action;
  align-self: stretch;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
}

.nearby-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: stretch;
}

.nearby-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 75, 52, 0.18);
  border-radius: 0.5rem;
  background: #eef5ef;
  box-shadow: 0 20px 50px rgba(28, 75, 52, 0.12);
}

.nearby-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.nearby-copy {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  text-align: center;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(28, 75, 52, 0.18);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(28, 75, 52, 0.08), rgba(199, 129, 56, 0.12)),
    #ffffff;
  color: rgb(28, 75, 52);
}

.nearby-copy .eyebrow {
  margin: 0;
  color: #c78138;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nearby-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  text-align: center;
}

.nearby-copy p {
  margin: 0;
  color: #476351;
  line-height: 1.6;
  text-align: justify;
}

.nearby-points {
  display: grid;
  gap: 0.7rem;
}

.nearby-points article {
  padding: 0.9rem;
  border: 1px solid rgba(28, 75, 52, 0.14);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.76);
}

.nearby-points h3 {
  margin: 0 0 0.3rem;
  color: rgb(28, 75, 52);
  font-size: 1rem;
  text-align: left;
}

.nearby-points h3::before {
  content: "->";
  margin-right: 0.45rem;
  color: #c78138;
  font-weight: 800;
}

.rooms-corridor-section {
  padding-top: 2.2rem;
}

.page-cta {
  padding: 3rem 0;
  background:
    radial-gradient(circle at top left, rgba(199, 129, 56, 0.16), transparent 34%),
    linear-gradient(135deg, #1c4b34, #10291e);
  color: #ffffff;
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.page-cta h2 {
  margin: 0 0 0.5rem;
  color: #ffffff;
  overflow-wrap: break-word;
}

.page-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.form-shell {
  width: min(1180px, calc(100% - 2rem));
}

.form-shell .section-header {
  margin-bottom: 1.1rem;
}

.premium-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 2px solid rgba(28, 75, 52, 0.28);
  border-radius: 0.5rem;
  box-shadow: 0 24px 62px rgba(28, 75, 52, 0.18);
  overflow: hidden;
}

.premium-form label {
  display: grid;
  gap: 0.4rem;
  color: rgb(28, 75, 52);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  border: 1px solid rgba(28, 75, 52, 0.18);
  border-radius: 0.5rem;
  padding: 0.85rem 0.95rem;
  color: #1f2937;
  background: #fbfcfb;
  font: inherit;
}

.premium-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-full {
  grid-column: 1 / -1;
}

.reservation-legal {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.4rem);
  margin-top: clamp(2rem, 4vw, 3.2rem);
  color: rgb(28, 75, 52);
}

.reservation-terms {
  text-align: center;
}

.reservation-legal h3 {
  margin: 0 0 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: rgb(28, 75, 52);
}

.reservation-terms p {
  max-width: 1160px;
  margin: 0 auto;
  color: rgb(28, 75, 52);
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.45;
}

.reservation-legal-divider {
  width: min(420px, 70%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(28, 75, 52, 0.42), transparent);
}

.reservation-data h3 {
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  letter-spacing: 0.03em;
}

.reservation-data p {
  margin: 0;
  color: #476351;
  font-size: 0.84rem;
  line-height: 1.65;
  text-align: justify;
}

@media (max-width: 980px) {
  .template-feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .catering-support,
  .catering-service-grid {
    grid-template-columns: 1fr;
  }

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

  .plans-grid .plan-card,
  .plans-grid .plan-card:nth-child(4),
  .plans-grid .plan-card:nth-child(5),
  .experiences-grid .plan-card:nth-child(6),
  .experiences-grid .plan-card:nth-child(7),
  .experiences-grid .plan-card:nth-child(8) {
    grid-column: auto;
  }

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

  .room-category,
  .room-category-reverse,
  .facility-block,
  .facility-block-reverse,
  .nearby-layout,
  .restaurant-experience {
    grid-template-columns: 1fr;
  }

  .room-category-reverse .room-gallery,
  .facility-block-reverse .facility-gallery {
    order: 0;
  }

  .page-cta-inner {
    grid-template-columns: 1fr;
  }

  .location-media {
    grid-template-columns: 1fr 1fr;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .services-highlight img {
    min-height: 360px;
  }

  .location-video-card {
    grid-column: 1 / -1;
  }

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

  .guest-review-card {
    flex-basis: calc((100% - var(--review-gap)) / 2);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-logo-left,
  .footer-logo-right {
    justify-content: center;
  }

  .footer-center {
    padding: 0;
  }

  .footer-social {
    position: static;
    justify-content: center;
    margin-top: 0.85rem;
    transform: none;
    pointer-events: auto;
  }

  .event-specs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-quote {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 66vh;
    padding: 6rem 0 2.4rem;
  }

  .template-grid,
  .template-feature-list,
  .salon-grid,
  .room-corridor-strip,
  .premium-form {
    grid-template-columns: 1fr;
  }

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

  .plans-grid .plan-card,
  .plans-grid .plan-card:nth-child(4),
  .plans-grid .plan-card:nth-child(5),
  .experiences-grid .plan-card:nth-child(6),
  .experiences-grid .plan-card:nth-child(7),
  .experiences-grid .plan-card:nth-child(8) {
    grid-column: auto;
  }

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

  .selector-tabs {
    width: 100%;
  }

  .selector-tab {
    flex: 1 1 100%;
  }

  .template-panel img {
    min-height: 320px;
  }

  .restaurant-gallery {
    min-height: 360px;
  }

  .restaurant-gallery img {
    min-height: 360px;
  }

  .restaurant-slider-button {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.65rem;
  }

  .restaurant-actions {
    grid-template-columns: 1fr;
  }

  .room-gallery {
    gap: 0.45rem;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
  }

  .room-gallery img,
  .facility-gallery img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .facility-gallery {
    gap: 0.45rem;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
  }

  .spa-details {
    grid-template-columns: 1fr;
  }

  .spa-info-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "details"
      "note"
      "action";
  }

  .spa-contact-button {
    width: 100%;
    justify-self: stretch;
  }

  .nearby-image img {
    min-height: 320px;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .main-nav {
    justify-content: center;
    gap: 0.75rem;
  }

  .main-nav a {
    padding: 0.35rem 0.5rem;
  }

  .nav-dropdown-menu {
    left: 50%;
    width: min(320px, calc(100vw - 2rem));
    min-width: 0;
    transform: translateX(-50%);
  }

  .hero-section {
    padding: 4rem 0;
  }

  .location-highlights {
    grid-template-columns: 1fr;
  }

  .location-copy .section-header h2 {
    white-space: normal;
  }

  .location-media {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    gap: 1rem;
  }

  .review-scoreboard {
    grid-template-columns: 1fr;
  }

  .restaurant-google-reviews .review-scoreboard {
    justify-content: center;
  }

  .restaurant-review-score article {
    border-radius: 0.75rem;
  }

  .guest-reviews-slider {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }

  .guest-reviews-viewport {
    grid-column: 1 / -1;
    order: 1;
    width: 100%;
  }

  .review-slider-button {
    width: 2.7rem;
    height: 2.7rem;
  }

  .review-slider-prev {
    order: 2;
    justify-self: end;
  }

  .review-slider-next {
    order: 3;
    justify-self: start;
  }

  .guest-review-card {
    flex-basis: 100%;
  }

  .media-modal {
    padding: 0.75rem;
  }

  .media-modal-dialog {
    max-height: 90vh;
  }

  .dual-video-grid {
    grid-template-columns: 1fr;
  }

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

  .event-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0.15rem;
  }

  .event-tab {
    flex: 1 1 33%;
    min-width: 0;
    padding: 0.9rem 0.7rem;
    font-size: 0.86rem;
    text-align: center;
  }

  .event-panel,
  .event-panel img {
    min-height: 0;
  }

  .event-panel {
    display: grid;
    background: #ffffff;
  }

  .event-panel img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .event-panel::after {
    display: none;
  }

  .event-overlay {
    position: static;
    display: grid;
    gap: 1rem;
    padding: 1.15rem;
    color: rgb(28, 75, 52);
    background: #ffffff;
  }

  .event-overlay h3 {
    width: auto;
    color: rgb(28, 75, 52);
    font-size: clamp(1.65rem, 8vw, 2.55rem);
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: none;
  }

  .event-specs {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(28, 75, 52, 0.06);
    border-left: 0;
    border-top: 3px solid #c78138;
  }

  .event-specs strong {
    color: rgb(28, 75, 52);
  }

  .event-specs span {
    color: #496052;
  }

  .event-quote {
    justify-self: stretch;
    text-align: center;
    background: rgb(28, 75, 52);
    color: #ffffff;
  }
}

@media (max-width: 560px) {
  .hero-content {
    width: 100%;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .main-nav {
    justify-content: center;
    width: 100%;
    gap: 0.65rem;
  }

  .main-nav a {
    padding: 0.5rem 0.6rem;
  }

  .nav-dropdown-menu {
    left: 50%;
    width: min(300px, calc(100vw - 1.5rem));
    transform: translateX(-50%);
  }

  .button,
  .button-sm {
    width: 100%;
  }

  .services-highlight img {
    min-height: 300px;
  }

  .services-strip {
    justify-content: stretch;
  }

  .services-strip span {
    width: 100%;
    text-align: center;
  }

  .contact-actions .button {
    width: 100%;
  }

  .award-card {
    gap: 0.55rem;
  }

  .media-modal-body img,
  .media-modal-body video {
    max-height: 64vh;
  }

  .event-tab {
    flex-basis: 50%;
    padding: 0.85rem 0.65rem;
  }

  .rooms-grid .card {
    min-height: 390px;
  }

  .rooms-grid .card-body {
    padding: 1.25rem;
  }

  .event-panel,
  .event-panel img {
    min-height: 0;
  }

  .event-overlay {
    padding: 1rem;
  }

  .event-overlay h3 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .event-quote {
    width: 100%;
  }
}

.language-widget {
  position: fixed;
  top: 4rem;
  right: 1rem;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 0.22rem;
  font-family: inherit;
}

.language-current,
.language-option {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(28, 75, 52, 0.96);
  color: rgb(28, 75, 52);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(10px);
}

.language-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  min-height: 1.75rem;
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  color: #ffffff;
}

.language-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
}

.language-code {
  color: #ffffff;
}

.language-caret {
  font-size: 0.76rem;
  color: rgb(244, 196, 141);
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

.language-widget.is-open .language-caret {
  transform: translateY(1px);
}

.language-option {
  display: none;
  min-height: 1.65rem;
  min-width: 2.65rem;
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(28, 75, 52, 0.2);
  color: rgb(28, 75, 52);
}

.language-option:hover,
.language-option:focus-visible {
  background: rgb(199, 129, 56);
  border-color: rgb(199, 129, 56);
  outline: none;
  color: #ffffff;
}

.language-widget.is-open .language-option {
  display: block;
}

@media (max-width: 768px) {
  .language-widget {
    top: 0.65rem;
    right: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.85rem);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .language-widget.is-mobile-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-current,
  .language-option {
    font-size: 0.72rem;
  }

  .language-current {
    min-height: 1.9rem;
    padding: 0.5rem 0.7rem;
  }

  .language-option {
    min-height: 1.85rem;
    min-width: 2.75rem;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 1.1rem, 1100px);
  }

  .top-bar {
    padding: 0.35rem 0;
  }

  .top-bar-text {
    gap: 0.45rem 0.7rem;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .top-label {
    width: 100%;
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .header-inner {
    gap: 0.55rem;
    padding: 0.55rem 0 0.65rem;
  }

  .header-top-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.6rem;
  }

  .header-brand {
    max-width: 100%;
    justify-content: center;
    gap: 0.55rem;
  }

  .brand-logo {
    width: 122px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.11em;
  }

  .brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .header-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 2.55rem;
    padding: 0.65rem 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    width: 100%;
  }

  .main-nav a,
  .nav-dropdown summary {
    min-height: 2.5rem;
    justify-content: center;
    padding: 0.55rem 0.5rem;
    border: 1px solid rgba(28, 75, 52, 0.1);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
  }

  .nav-dropdown {
    min-width: 0;
  }

  .nav-dropdown summary {
    width: 100%;
  }

  .nav-dropdown-menu {
    left: 50%;
    width: min(330px, calc(100vw - 1.4rem));
    min-width: 0;
    transform: translateX(-50%);
  }

  .hero-section {
    min-height: auto;
    padding: 0;
  }

  .hero-slider {
    height: clamp(330px, 58vh, 520px);
    min-height: 330px;
  }

  .hero-content h1 {
    width: min(92vw, 680px);
    padding: 0 0.6rem;
    font-size: clamp(1.55rem, 8vw, 2.45rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .slider-button {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.65rem;
  }

  .slider-button.prev {
    left: 0.55rem;
  }

  .slider-button.next {
    right: 0.55rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header h2,
  .contact-card h2,
  .page-hero h1 {
    text-wrap: balance;
  }

  .page-hero {
    min-height: 52vh;
    padding: 4.6rem 0 2.2rem;
  }

  .page-hero-content {
    width: min(100% - 1.1rem, 1120px);
  }

  .page-hero h1,
  .restaurant-page .page-hero h1,
  .events-catering-page .page-hero h1,
  .rooms-page .page-hero h1,
  .compact-hero-page .page-hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.75rem);
    line-height: 1.05;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .split-section,
  .contact-card,
  .restaurant-panel,
  .restaurant-main-section,
  .restaurant-info-card,
  .room-category,
  .facility-block,
  .spa-schedule,
  .events-intro,
  .catering-panel,
  .location-layout {
    gap: 1rem;
  }

  .split-image,
  .restaurant-gallery,
  .restaurant-gallery img,
  .template-panel img,
  .nearby-image img,
  .location-image,
  .location-image img {
    min-height: 280px;
  }

  .rooms-grid .card {
    min-height: 330px;
  }

  .rooms-grid .card-body {
    gap: 0.55rem;
    padding: 1rem;
  }

  .rooms-grid .card-body h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .rooms-grid .card-body p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .salon-card img {
    min-height: 240px;
  }

  .event-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.5rem;
    border-bottom: 0;
    background: #f7faf7;
  }

  .event-tab {
    min-width: 0;
    min-height: 2.65rem;
    border: 1px solid rgba(28, 75, 52, 0.12);
    border-radius: 0.35rem;
    padding: 0.7rem 0.45rem;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .event-panels {
    padding: 0.75rem;
  }

  .event-overlay h3 {
    letter-spacing: 0.08em;
  }

  .event-specs {
    padding: 0.85rem;
  }

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

  .guest-reviews-slider {
    gap: 0.75rem;
  }

  .guest-review-card {
    min-height: auto;
    padding: 1rem;
  }

  .media-modal {
    align-items: end;
    padding: 0.55rem;
  }

  .media-modal-dialog {
    width: 100%;
    max-height: 92vh;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .media-modal h2 {
    padding: 0 2.6rem;
    font-size: clamp(1rem, 5vw, 1.35rem);
    line-height: 1.2;
  }

  .media-modal-body img,
  .media-modal-body video {
    max-height: 60vh;
  }

  .dual-video-grid {
    gap: 0.75rem;
  }

  .dual-video-card h3 {
    padding: 0.8rem;
    font-size: 0.98rem;
  }

  .language-widget {
    top: auto;
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .language-current {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 0.85rem, 1100px);
  }

  .top-bar-text {
    font-size: 0.66rem;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .main-nav a,
  .nav-dropdown summary {
    min-height: 2.35rem;
    font-size: 0.76rem;
  }

  .hero-slider {
    height: clamp(300px, 52vh, 440px);
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 9vw, 2.1rem);
  }

  .page-hero {
    min-height: 46vh;
    padding: 4rem 0 1.9rem;
  }

  .section {
    padding: 2.55rem 0;
  }

  .rooms-grid .card {
    min-height: 310px;
  }

  .split-image,
  .restaurant-gallery,
  .restaurant-gallery img,
  .template-panel img,
  .nearby-image img,
  .location-image,
  .location-image img {
    min-height: 240px;
  }

  .event-tabs {
    grid-template-columns: 1fr;
  }

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

  .contact-row {
    gap: 0.55rem;
  }

  .contact-item {
    width: 100%;
    justify-content: center;
  }
}
