:root {
  --sea: #314e6f;
  --moss: #526e62;
  --gold: #c09f6b;
  --mist: #9db6bf;
  --cream: #f3efe6;
  --ink: #24425b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(36, 66, 91, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--moss);
  background: var(--cream);
}

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

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

button {
  font: inherit;
}

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 18px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(243, 239, 230, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(36, 66, 91, 0.12);
}

.site-brand__logo {
  height: 60px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--sea);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav__cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sea);
  color: var(--white);
}

.site-nav__cta--ghost {
  background: transparent;
  color: var(--sea);
  border: 1px solid rgba(49, 78, 111, 0.18);
}

.site-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.site-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--sea);
}

.site-flashes {
  padding-top: 110px;
}

.site-flash {
  margin-bottom: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(82, 110, 98, 0.12);
  color: var(--moss);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 90px;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  text-align: center;
}

.hero__content {
  max-width: 860px;
}

.hero__eyebrow,
.section-copy__eyebrow,
.site-footer__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 22px;
}

.hero__logo {
  width: min(360px, 65vw);
  margin: 0 auto 20px;
}

.hero__tagline,
.section-heading p,
.centered-copy p,
.paper-card p,
.feature-card p,
.room-card__desc,
.site-footer p,
.site-footer li {
  line-height: 1.8;
  font-weight: 300;
}

.hero__tagline {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
}

.hero__subtitle,
.section-heading p,
.centered-copy p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.hero__actions,
.section-heading--between {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 34px;
}

.philosophy-image {
  position: relative;
}

.philosophy-image__reviews {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 8px 10px;
    border-radius: 18px;
    background: rgba(243, 239, 230, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(20, 41, 60, 0.16);
}

.philosophy-image__reviews iframe {
  display: block;
  border: 0;
  width: 150px;
  height: 50px;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.site-btn:hover {
  transform: translateY(-1px);
}

.site-btn--gold {
  background: var(--gold);
  color: var(--white);
}

.site-btn--ghost {
  background: rgba(243, 239, 230, 0.08);
  color: var(--cream);
  border-color: rgba(243, 239, 230, 0.42);
}

.site-btn--secondary {
  background: transparent;
  color: var(--sea);
  border-color: rgba(49, 78, 111, 0.18);
}

.section {
  padding: 92px 0;
}

.section--light {
  background: var(--white);
}

.section--pattern {
  position: relative;
  background-image: url('/static/site/images/back.jpg');
  background-repeat: repeat;
  background-size: 340px auto;
}

.section--overlay {
  color: var(--cream);
  background-size: cover;
  background-position: center;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
}

.split-grid--top {
  align-items: start;
}

.paper-card,
.feature-card,
.room-card,
.centered-copy--compact {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.paper-card {
  background: rgba(243, 239, 230, 0.92);
  padding: 34px;
}

.section-copy h2,
.section-heading h2,
.centered-copy h2,
.feature-card h3,
.room-card h3,
.site-footer h3 {
  margin: 0 0 16px;
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.05;
}

.section-copy h2,
.section-heading h2,
.centered-copy h2 {
  font-size: clamp(38px, 5vw, 56px);
}

.section-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.section-image--tall img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.philosophy-text p {
  margin: 0 0 18px;
}

.philosophy-text__more[hidden] {
  display: none;
}

.inline-toggle,
.collapse-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--sea);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--between {
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-heading--between > div {
  max-width: 620px;
}

.highlights-grid,
.rooms-grid,
.gallery-grid,
.site-footer__grid {
  display: grid;
  gap: 24px;
}

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

.feature-card {
  background: var(--cream);
  padding: 30px;
}

.feature-card h3 {
  text-align: center;
  font-size: 34px;
}

.feature-card p {
  margin: 0;
  text-align: center;
}

.feature-card ul {
  margin: 0;
  padding-left: 22px;
}

.feature-card li {
  margin-bottom: 10px;
}

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

.room-card {
  overflow: hidden;
  background: var(--white);
}

.room-card__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.room-card__body {
  padding: 24px;
}

.room-card__category {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.room-card h3 {
  font-size: 32px;
}

.room-card__meta {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--moss);
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--sea);
}

.room-card__price {
  font-weight: 600;
}

.centered-copy {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.centered-copy h2,
.centered-copy p {
  color: inherit;
}

.centered-copy--compact {
  background: var(--white);
  padding: 48px 32px;
}

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

.gallery-grid__item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-grid__item--large {
  grid-row: span 2;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-grid__item--large img {
  aspect-ratio: 3 / 4;
}

.site-footer {
  background: var(--sea);
  color: rgba(243, 239, 230, 0.82);
  padding: 56px 0;
}

.site-footer__grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer h3 {
  color: var(--cream);
  font-size: 38px;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .highlights-grid,
  .rooms-grid,
  .gallery-grid,
  .site-footer__grid,
  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid__item--large {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    border-radius: 24px;
    align-items: flex-start;
  }

  .site-nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(243, 239, 230, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__cta,
  .site-nav__cta--ghost {
    text-align: center;
  }

  .highlights-grid,
  .rooms-grid,
  .gallery-grid,
  .site-footer__grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--between {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 150px;
  }

  .philosophy-image__reviews {
      left: 12px;
      top: 12px;
      padding: 7px 8px;
      border-radius: 16px;
    }

  .paper-card,
  .feature-card,
  .centered-copy--compact,
  .room-card__body {
    padding: 24px;
  }
}
.page-hero {
  padding: 190px 0 92px;
  background-size: cover;
  background-position: center;
  color: var(--cream);
}

.page-hero__content {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
}

.page-hero p:last-child {
  max-width: 640px;
  line-height: 1.8;
  font-weight: 300;
}

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

.feature-card--icon .feature-card__icon {
  display: block;
  margin-bottom: 16px;
  font-size: 32px;
}

.feature-card--icon h3,
.values-list__item h3 {
  text-align: left;
  font-size: 30px;
}

.feature-card--icon p {
  text-align: left;
}

.narrow-copy {
  max-width: 720px;
}

.narrow-copy--light,
.narrow-copy--light h2,
.narrow-copy--light p {
  color: var(--cream);
}

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

.values-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.values-list__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.values-list__index {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1;
  min-width: 44px;
}

.restaurant-panel {
  border-radius: var(--radius-lg);
  background: var(--sea);
  color: var(--cream);
  text-align: center;
  padding: 54px 36px;
  box-shadow: var(--shadow);
}

.restaurant-panel h2 {
  color: var(--cream);
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 56px);
}

.restaurant-panel p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}

.restaurant-panel__meta {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}


.minerals-grid,
.procedures-grid,
.contact-cards,
.directions-grid,
.steps-grid,
.info-grid {
  display: grid;
  gap: 24px;
}

.minerals-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.mineral-card h3 {
  margin-bottom: 10px;
}

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

.procedure-card h3,
.step-card h3,
.info-card h3,
.direction-card h3 {
  text-align: left;
}

.procedure-card p,
.step-card p,
.info-card p,
.direction-card p {
  text-align: left;
}

.procedure-card ul,
.direction-card ul {
  margin-top: 18px;
}

.section-cta-note {
  margin-top: 40px;
  text-align: center;
}

.section-cta-note p {
  margin: 0 0 16px;
  line-height: 1.8;
  font-weight: 300;
}

.centered-copy__lead {
  margin-bottom: 24px;
}

.centered-copy__stack {
  max-width: 760px;
  margin: 0 auto;
}

.centered-copy__stack p {
  margin: 0 0 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 32px;
  align-items: start;
}

.contact-cards {
  margin-top: 24px;
}

.contact-card,
.map-card,
.schedule-card,
.booking-cta-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 22px;
}

.contact-card__icon {
  font-size: 22px;
  color: var(--gold);
  min-width: 26px;
}

.contact-card__label {
  margin: 0 0 6px;
  color: rgba(82, 110, 98, 0.72);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card__value {
  margin: 0;
  color: var(--sea);
  line-height: 1.6;
}

.contact-actions {
  margin-top: 28px;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.schedule-card {
  background: var(--white);
  padding: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(157, 182, 191, 0.32);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row p {
  margin: 0;
  line-height: 1.6;
}

.schedule-row p:last-child {
  color: var(--sea);
  font-weight: 500;
}

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

.direction-card__index,
.step-card__number {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1;
}

.booking-cta-wrap {
  max-width: 820px;
}

.booking-cta-card {
  max-width: none;
}

.booking-cta-actions {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.booking-cta-button {
  width: 100%;
}

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

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

@media (max-width: 1100px) {
  .minerals-grid,
  .directions-grid,
  .steps-grid,
  .info-grid,
  .contact-layout,
  .procedures-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .minerals-grid,
  .directions-grid,
  .steps-grid,
  .info-grid,
  .procedures-grid {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-hero--soft {
  padding: 168px 0 64px;
  background: linear-gradient(180deg, rgba(49, 78, 111, 0.08), rgba(243, 239, 230, 0.96));
  color: var(--sea);
}

.page-hero--detail {
  padding-bottom: 40px;
}

.page-hero__content--compact {
  max-width: 980px;
}

.page-hero--soft h1 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.96;
}

.page-hero--soft p:last-of-type {
  max-width: 760px;
  line-height: 1.8;
  font-weight: 300;
}

.section--tight-top {
  padding-top: 28px;
}

.rooms-highlights-list {
  margin: 28px 0 0;
  padding-left: 24px;
  max-width: 980px;
}

.rooms-highlights-list li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.rooms-highlights-list li::marker {
  color: var(--gold);
}

.search-panel {
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow);
}

.search-panel__heading h2 {
  margin-bottom: 10px;
}

.rooms-search-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: end;
}

.rooms-search-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rooms-search-form span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(82, 110, 98, 0.72);
}

.rooms-search-form input,
.rooms-search-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(49, 78, 111, 0.18);
  background: rgba(243, 239, 230, 0.54);
  color: var(--sea);
  font: inherit;
}

.search-panel__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.search-panel__meta p {
  margin: 0;
  line-height: 1.7;
}

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

.room-card--catalog {
  display: flex;
  flex-direction: column;
}

.room-card__image--catalog img {
  aspect-ratio: 5 / 4;
}

.room-card__amenities {
  margin: 0 0 18px;
  color: rgba(82, 110, 98, 0.8);
  line-height: 1.7;
  font-size: 14px;
}

.room-card__meta-stack {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.room-card__meta-stack p {
  margin: 0;
  color: var(--moss);
  line-height: 1.6;
}

.room-card__footer--stacked {
  align-items: flex-start;
  flex-direction: column;
}

.room-card__footer--stacked small {
  display: block;
  margin-top: 6px;
  color: rgba(82, 110, 98, 0.72);
}

.room-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.room-card__book-form {
  display: inline-flex;
}

.empty-state-card {
  max-width: 760px;
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 380px);
  gap: 32px;
  align-items: start;
}

.room-gallery {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.room-gallery__main,
.room-gallery__thumb,
.room-prices-card,
.booking-sidebar__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

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

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

.room-gallery__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-detail-copy--spaced {
  margin-top: 24px;
}

.rich-copy,
.rich-copy p,
.rich-copy li {
  line-height: 1.8;
}

.rich-copy ul,
.rich-copy ol {
  padding-left: 20px;
}

.room-prices-card {
  margin-top: 24px;
  padding: 28px;
}

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

.room-prices-grid__item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(243, 239, 230, 0.8);
  color: var(--moss);
}

.room-prices-grid__item span,
.room-prices-grid__item strong {
  display: block;
}

.room-prices-grid__item strong {
  margin-top: 8px;
  color: var(--sea);
}

.room-prices-grid__item.is-current {
  background: rgba(192, 159, 107, 0.18);
  border: 1px solid rgba(192, 159, 107, 0.32);
}

.detail-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-hero-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--sea);
  font-size: 14px;
}

.booking-sidebar {
  position: sticky;
  top: 120px;
}

.booking-sidebar__card {
  padding: 28px;
}

.booking-sidebar__card h2 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 56px);
  line-height: 1;
  color: var(--sea);
}

.booking-sidebar__caption,
.booking-sidebar__facts p,
.booking-sidebar__summary p,
.booking-sidebar__auth p {
  margin: 0;
  line-height: 1.7;
}

.booking-sidebar__summary,
.booking-sidebar__facts,
.booking-sidebar__auth {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.booking-sidebar__button {
  width: 100%;
  margin-top: 18px;
}

.booking-sidebar__back {
  display: inline-block;
  margin-top: 22px;
  color: var(--sea);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .rooms-search-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-detail-layout,
  .rooms-grid--catalog {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .rooms-search-form,
  .room-prices-grid,
  .room-gallery__thumbs {
    grid-template-columns: 1fr;
  }

  .search-panel,
  .room-prices-card,
  .booking-sidebar__card {
    padding: 24px;
  }

  .search-panel__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}


.page-hero--image {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  padding: 172px 0 72px;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  background: linear-gradient(180deg, rgba(32, 44, 62, 0.74), rgba(49, 78, 111, 0.56));
}

.page-hero__content--light {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.page-hero__content--light p:last-of-type {
  color: rgba(243, 239, 230, 0.88);
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(243, 239, 230, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-back-link:hover {
  color: var(--cream);
}

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

.article-card,
.article-detail-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-card__media {
  display: block;
}

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

.article-card__body {
  padding: 28px;
}

.article-card__taxonomy,
.article-detail__taxonomy {
  margin-bottom: 14px;
}

.article-meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(192, 159, 107, 0.14);
  color: var(--sea);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.article-meta-badge--light {
  background: rgba(243, 239, 230, 0.16);
  color: var(--cream);
}
.article-card__meta,
.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(82, 110, 98, 0.72);
}

.article-detail__meta {
  margin-top: 22px;
}

.article-detail__meta--light {
  color: rgba(243, 239, 230, 0.82);
}

.article-card h2 {
  margin: 18px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.04;
}

.article-card h2 a {
  color: var(--sea);
  text-decoration: none;
}

.article-card p {
  margin: 0 0 22px;
  line-height: 1.8;
  color: rgba(82, 110, 98, 0.88);
}

.pagination-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.pagination-nav__pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pagination-nav__page,
.pagination-nav__ellipsis {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.pagination-nav__page {
  border: 1px solid rgba(49, 78, 111, 0.16);
  color: var(--sea);
  text-decoration: none;
  background: var(--white);
}

.pagination-nav__page.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.pagination-nav__ellipsis {
  color: rgba(82, 110, 98, 0.72);
}

.article-detail-layout {
  max-width: 980px;
}

.article-detail__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.article-detail__gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-detail__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-detail-card {
  padding: 36px;
}

.article-detail__lead {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(82, 110, 98, 0.92);
}

.wysiwyg-content {
  color: var(--moss);
  line-height: 1.8;
}

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

.wysiwyg-content p,
.wysiwyg-content ul,
.wysiwyg-content ol,
.wysiwyg-content blockquote,
.wysiwyg-content h2,
.wysiwyg-content h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
  padding-left: 24px;
}

.wysiwyg-content li {
  margin-bottom: 10px;
}

.wysiwyg-content h2,
.wysiwyg-content h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--sea);
  line-height: 1.08;
}

.article-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.gallery-card {
  break-inside: avoid;
  margin: 0 0 20px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery-card img {
  width: 100%;
  display: block;
}

@media (max-width: 980px) {
  .article-grid,
  .article-detail__gallery {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    column-count: 2;
  }

  .pagination-nav {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page-hero--image {
    padding-top: 156px;
  }

  .article-card__body,
  .article-detail-card {
    padding: 24px;
  }

  .masonry-grid {
    column-count: 1;
  }
}


.not-found-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article-detail__actions--centered {
  justify-content: center;
}


.success-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}




/* Next.js-aligned public pages */
.site-header {
  padding: 16px 0;
}

.site-header__inner {
  gap: 28px;
  padding: 12px 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-nav {
  flex: 1;
  min-width: 0;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav__mobile-cta {
  display: none;
}

.site-header__actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__book {
  min-width: 168px;
  justify-content: center;
}

.site-header__auth,
.site-header__book,
.site-user-menu__trigger {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

body.site-nav-open,
body.site-lightbox-open {
  overflow: hidden;
}

.page-hero--gallery-next,
.page-hero--rooms-next {
  padding-top: 148px;
  padding-bottom: 52px;
  background: linear-gradient(180deg, rgba(49, 78, 111, 0.06) 0%, rgba(243, 239, 230, 0.96) 100%);
}

.page-hero--rooms-next h1,
.page-hero--gallery-next h1 {
  margin-bottom: 18px;
}

.page-hero__lead {
  max-width: 900px;
  margin: 0 0 26px;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 300;
}

.rooms-highlights-list--next {
  max-width: 1020px;
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 14px;
}

.rooms-highlights-list--next li::marker {
  color: var(--gold);
}

.gallery-section-next {
  padding-top: 8px;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-masonry__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  break-inside: avoid;
}

.gallery-masonry__item img {
  width: 100%;
  transition: transform 0.7s ease;
}

.gallery-masonry__item:hover img {
  transform: scale(1.04);
}

.gallery-masonry__overlay {
  position: absolute;
  inset: auto 18px 18px auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--sea);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-masonry__item:hover .gallery-masonry__overlay {
  opacity: 1;
  transform: translateY(0);
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 15, 22, 0.96);
}

.site-lightbox[hidden] {
  display: none;
}

.site-lightbox__stage {
  position: relative;
  width: min(90vw, 1200px);
  height: min(80vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-lightbox__close,
.site-lightbox__nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-lightbox__close:hover,
.site-lightbox__nav:hover {
  color: #fff;
  transform: scale(1.05);
}

.site-lightbox__close {
  top: 26px;
  right: 26px;
  width: 42px;
  height: 42px;
  z-index: 3;
  touch-action: manipulation;
}

.site-lightbox__close span {
  position: absolute;
  top: 20px;
  left: 8px;
  width: 26px;
  height: 1.5px;
  background: currentColor;
}

.site-lightbox__close span:first-child {
  transform: rotate(45deg);
}

.site-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.site-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 54px;
  line-height: 1;
}

.site-lightbox__nav--prev {
  left: 22px;
}

.site-lightbox__nav--next {
  right: 22px;
}

.site-lightbox__counter {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rooms-section-next {
  padding-top: 18px;
}

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

.room-card--next {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.room-card--next:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(36, 66, 91, 0.16);
}

.room-card__image--next {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-card__image--next img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card--next:hover .room-card__image--next img {
  transform: scale(1.05);
}

.room-card__badge--next {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sea);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-card__body--next {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.room-card__body--next h2 {
  margin: 0;
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  min-height: 78px;
}

.room-card__divider {
  width: 100%;
  height: 1px;
  margin: 12px 0 14px;
  background: rgba(157, 182, 191, 0.4);
}

.room-card__desc--next {
  margin: 0 0 18px;
  color: rgba(82, 110, 98, 0.86);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.room-card__tags--next {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.room-card__tags--next span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--cream);
  color: rgba(82, 110, 98, 0.96);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-card__price-panel--next {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(157, 182, 191, 0.4);
}

.room-card__price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.room-card__price-row + .room-card__price-row {
  margin-top: 14px;
}

.room-card__price-row span {
  color: rgba(82, 110, 98, 0.85);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.5;
}

.room-card__price-row strong {
  color: var(--sea);
  font-size: 22px;
  font-weight: 600;
  text-align: right;
}

.room-card__price-row strong.is-gold {
  color: var(--gold);
}

.rooms-count {
  margin-top: 34px;
  text-align: center;
  color: rgba(82, 110, 98, 0.72);
  font-size: 14px;
}

.room-breadcrumb-wrap {
  padding-top: 118px;
  padding-bottom: 18px;
}

.room-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(82, 110, 98, 0.72);
  font-size: 14px;
}

.room-breadcrumb a:hover {
  color: var(--sea);
}

.room-breadcrumb span:last-child {
  color: var(--sea);
}

.room-detail-next {
  padding-top: 8px;
}

.room-detail-next__top {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: 48px;
}

.room-gallery-modern {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-gallery-modern__main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  cursor: zoom-in;
  background: #dbe5e8;
}

.room-gallery-modern__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-gallery-modern__main:hover img {
  transform: scale(1.02);
}

.room-gallery-modern__counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sea);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.room-gallery-modern__main:hover .room-gallery-modern__counter {
  opacity: 1;
}

.room-gallery-modern__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.room-gallery-modern__thumb {
  width: 96px;
  height: 72px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.6;
  background: transparent;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.room-gallery-modern__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery-modern__thumb:hover,
.room-gallery-modern__thumb.is-active {
  opacity: 1;
}

.room-gallery-modern__thumb.is-active {
  box-shadow: 0 0 0 2px var(--gold);
}

.room-detail-next__category {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-detail-next__info h1 {
  margin: 0 0 18px;
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 56px);
  font-style: italic;
  font-weight: 600;
  line-height: 0.98;
}

.room-detail-next__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-detail-next__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(157, 182, 191, 0.34);
  background: rgba(243, 239, 230, 0.92);
  color: rgba(82, 110, 98, 0.96);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-detail-next__description {
  margin: 0 0 24px;
  color: var(--moss);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

.room-detail-next__facts {
  display: flex;
  gap: 26px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(157, 182, 191, 0.34);
}

.room-detail-next__facts p {
  margin: 0 0 6px;
  color: rgba(82, 110, 98, 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-detail-next__facts strong {
  color: var(--sea);
  font-size: 18px;
  font-weight: 600;
}

.room-detail-next__meals {
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(82, 110, 98, 0.06);
}

.room-detail-next__meals p {
  margin: 0;
  color: var(--moss);
  font-size: 16px;
  line-height: 1.7;
}

.room-detail-next__cta {
  width: 100%;
  justify-content: center;
}

.room-occupancy-card {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid rgba(49, 78, 111, 0.1);
  background: rgba(49, 78, 111, 0.05);
}

.room-occupancy-card p {
  margin: 0;
  color: rgba(82, 110, 98, 0.94);
  line-height: 1.75;
}

.room-occupancy-card p + p {
  margin-top: 12px;
}

.section-heading-inline {
  display: inline-block;
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
}

.room-month-wrapper {
  max-width: 900px;
}

.room-current-price {
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(192, 159, 107, 0.24);
  border-radius: 18px;
  background: rgba(192, 159, 107, 0.08);
}

.room-current-price p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-current-price strong {
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
}

.room-current-price strong span {
  color: rgba(82, 110, 98, 0.72);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

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

.room-month-grid__item {
  padding: 14px 10px;
  border-radius: 14px;
  background: var(--cream);
  text-align: center;
}

.room-month-grid__item.is-current {
  border: 1px solid rgba(192, 159, 107, 0.3);
  background: rgba(192, 159, 107, 0.12);
}

.room-month-grid__item p {
  margin: 0 0 6px;
  color: rgba(82, 110, 98, 0.72);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-month-grid__item strong {
  color: var(--moss);
  font-size: 15px;
  font-weight: 600;
}

.room-month-grid__item.is-current strong {
  color: var(--sea);
}

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

.amenity-grid__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(243, 239, 230, 0.96);
}

.amenity-grid__icon {
  color: var(--sea);
  font-weight: 700;
}

.room-detail-next__back-wrap {
  text-align: center;
}

.booking-search-section {
  padding-top: 24px;
}

.search-panel--book {
  padding: 32px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rooms-search-form--book {
  margin-top: 28px;
}

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

  .room-detail-next__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(243, 239, 230, 0.98);
    box-shadow: 0 24px 70px rgba(36, 66, 91, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--white);
  }

  .site-header__actions {
    display: none;
  }

  .site-nav-toggle {
    display: block;
  }

  .gallery-masonry {
    column-count: 2;
  }

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

@media (max-width: 720px) {
  .site-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    padding: 12px 14px;
  }

  .site-brand__logo {
    height: 50px;
  }

  .page-hero--gallery-next,
  .page-hero--rooms-next {
    padding-top: 132px;
    padding-bottom: 42px;
  }

  .page-hero__lead {
    font-size: 18px;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .site-lightbox {
    padding: 16px;
  }

  .site-lightbox__stage {
    width: 100%;
    height: min(72vh, 620px);
  }

  .site-lightbox__counter {
    top: -28px;
  }

  .site-lightbox__nav {
    font-size: 42px;
  }

  .rooms-grid--next,
  .amenity-grid--next,
  .room-month-grid {
    grid-template-columns: 1fr;
  }

  .room-card__body--next h2 {
    min-height: auto;
    font-size: 30px;
  }

  .room-card__price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-detail-next__facts {
    flex-direction: column;
    gap: 14px;
  }

  .room-gallery-modern__thumb {
    width: 82px;
    height: 64px;
  }

  .section-heading-inline {
    font-size: 32px;
  }

  .room-current-price strong {
    font-size: 34px;
  }

  .search-panel--book {
    padding: 24px 20px;
  }
}

.booking-results-section {
  padding-top: 22px;
}

.booking-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.booking-results-head h2 {
  margin: 0 0 8px;
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 46px);
  font-style: italic;
  font-weight: 600;
}

.booking-results-head p {
  margin: 0;
  max-width: 760px;
}

.booking-results-head__count {
  flex-shrink: 0;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(49, 78, 111, 0.08);
  color: var(--sea);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.booking-results-grid {
  display: grid;
  gap: 18px;
}

.booking-result-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-result-card__image {
  min-height: 100%;
}

.booking-result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-result-card__body {
  padding: 24px;
}

.booking-result-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.booking-result-card__category {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.booking-result-card__top h3 {
  margin: 0;
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.booking-result-card__room-number {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--moss);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.booking-result-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.booking-result-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(243, 239, 230, 0.95);
  color: rgba(82, 110, 98, 0.94);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.booking-result-card__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.booking-result-card__price strong {
  color: var(--sea);
  font-size: 32px;
  font-weight: 600;
}

.booking-result-card__price span {
  color: rgba(82, 110, 98, 0.72);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-result-card__note {
  margin: 12px 0 0;
  color: rgba(82, 110, 98, 0.9);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.booking-result-card__actions {
  margin-top: 20px;
}

.booking-results-empty {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .booking-results-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .booking-result-card__image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .booking-result-card__body {
    padding: 20px;
  }

  .booking-result-card__top {
    flex-direction: column;
  }

  .booking-result-card__top h3 {
    font-size: 30px;
  }

  .booking-result-card__price {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Next.js typography alignment */
:root {
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--sea);
  line-height: 1.7;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
}

p,
li,
a,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.hero__tagline,
.page-hero h1,
.room-detail-next__info h1,
.booking-results-head h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
}

.section-copy h2,
.section-heading h2,
.centered-copy h2,
.restaurant-panel h2,
.room-card h3,
.feature-card h3,
.site-footer h3,
.booking-result-card__top h3,
.room-card__body--next h2,
.section-heading-inline {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 500;
}

.hero__subtitle,
.section-heading p,
.centered-copy p,
.paper-card p,
.feature-card p,
.room-card__desc,
.site-footer p,
.site-footer li,
.page-hero p:last-child,
.room-detail-next__description,
.room-detail-next__meals p,
.room-occupancy-card p,
.booking-result-card__note,
.booking-results-head p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}

.site-nav a,
.site-btn,
.hero__eyebrow,
.section-copy__eyebrow,
.site-footer__eyebrow,
.room-card__category,
.room-card__meta,
.room-card__badge--next,
.room-card__tags--next span,
.room-detail-next__category,
.room-detail-next__tags span,
.room-detail-next__facts p,
.room-current-price p,
.room-month-grid__item p,
.booking-result-card__category,
.booking-result-card__room-number,
.booking-result-card__meta span,
.booking-results-head__count {
  font-family: var(--font-body);
  font-weight: 500;
}

.site-nav a {
  font-size: 11px;
  letter-spacing: 0.27em;
}

.site-btn {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__eyebrow,
.section-copy__eyebrow,
.site-footer__eyebrow {
  letter-spacing: 0.3em;
}

.section-copy h2,
.section-heading h2,
.centered-copy h2,
.restaurant-panel h2,
.section-heading-inline {
  line-height: 1.08;
}

.room-card h3,
.feature-card h3,
.booking-result-card__top h3,
.room-card__body--next h2 {
  line-height: 1.1;
}

.hero__subtitle,
.section-heading p,
.centered-copy p,
.page-hero p:last-child {
  font-size: 18px;
}

@media (max-width: 720px) {
  .site-btn {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .hero__subtitle,
  .section-heading p,
  .centered-copy p,
  .page-hero p:last-child {
    font-size: 16px;
  }
}

.site-footer {
  background: linear-gradient(135deg, #314e6f 0%, #24425b 100%);
  color: rgba(243, 239, 230, 0.82);
  padding: 72px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr 1fr;
  gap: 40px;
}

.site-footer__brand {
  display: inline-block;
  margin-top: 28px;
}

.site-footer__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.site-footer__description {
  max-width: 300px;
  margin: 16px 0 0;
}

.site-footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.site-footer__socials a,
.site-footer__contacts a,
.site-footer__list a {
  color: rgba(243, 239, 230, 0.72);
  transition: color 0.2s ease;
}

.site-footer__socials a:hover,
.site-footer__contacts a:hover,
.site-footer__list a:hover {
  color: var(--cream);
}

.site-footer__contacts {
  display: grid;
  gap: 12px;
}

.site-footer__contacts--booking {
  margin-top: 18px;
}

.site-footer__book {
  margin-top: 8px;
  min-width: 180px;
  justify-content: center;
}

.site-footer__bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(243, 239, 230, 0.1);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(243, 239, 230, 0.4);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

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

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__bottom {
    margin-top: 40px;
    padding-top: 24px;
  }
}

.rooms-highlights-list--next {
  gap: 10px;
}

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

.room-card--home-next {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.room-card--home-next:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(36, 66, 91, 0.16);
}

.room-card__image--home-next {
  position: relative;
  overflow: hidden;
}

.room-card__image--home-next img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card--home-next:hover .room-card__image--home-next img {
  transform: scale(1.05);
}

.room-card__badge--home-next {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sea);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.room-card__body--home-next {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 20px 22px;
}

.room-card__body--home-next h3 {
  margin: 0;
  min-height: 58px;
  font-size: 22px;
  line-height: 1.18;
}

.room-card__divider--home-next {
  margin: 12px 0 16px;
}

.room-card__desc--home-next {
  margin: 0;
  color: rgba(82, 110, 98, 0.86);
  font-size: 15px;
  line-height: 1.65;
}

.room-card__tags--home-next {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 10px;
}

.room-card__tags--home-next span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 239, 230, 0.95);
  color: var(--moss);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}



.room-card__price-range {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(82, 110, 98, 0.14);
}

.room-card__body--home-next .room-card__price-range {
  margin-top: 12px;
}

.room-card__price-range-value {
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
}

.room-card__price-range-caption {
  color: rgba(82, 110, 98, 0.5);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .rooms-grid--home-next {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .rooms-grid--home-next {
    grid-template-columns: 1fr;
  }

  .room-card__body--home-next {
    padding: 24px 18px 20px;
  }

  .room-card__body--home-next h3 {
    min-height: auto;
    font-size: 20px;
  }

  .room-card__price-range {
    gap: 8px;
  }

  .room-card__price-range-value {
    font-size: 17px;
  }
}

/* Next.js parity pass */
:root {
  --shadow: 0 14px 42px rgba(49, 78, 111, 0.08);
}

body {
  color: var(--sea);
  font-weight: 300;
}

.site-header {
  padding: 0;
  background: rgba(243, 239, 230, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(49, 78, 111, 0.08);
}

.site-header__inner {
  min-height: 64px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.site-brand__logo {
  height: 56px;
}

.hero {
  padding: 148px 0 88px;
}

.hero__logo {
  width: min(300px, 54vw);
  margin: 0 auto 14px;
}

.hero__tagline {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 10px;
}

.hero__subtitle,
.section-heading p,
.centered-copy p,
.page-hero p:last-child,
.section-copy p,
.room-card__desc,
.feature-card p {
  font-size: 16px;
  line-height: 1.72;
}

.hero__eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.34em;
}

.section {
  padding: 84px 0;
}

.page-hero {
  padding: 128px 0 74px;
}

.page-hero__content {
  max-width: 860px;
}

.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.04;
  font-style: italic;
  font-weight: 400;
}

.page-hero p:last-child,
.page-hero__lead {
  max-width: 760px;
  font-size: 18px;
  font-weight: 300;
}

.section-copy h2,
.section-heading h2,
.centered-copy h2,
.narrow-copy h2,
.room-detail-next__section h2,
.booking-results-head h2 {
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 400;
}

.section-heading,
.centered-copy,
.section-copy {
  margin-bottom: 0;
}

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

.section-copy__eyebrow {
  display: none;
}

.feature-card,
.mineral-card,
.step-card,
.info-card,
.direction-card {
  box-shadow: none;
  border: 1px solid rgba(157, 182, 191, 0.18);
}

.paper-card,
.centered-copy--compact,
.schedule-card,
.contact-card,
.map-card,
.article-card,
.booking-cta-card,
.booking-result-card,
.success-card {
  box-shadow: 0 14px 36px rgba(49, 78, 111, 0.08);
}

.feature-card h3,
.article-card__body h2,
.article-card__body h3,
.contact-card__value,
.step-card h3,
.info-card h3,
.direction-card h3 {
  font-size: 28px;
  line-height: 1.16;
  font-weight: 400;
}

.feature-card p,
.article-card__body p,
.contact-card__label,
.contact-card__value,
.schedule-row p,
.direction-card li,
.booking-result-card__note {
  font-weight: 300;
}

.rooms-grid--home-next,
.rooms-grid--next,
.article-grid,
.contact-cards,
.steps-grid,
.procedures-grid,
.directions-grid,
.info-grid {
  margin-top: 0;
}

.article-card,
.contact-card,
.booking-result-card {
  border-radius: 20px;
}

.booking-results-head,
.section-heading.section-heading--center,
.section-heading.section-heading--between {
  gap: 0;
}

@media (max-width: 860px) {
  .site-brand__logo {
    height: 52px;
  }

  .hero__logo {
    width: min(240px, 56vw);
  }

  .page-hero {
    padding: 120px 0 64px;
  }

  .section {
    padding: 72px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .centered-copy h2,
  .narrow-copy h2,
  .room-detail-next__section h2,
  .booking-results-head h2 {
    font-size: 32px;
  }
}

.section--overlay .section-copy__eyebrow,
.narrow-copy .section-copy__eyebrow {
  display: block;
}

/* Next.js parity pass - refinement */
.page-hero .hero__eyebrow {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.34em;
}

.site-brand__logo {
  height: 52px;
}

.hero__logo {
  width: min(260px, 48vw);
  margin: 0 auto 12px;
}

.site-footer__logo {
  height: 72px;
}

.site-footer__eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
}

.site-footer__description,
.site-footer__contacts a,
.site-footer__list a,
.site-footer__bottom p {
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__bottom p {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.room-card--home-next {
  box-shadow: 0 16px 34px rgba(49, 78, 111, 0.08);
}

.room-card--home-next:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(49, 78, 111, 0.10);
}

.article-grid--journal-next {
  margin-top: 40px;
}

.article-card--journal-next {
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(49, 78, 111, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.article-card--journal-next:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(49, 78, 111, 0.12);
}

.article-card__link--journal-next {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-card__media--journal-next {
  position: relative;
  overflow: hidden;
}

.article-card__media--journal-next img {
  transition: transform 0.7s ease;
}

.article-card--journal-next:hover .article-card__media--journal-next img {
  transform: scale(1.05);
}

.article-meta-badge--overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.article-card__body--journal-next {
  padding: 24px 28px 28px;
}

.article-card__body--journal-next h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 34px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
}

.article-card__body--journal-next p {
  margin: 0;
  color: rgba(82, 110, 98, 0.84);
  font-size: 16px;
  line-height: 1.72;
}

.section-heading--journal {
  max-width: 720px;
}

.search-panel--book {
  padding: 28px;
  box-shadow: 0 14px 34px rgba(49, 78, 111, 0.08);
}

.search-panel__heading--book {
  margin-bottom: 18px;
}

.search-panel__heading--book p {
  margin: 0;
  max-width: none;
  color: rgba(82, 110, 98, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.booking-results-head {
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 20px;
}

.booking-results-head__copy p {
  margin-top: 4px;
}

.booking-results-head__count {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(243, 239, 230, 0.94);
  color: rgba(82, 110, 98, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-result-card {
  box-shadow: 0 16px 38px rgba(49, 78, 111, 0.08);
}

.booking-result-card__top h3 {
  font-size: 30px;
  font-weight: 500;
}

.booking-result-card__price strong {
  font-size: 30px;
}

@media (max-width: 860px) {
  .hero__logo {
    width: min(210px, 50vw);
  }

  .search-panel--book {
    padding: 22px 18px;
  }

  .article-card__body--journal-next {
    padding: 22px 20px 24px;
  }

  .article-card__body--journal-next h2 {
    font-size: 28px;
  }
}

/* Rooms hero parity */
.page-hero--rooms-next {
  padding-top: 128px;
  padding-bottom: 34px;
}

.page-hero--rooms-next .page-hero__content {
  max-width: 980px;
}

.page-hero--rooms-next h1 {
  margin: 0 0 10px;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
}

.page-hero--rooms-next .page-hero__lead {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(82, 110, 98, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.rooms-highlights-list--next {
  max-width: 860px;
  padding-left: 20px;
  gap: 8px;
}

.rooms-highlights-list--next li {
  margin: 0;
  color: rgba(82, 110, 98, 0.92);
  font-size: 15px;
  line-height: 1.6;
}

.rooms-section-next {
  padding-top: 20px;
}

@media (max-width: 860px) {
  .page-hero--rooms-next {
    padding-top: 118px;
    padding-bottom: 28px;
  }

  .page-hero--rooms-next h1 {
    font-size: 42px;
  }

  .page-hero--rooms-next .page-hero__lead {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .rooms-highlights-list--next {
    gap: 6px;
  }

  .rooms-highlights-list--next li {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* Contact sizing + card contrast */
.section--light {
  background: linear-gradient(180deg, rgba(243, 239, 230, 0.76) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.highlights-grid .feature-card,
.steps-grid .feature-card,
.info-grid .feature-card,
.procedures-grid .feature-card,
.directions-grid .feature-card,
.minerals-grid .feature-card,
.contact-card,
.schedule-card,
.map-card,
.booking-cta-card,
.paper-card,
.centered-copy--compact,
.article-card,
.booking-result-card,
.success-card {
  border: 1px solid rgba(157, 182, 191, 0.18);
}

.highlights-grid .feature-card,
.steps-grid .feature-card,
.info-grid .feature-card,
.procedures-grid .feature-card,
.directions-grid .feature-card,
.minerals-grid .feature-card {
  background: var(--white);
}

.contact-layout .section-copy h2 {
  font-size: clamp(30px, 4vw, 40px);
}

.contact-card {
  padding: 20px 22px;
}

.contact-card__label {
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.22em;
}

.contact-card__value {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
}

#philosophy .split-grid--top {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
}

#philosophy .section-image {
  justify-self: end;
}

@media (max-width: 1024px) {
  #philosophy .split-grid--top {
    grid-template-columns: 1fr;
  }

  #philosophy .section-image {
    justify-self: stretch;
  }
}

/* Home categories + overlay focus + tighter sections */
.section {
  padding: 78px 0;
}

.section--overlay-bottom {
  background-position: center bottom;
}

@media (max-width: 1024px) {
  .section {
    padding: 68px 0;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 60px 0;
  }
}

/* Contact layout parity */
.contact-layout {
  grid-template-columns: minmax(320px, 540px) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.contact-layout__info {
  max-width: 540px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  width: 100%;
}

.map-card {
  min-height: 100%;
  height: 100%;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-layout__info {
    max-width: none;
  }

  .map-card {
    min-height: 420px;
  }
}


/* Rooms card title parity */
.room-card__body--next h2 {
  font-size: 22px;
  line-height: 1.12;
  min-height: 56px;
}

@media (max-width: 860px) {
  .room-card__body--next h2 {
    font-size: 20px;
    min-height: auto;
  }
}


/* Booking combinations */
.booking-results-grid--combinations {
  gap: 20px;
}

.booking-combination-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(49, 78, 111, 0.08);
  padding: 24px;
}

.booking-combination-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.booking-combination-card__top h3 {
  margin: 0;
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.booking-combination-card__rooms {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.booking-combination-card__room {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(243, 239, 230, 0.7);
  border: 1px solid rgba(157, 182, 191, 0.18);
}

.booking-combination-card__room img {
  width: 132px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
}

.booking-combination-card__room-copy h4 {
  margin: 0 0 6px;
  color: var(--sea);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.booking-combination-card__room-copy p:last-child {
  margin: 0;
  color: rgba(82, 110, 98, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.booking-combination-card__room-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.booking-result-card__price--combination {
  margin-top: 4px;
}

.booking-combination-card__hint {
  margin: 12px 0 0;
  color: rgba(82, 110, 98, 0.84);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .booking-combination-card__top {
    flex-direction: column;
  }

  .booking-combination-card__room {
    grid-template-columns: 1fr;
  }

  .booking-combination-card__room img {
    width: 100%;
    height: 180px;
  }

  .booking-combination-card__room-actions {
    justify-content: flex-start;
  }

  .booking-combination-card__top h3 {
    font-size: 28px;
  }
}

.booking-combination-card__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Home section parity: philosophy + highlights */
#philosophy .split-grid--top {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 56px;
}

#philosophy .paper-card {
  max-width: 620px;
  margin-right: auto;
  padding: 30px 32px;
}

#philosophy .section-image {
  width: 100%;
}

#philosophy .section-image--tall img {
  aspect-ratio: 1 / 1.12;
}

#home-highlights {
  background: var(--white);
}

#home-highlights .section-heading--center p {
  color: rgba(82, 110, 98, 0.8);
}

#home-highlights .highlights-grid .feature-card {
  background: var(--cream);
  border: none;
  box-shadow: none;
}

#home-highlights .highlights-grid .feature-card h3 {
  color: var(--sea);
  font-size: 30px;
  font-weight: 500;
}

#home-highlights .highlights-grid .feature-card p,
#home-highlights .highlights-grid .feature-card li {
  color: rgba(82, 110, 98, 0.82);
}

#home-highlights .highlights-grid .feature-card ul {
  list-style: disc;
}

#home-highlights .highlights-grid .feature-card li::marker {
  color: var(--gold);
}

@media (max-width: 1024px) {
  #philosophy .split-grid--top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #philosophy .paper-card {
    max-width: none;
    padding: 28px 24px;
  }

  #philosophy .section-image--tall img {
    aspect-ratio: 4 / 5;
  }
}

/* Page hero cleanup + gallery spacing + wellness focal point */
.page-hero .hero__eyebrow {
  display: none;
}

.gallery-section-next.section--tight-top {
  padding-top: 0;
}

.page-hero--wellness-next {
  background-position: center 80%;
}

/* Public page parity pass: live pages */
.section--light {
  background: var(--white);
}

.section-copy h2,
.section-heading h2,
.section-heading-inline {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(192, 159, 107, 0.72);
}

.section-heading--center h2,
.section-heading--between h2,
.centered-copy > h2,
.narrow-copy > h2 {
  margin-bottom: 18px;
}

.page--journal .article-card--journal-next,
.page--contact .contact-card,
.page--contact .map-card,
.page--contact .schedule-card,
.page--book .search-panel--book,
.page--book .booking-cta-card,
.page--book .booking-result-card,
.page--book .booking-combination-card,
.page--book .empty-state-card,
.page--thanks .success-card,
.page--not-found .not-found-card {
  background: var(--white);
  border: none;
  box-shadow: 0 15px 50px rgba(49, 78, 111, 0.08);
}

.page--home .highlights-grid .feature-card,
.page--wellness .mineral-card,
.page--contact .direction-card,
.page--book .step-card,
.page--accessibility .procedure-card {
  background: var(--cream);
  border: none;
  box-shadow: none;
}

.page--wellness .procedure-card,
.page--book .info-card {
  background: var(--white);
  border: none;
  box-shadow: 0 15px 50px rgba(49, 78, 111, 0.08);
}

.page--journal .article-detail-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}

.page--journal .article-detail__gallery-item {
  box-shadow: 0 15px 50px rgba(49, 78, 111, 0.08);
}

.page--journal .article-detail__actions {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(157, 182, 191, 0.3);
}

.page--book .booking-results-head,
.page--book .booking-result-card__top,
.page--book .booking-combination-card__top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(232, 228, 219, 0.92);
}

.page--book .booking-result-card__price,
.page--book .booking-result-card__price--combination {
  padding-top: 18px;
  border-top: 1px solid rgba(232, 228, 219, 0.92);
}

.page--rooms .room-detail-next__facts {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(232, 228, 219, 0.92);
}

.page--rooms .room-detail-next__meals {
  background: rgba(82, 110, 98, 0.05);
  border-radius: 12px;
  padding: 16px;
}

.page--rooms .room-amenities-section-next {
  background: var(--white);
}

.page--rooms .amenity-grid__item,
.page--rooms .room-month-grid__item {
  background: var(--cream);
}

.page--contact .schedule-row,
.page--journal .pagination-nav,
.page--journal .article-card__body--journal-next,
.page--journal .article-detail__meta,
.page--rooms .room-breadcrumb-wrap {
  border-color: rgba(157, 182, 191, 0.3);
}

.page--contact .contact-card__label,
.page--contact .contact-card__value,
.page--journal .article-card__body--journal-next p,
.page--book .booking-result-card__note,
.page--wellness .feature-card p,
.page--accessibility .feature-card p {
  color: rgba(82, 110, 98, 0.84);
}

.page--journal .article-card__body--journal-next h2,
.page--book .booking-results-head h2,
.page--rooms .section-heading-inline,
.page--wellness .feature-card h3,
.page--contact .direction-card h3,
.page--book .step-card h3,
.page--book .info-card h3,
.page--accessibility .feature-card h3 {
  color: var(--sea);
}

/* Home content adjustments */
#home-highlights.section {
  padding-top: 44px;
}

#home-highlights .section-heading {
  margin-bottom: 48px;
}

.home-cta-section {
  padding-top: 52px;
}

.home-cta-section .centered-copy > h2 {
  margin-bottom: 18px;
}

.home-cta-section .centered-copy > p {
  margin-bottom: 18px;
}

.home-cta-section .site-btn {
  margin-top: 16px;
}


/* Wellness background focal point alignment */
#wellness.section--overlay-bottom {
  background-position: center 72%;
}

.page-hero--wellness-next {
  background-position: center 72%;
}

/* Shared section spacing parity for live inner pages */
.page:not(.page--home) .section > .site-container > .section-heading:first-child,
.page:not(.page--home) .section > .site-container > .centered-copy:first-child,
.page:not(.page--home) .section > .site-container > .narrow-copy:first-child,
.page:not(.page--home) .section > .site-container > .booking-results-head:first-child,
.page:not(.page--home) .section > .site-container > .split-grid > div:first-child > .section-copy:first-child,
.page:not(.page--home) .section > .site-container > .contact-layout > .contact-layout__info > .section-copy:first-child {
  margin-top: -12px;
}

.page:not(.page--home) .section-heading {
  margin-bottom: 44px;
}

.page:not(.page--home) .section-copy > p:last-of-type,
.page:not(.page--home) .centered-copy > p:last-of-type,
.page:not(.page--home) .narrow-copy > p:last-of-type,
.page:not(.page--home) .booking-results-head__copy p:last-of-type {
  margin-bottom: 18px;
}

.page:not(.page--home) .centered-copy__stack,
.page:not(.page--home) .section-copy + .contact-cards,
.page:not(.page--home) .section-cta-note,
.page:not(.page--home) .booking-cta-actions,
.page:not(.page--home) .centered-copy > .site-btn,
.page:not(.page--home) .centered-copy > .hero__actions,
.page:not(.page--home) .narrow-copy > .site-btn,
.page:not(.page--home) .narrow-copy > .hero__actions {
  margin-top: 18px;
}

/* Contact directions palette parity */
.page--contact .directions-grid {
  gap: 24px;
}

.page--contact .direction-card {
  background: var(--cream);
  border: none;
  box-shadow: none;
}

.page--contact .direction-card__index {
  color: var(--gold);
}

.page--contact .direction-card h3 {
  color: var(--sea);
}

.page--contact .direction-card ul {
  margin-top: 14px;
}

.page--contact .direction-card li {
  color: var(--moss);
}

.page--contact .direction-card li::marker {
  color: var(--gold);
}

/* Contact schedule parity */
.page--contact .schedule-card {
  max-width: 768px;
  padding: 24px 28px;
  background: var(--white);
  border: none;
  box-shadow: 0 15px 50px rgba(49, 78, 111, 0.08);
}

.page--contact .schedule-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(157, 182, 191, 0.3);
}

.page--contact .schedule-row p:first-child {
  color: rgba(82, 110, 98, 0.72);
  font-size: 15px;
  font-weight: 300;
}

.page--contact .schedule-row p:last-child {
  color: var(--sea);
  font-size: 15px;
  font-weight: 500;
}

/* Booking + contact + footer parity refinements */
.page--book input[type='date']::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.site-footer__heading {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.site-footer__list--about {
  margin-bottom: 32px;
}

.site-footer__list {
  display: grid;
  gap: 10px;
}

.site-footer__brand {
  margin-top: 0;
}

.site-footer__description {
  max-width: 260px;
  margin: 16px 0 0;
}

.site-footer__contacts,
.site-footer__list a,
.site-footer__description,
.site-footer__bottom p {
  font-size: 14px;
}

.site-footer__contacts--booking {
  margin-top: 16px;
}

.site-footer__bottom p {
  letter-spacing: 0.34em;
}

/* Footer next parity fine-tune */
.site-footer {
  padding: 64px 0 0;
}

.site-footer__grid {
  gap: 40px 32px;
}

.site-footer__heading {
  margin: 0 0 24px;
  letter-spacing: 0.34em;
}

.site-footer__list {
  gap: 12px;
}

.site-footer__list--about {
  gap: 10px;
  margin-bottom: 32px;
}

.site-footer__brand {
  display: inline-block;
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
}

.site-footer__logo {
  height: 80px;
  width: auto;
}

.site-footer__description {
  max-width: 300px;
  margin-top: 16px;
  color: rgba(243, 239, 230, 0.7);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.site-footer__socials {
  gap: 16px;
  margin-top: 24px;
}

.site-footer__socials a,
.site-footer__contacts a,
.site-footer__list a {
  color: rgba(243, 239, 230, 0.7);
  font-size: 14px;
  font-weight: 300;
}

.site-footer__socials a:hover {
  color: var(--gold);
}

.site-footer__contacts a:hover,
.site-footer__list a:hover {
  color: var(--cream);
}

.site-footer__contacts {
  gap: 12px;
}

.site-footer__book {
  margin-top: 0;
  min-width: 0;
}

.site-footer__contacts--booking {
  margin-top: 16px;
  gap: 10px;
}

.site-footer__bottom {
  margin-top: 64px;
  padding: 32px 0 40px;
  border-top: 1px solid rgba(243, 239, 230, 0.1);
}

.site-footer__bottom p {
  color: rgba(243, 239, 230, 0.4);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-footer {
    padding-top: 56px;
  }

  .site-footer__grid {
    gap: 36px 28px;
  }
}

@media (max-width: 860px) {
  .site-footer {
    padding-top: 48px;
  }

  .site-footer__grid {
    gap: 32px;
  }

  .site-footer__bottom {
    margin-top: 40px;
    padding: 24px 0 32px;
  }
}

/* Footer heading and booking column cleanup */
.site-footer h3.site-footer__heading {
  margin: 0 0 24px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-footer__booking-only {
  display: flex;
  align-items: flex-start;
  padding-top: 36px;
}

.site-footer__booking-only .site-footer__book {
  margin-top: 0;
}

/* Rooms hero tightening */
.page-hero--rooms-next {
  padding-top: 112px;
  padding-bottom: 22px;
  background-size: cover;
  background-position: center;
}

.page-hero--rooms-next .page-hero__content {
  max-width: 760px;
}

.page-hero--rooms-next h1 {
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(192, 159, 107, 0.78);
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.02;
}

.page-hero--rooms-next .page-hero__lead {
  max-width: 620px;
  margin: 0 0 14px;
}

.rooms-highlights-list--next {
  max-width: 700px;
  gap: 6px;
}

.rooms-highlights-list--next li {
  line-height: 1.52;
}

.rooms-section-next {
  padding-top: 14px;
}

@media (max-width: 860px) {
  .page-hero--rooms-next {
    padding-top: 104px;
    padding-bottom: 18px;
  }

  .page-hero--rooms-next .page-hero__content {
    max-width: 100%;
  }

  .page-hero--rooms-next h1 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 40px;
  }

  .page-hero--rooms-next .page-hero__lead {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .rooms-highlights-list--next {
    max-width: 100%;
  }
}

/* Rooms and gallery hero background visibility */
.page-hero--gallery-next,
.page-hero--rooms-next {
  background-size: cover;
  background-position: center;
  color: var(--cream);
}

.page-hero--gallery-next h1,
.page-hero--rooms-next h1 {
  color: var(--cream);
}

.page-hero--gallery-next p:last-child,
.page-hero--rooms-next .page-hero__lead,
.page-hero--rooms-next .rooms-highlights-list--next li {
  color: rgba(243, 239, 230, 0.84);
}

.page-hero--rooms-next .rooms-highlights-list--next li::marker {
  color: var(--gold);
}

/* Gallery grid top spacing */
.gallery-section-next.section--tight-top {
  padding-top: 24px;
}

/* Public auth modal and user menu */
.site-header__actions {
  gap: 12px;
}

.site-header__auth {
  min-width: 124px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  color: var(--sea);
  border-color: rgba(49, 78, 111, 0.12);
}

.site-nav__mobile-auth {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(49, 78, 111, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--sea);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav__mobile-link {
  display: none;
}

.site-user-menu {
  position: relative;
}

.site-user-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(49, 78, 111, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--sea);
}

.site-user-menu__avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(192, 159, 107, 0.18);
  color: var(--sea);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.site-user-menu__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-user-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(49, 78, 111, 0.10);
  box-shadow: 0 24px 60px rgba(36, 63, 93, 0.14);
}

.site-user-menu__dropdown[hidden] {
  display: none !important;
}

.site-user-menu__dropdown a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--sea);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.site-user-menu__dropdown a:hover {
  background: rgba(49, 78, 111, 0.05);
  color: var(--gold);
}

body.site-auth-open,
body.site-nav-open,
body.site-lightbox-open {
  overflow: hidden;
}

.site-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.site-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 63, 93, 0.46);
  backdrop-filter: blur(8px);
}

.site-auth-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  padding: 42px 34px 34px;
  border-radius: 32px;
  background: rgba(243, 239, 230, 0.98);
  box-shadow: 0 36px 80px rgba(36, 63, 93, 0.18);
  border: 1px solid rgba(49, 78, 111, 0.08);
}

.site-auth-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.84);
}

.site-auth-modal__close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 1px;
  background: var(--sea);
}

.site-auth-modal__close span:first-child {
  transform: rotate(45deg);
}

.site-auth-modal__close span:last-child {
  transform: rotate(-45deg);
}

.site-auth-modal__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.site-auth-modal__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(157, 182, 191, 0.18);
  color: var(--sea);
  font-size: 28px;
}

.site-auth-modal__copy {
  text-align: center;
}

.site-auth-modal__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 44px);
}

.site-auth-modal__copy p {
  margin: 0;
  color: var(--moss);
  line-height: 1.75;
}

.site-auth-modal__switch {
  margin: 22px 0 18px;
  text-align: center;
  color: rgba(82, 110, 98, 0.76);
  font-size: 14px;
}

.site-auth-modal__switch button {
  border: none;
  background: none;
  color: var(--sea);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-auth-modal__error {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(170, 91, 76, 0.12);
  color: #a55649;
  font-size: 14px;
  text-align: center;
}

.site-auth-form {
  display: grid;
  gap: 14px;
}

.site-auth-form[hidden],
.site-auth-modal__error[hidden] {
  display: none !important;
}

.site-auth-form__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(82, 110, 98, 0.76);
}

.site-auth-form__input {
  min-height: 58px;
  padding: 15px 18px;
  border: 1px solid rgba(49, 78, 111, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sea);
  font-size: 16px;
}

.site-auth-form__input:focus {
  outline: none;
  border-color: rgba(192, 159, 107, 0.72);
  box-shadow: 0 0 0 4px rgba(192, 159, 107, 0.12);
}

.site-auth-form__hint {
  margin: -4px 0 0;
  color: rgba(82, 110, 98, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.site-auth-form__submit {
  width: 100%;
  justify-content: center;
}

.site-auth-form__check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 2px;
  color: var(--moss);
  font-size: 14px;
  line-height: 1.65;
}

.site-auth-form__check input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.site-auth-form__back {
  justify-self: start;
  border: none;
  background: none;
  color: rgba(82, 110, 98, 0.82);
  font-size: 14px;
}

.site-auth-form__phone {
  margin: -4px 0 2px;
  text-align: center;
  color: var(--sea);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.site-auth-code-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.site-auth-code-grid__input {
  min-height: 58px;
  border: 1px solid rgba(49, 78, 111, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sea);
  font-size: 24px;
  text-align: center;
}

.site-auth-code-grid__input:focus {
  outline: none;
  border-color: rgba(192, 159, 107, 0.72);
  box-shadow: 0 0 0 4px rgba(192, 159, 107, 0.12);
}

.site-auth-form__code-actions {
  display: grid;
  gap: 10px;
}

.site-auth-form__resend {
  justify-content: center;
}

@media (max-width: 980px) {
  .site-nav__mobile-auth,
  .site-nav__mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2px;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--sea);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
  }

  .site-nav__mobile-link {
    border: 1px solid rgba(49, 78, 111, 0.08);
  }
}

@media (max-width: 720px) {
  .site-auth-modal {
    padding: 16px;
  }

  .site-auth-modal__dialog {
    padding: 34px 22px 24px;
    border-radius: 28px;
  }

  .site-auth-modal__copy h2 {
    font-size: 34px;
  }

  .site-auth-code-grid {
    gap: 8px;
  }

  .site-auth-code-grid__input {
    min-height: 52px;
    font-size: 22px;
  }
}










.booking-widget-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-widget-field > span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(49, 78, 111, 0.58);
}

.booking-widget-trigger {
  width: 100%;
  min-height: 84px;
  padding: 18px 22px;
  border: 1px solid rgba(49, 78, 111, 0.12);
  border-radius: 24px;
  background: #fff;
  color: var(--sea);
  text-align: left;
  cursor: pointer;
}

.booking-widget-trigger strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.booking-widget-trigger small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(82, 110, 98, 0.78);
}

.booking-widget-field--guests {
  position: relative;
}

.booking-widget-guests-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  z-index: 12;
  padding: 20px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(49, 78, 111, 0.12);
  box-shadow: 0 24px 60px rgba(36, 66, 91, 0.14);
}

.booking-widget-guests-row + .booking-widget-guests-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(157, 182, 191, 0.28);
}

.booking-widget-guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.booking-widget-guests-row h3 {
  margin: 0 0 4px;
  color: var(--sea);
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.booking-widget-guests-row p {
  margin: 0;
  font-size: 14px;
  color: rgba(82, 110, 98, 0.82);
}

.booking-widget-stepper {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  min-width: 170px;
  border: 1px solid #2f6df5;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.booking-widget-stepper--mint {
  border-color: #52a46b;
}

.booking-widget-stepper button {
  height: 54px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 26px;
  cursor: pointer;
}

.booking-widget-stepper span {
  text-align: center;
  font-size: 24px;
  color: var(--sea);
}

.booking-widget-stepper--mint span,
.booking-widget-stepper--mint button {
  color: #3b8f57;
}

.booking-widget-guests-apply {
  width: 100%;
  margin-top: 18px;
}

.booking-calendar-modal[hidden],
.booking-widget-guests-panel[hidden] {
  display: none !important;
}

.booking-calendar-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.booking-calendar-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 66, 91, 0.55);
}

.booking-calendar-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 32px));
  margin: 80px auto;
  padding: 28px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 24px 60px rgba(36, 66, 91, 0.22);
}

.booking-calendar-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--sea);
  font-size: 28px;
  cursor: pointer;
}

.booking-calendar-modal__eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--gold);
}

.booking-calendar-modal__head h2 {
  margin: 0;
}

.booking-calendar-modal__head p {
  margin: 10px 0 0;
}

.booking-calendar-modal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.booking-calendar-modal__nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(49, 78, 111, 0.16);
  background: var(--white);
  color: var(--sea);
  font-size: 26px;
  cursor: pointer;
}

.booking-calendar-grid__weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-calendar-grid__weekdays {
  margin-top: 20px;
  color: rgba(49, 78, 111, 0.56);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.booking-calendar-grid {
  margin-top: 14px;
}

.booking-calendar-grid__day {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(49, 78, 111, 0.08);
  background: var(--white);
  color: var(--sea);
  cursor: pointer;
}

.booking-calendar-grid__day.is-muted {
  color: rgba(49, 78, 111, 0.32);
}

.booking-calendar-grid__day.is-disabled {
  color: rgba(49, 78, 111, 0.24);
  background: rgba(255,255,255,0.4);
  cursor: not-allowed;
}

.booking-calendar-grid__day.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.booking-calendar-grid__day.is-in-range {
  background: rgba(192, 159, 107, 0.16);
  border-color: rgba(192, 159, 107, 0.2);
}

.booking-calendar-modal__footer {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.booking-calendar-modal__footer strong {
  display: block;
  color: var(--sea);
}

.booking-calendar-modal__footer span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

body.is-modal-open {
  overflow: hidden;
}

.room-detail-next__gallery-column,
.room-detail-next__info,
.room-gallery-modern,
.room-gallery-modern__thumbs,
.booking-room-modal__content {
  min-width: 0;
}

.room-detail-next,
.room-detail-next__top {
  overflow-x: clip;
}

@media (max-width: 720px) {
  .site-lightbox {
    padding: 18px;
  }

  .site-lightbox__stage {
    width: 100%;
    height: min(74vh, 620px);
  }

  .site-lightbox__close {
    top: 10px;
    right: 10px;
    width: 52px;
    height: 52px;
  }

  .site-lightbox__close span {
    top: 25px;
    left: 12px;
    width: 28px;
    height: 2px;
  }

  .site-lightbox__nav {
    font-size: 42px;
  }

  .site-lightbox__nav--prev {
    left: 8px;
  }

  .site-lightbox__nav--next {
    right: 8px;
  }

  .room-detail-next__top {
    overflow-x: hidden;
  }

  .room-detail-next__tags,
  .room-detail-next__facts,
  .room-gallery-modern__thumbs {
    min-width: 0;
  }

  .booking-room-modal__dialog {
    width: min(100%, 100%);
    max-height: calc(100dvh - 32px);
    overflow: hidden;
  }

  .booking-room-modal__body {
    max-height: calc(100dvh - 132px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 900px) {
  .booking-widget-guests-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-widget-stepper {
    width: 100%;
  }

  .booking-calendar-modal__dialog {
    margin: 24px auto;
    padding: 22px;
  }
}
.booking-search-section .rooms-search-form--book {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(0, 1.08fr) minmax(220px, 0.9fr) auto;
  align-items: end;
  gap: 18px;
}

.booking-widget-field {
  min-width: 0;
}

.booking-widget-field > span {
  min-height: 16px;
  padding-left: 2px;
}

.booking-widget-trigger,
.booking-widget-select,
.booking-widget-submit {
  min-height: 84px;
  height: 84px;
  border-radius: 24px;
}

.booking-widget-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.booking-widget-trigger--guests {
  border-width: 1px;
  box-shadow: none;
}

.booking-widget-trigger strong,
.booking-widget-select {
  font-size: 18px;
  font-weight: 400;
}

.booking-widget-select-wrap {
  position: relative;
}

.booking-widget-select-wrap::after {
  content: '▾';
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: rgba(49, 78, 111, 0.72);
  font-size: 16px;
  pointer-events: none;
}

.booking-widget-select {
  width: 100%;
  padding: 0 48px 0 22px;
  border: 1px solid rgba(49, 78, 111, 0.12);
  background: #fff;
  color: var(--sea);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.booking-widget-submit {
  min-width: 260px;
  padding: 0 32px;
  align-self: end;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.booking-widget-guests-panel {
  left: 0;
  right: auto;
  width: min(420px, calc(100vw - 48px));
  padding: 24px 22px 22px;
}

.booking-widget-guests-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 186px;
  align-items: center;
  gap: 18px;
}

.booking-widget-guests-row h3 {
  font-size: 16px;
  line-height: 1.3;
}

.booking-widget-guests-row p {
  font-size: 14px;
  line-height: 1.45;
}

.booking-widget-stepper {
  width: 186px;
  min-width: 186px;
  grid-template-columns: 56px 74px 56px;
}

.booking-widget-stepper button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-widget-stepper span {
  font-size: 18px;
  line-height: 1;
}

.booking-widget-guests-apply {
  min-height: 56px;
  height: 56px;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .booking-search-section .rooms-search-form--book {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-widget-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .booking-search-section .rooms-search-form--book {
    grid-template-columns: 1fr;
  }

  .booking-widget-submit,
  .booking-widget-trigger,
  .booking-widget-select {
    min-height: 76px;
    height: 76px;
  }

  .booking-widget-guests-panel {
    width: 100%;
  }

  .booking-widget-guests-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-widget-stepper {
    width: 100%;
    min-width: 0;
    grid-template-columns: 56px 1fr 56px;
  }
}
.booking-widget-trigger,
.booking-widget-select {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(49, 78, 111, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.booking-widget-trigger:hover,
.booking-widget-trigger:focus-visible,
.booking-widget-select:focus {
  border-color: rgba(49, 78, 111, 0.26);
  outline: none;
}

.booking-widget-field > span {
  color: rgba(49, 78, 111, 0.62);
}

.booking-widget-trigger strong,
.booking-widget-select,
.booking-widget-guests-row h3,
.booking-widget-stepper span {
  color: #294866;
}

.booking-widget-trigger small,
.booking-widget-guests-row p {
  color: rgba(82, 110, 98, 0.9);
}

.booking-widget-trigger small {
  max-width: 18ch;
  line-height: 1.45;
}

.booking-widget-select {
  font-family: 'Montserrat', sans-serif;
}

.booking-widget-trigger--guests {
  background: rgba(255, 255, 255, 0.98);
}

.booking-widget-guests-panel {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(49, 78, 111, 0.14);
}

.booking-widget-stepper {
  background: rgba(255, 255, 255, 0.98);
}
.search-panel__heading--book p {
  color: rgba(49, 78, 111, 0.82);
}

.booking-search-section .booking-widget-field > span {
  color: rgba(49, 78, 111, 0.72);
}

.booking-search-section .booking-widget-trigger strong,
.booking-search-section .booking-widget-select {
  color: #2f4c6a;
}

.booking-search-section .booking-widget-trigger small {
  color: rgba(82, 110, 98, 0.86);
}

.booking-search-section .booking-widget-select,
.booking-search-section .booking-widget-select:focus,
.booking-search-section .booking-widget-select:active {
  background: rgba(255, 255, 255, 0.96);
  color: #2f4c6a;
  box-shadow: none;
}

.booking-search-section .booking-widget-select option {
  color: #2f4c6a;
  background: #fff;
}
.search-panel__heading--book p {
  font-size: 17px;
}

.booking-search-section .booking-widget-field > span {
  font-weight: 500;
}
.booking-result-card__image--button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.booking-result-card__title-link,
.booking-result-card__details-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.booking-result-card__title-link {
  font: inherit;
  text-align: left;
}

.booking-result-card__title-link:hover,
.booking-result-card__details-link:hover {
  color: var(--gold);
}

.booking-result-card__title-link--small {
  font-size: inherit;
}

.booking-result-card__links {
  margin-top: 10px;
}

.booking-result-card__details-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(49, 78, 111, 0.72);
}

.booking-result-card__details-link--small {
  margin-top: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.booking-room-modal[hidden] {
  display: none !important;
}

.booking-room-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.booking-room-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 66, 91, 0.58);
}

.booking-room-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0;
  padding: 28px;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 28px 70px rgba(36, 66, 91, 0.24);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.booking-room-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(49, 78, 111, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--sea);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.booking-room-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  align-items: start;
}

.booking-room-modal__media,
.booking-room-modal__content {
  min-width: 0;
}

.booking-room-modal__main-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #dfe7ea;
}

.booking-room-modal__main-image {
  width: 100%;
  aspect-ratio: 1.1 / 0.88;
  object-fit: cover;
}

.booking-room-modal__counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sea);
  font-size: 13px;
}

.booking-room-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.booking-room-modal__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.booking-room-modal__thumb.is-active {
  border-color: var(--gold);
}

.booking-room-modal__thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
}

.booking-room-modal__category {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--gold);
}

.booking-room-modal__content h2 {
  margin: 0;
  padding-right: 56px;
}

.booking-room-modal__description {
  margin: 18px 0 0;
  color: rgba(82, 110, 98, 0.92);
}

.booking-room-modal__tags,
.booking-room-modal__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-room-modal__tags {
  margin-top: 20px;
}

.booking-room-modal__tags span,
.booking-room-modal__amenities span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(49, 78, 111, 0.1);
  color: var(--sea);
  font-size: 14px;
}

.booking-room-modal__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.booking-room-modal__facts div,
.booking-room-modal__extra {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.booking-room-modal__facts span,
.booking-room-modal__extra span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(49, 78, 111, 0.56);
}

.booking-room-modal__facts strong,
.booking-room-modal__extra strong {
  display: block;
  margin-top: 8px;
  color: var(--sea);
  font-size: 18px;
}

.booking-room-modal__extra {
  margin-top: 12px;
}

.booking-room-modal__amenities-wrap {
  margin-top: 22px;
}

.booking-room-modal__amenities-wrap h3 {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--sea);
}

.booking-room-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.booking-room-modal__footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.booking-room-modal__dismiss {
  min-width: 180px;
}

@media (max-width: 980px) {
  .booking-room-modal {
    padding: 12px;
  }

  .booking-room-modal__dialog {
    width: 100%;
    padding: 20px;
    max-height: calc(100dvh - 24px);
  }

  .booking-room-modal__grid {
    grid-template-columns: 1fr;
  }

  .booking-room-modal__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .booking-room-modal {
    padding: 10px;
  }

  .booking-room-modal__dialog {
    padding: 18px 16px 16px;
    border-radius: 24px;
    max-height: calc(100dvh - 20px);
  }

  .booking-room-modal__close {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
  }

  .booking-room-modal__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-room-modal__content h2 {
    padding-right: 44px;
  }

  .booking-room-modal__footer {
    position: sticky;
    bottom: -16px;
    margin-top: 20px;
    padding-top: 12px;
    padding-bottom: 2px;
    background: linear-gradient(180deg, rgba(243, 239, 230, 0), rgba(243, 239, 230, 0.96) 28%, var(--cream) 100%);
  }

  .booking-room-modal__dismiss {
    width: 100%;
  }
}

.booking-pricing-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(157, 182, 191, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-pricing-note summary {
  cursor: pointer;
  list-style: none;
  color: var(--sea);
  font-size: 14px;
  font-weight: 600;
}

.booking-pricing-note summary::-webkit-details-marker {
  display: none;
}

.booking-pricing-note summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.booking-pricing-note[open] summary::after {
  content: '–';
}

.booking-pricing-note__body {
  margin-top: 14px;
  color: rgba(82, 110, 98, 0.88);
  font-size: 14px;
  line-height: 1.7;
}

.booking-pricing-note__body p {
  margin: 0;
}

.booking-pricing-note__body p + p {
  margin-top: 10px;
}
.booking-result-card__note--expandable {
  margin-top: 12px;
  border: 1px solid rgba(157, 182, 191, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.booking-result-card__note--expandable summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  color: rgba(82, 110, 98, 0.92);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.booking-result-card__note--expandable summary::-webkit-details-marker {
  display: none;
}

.booking-result-card__note--expandable summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.booking-result-card__note--expandable[open] summary::after {
  content: '–';
}

.booking-result-card__note-body {
  padding: 0 16px 16px;
  color: rgba(82, 110, 98, 0.88);
  font-size: 13px;
  line-height: 1.7;
}

.booking-result-card__note-body p {
  margin: 0;
}

.booking-result-card__note-body p + p {
  margin-top: 9px;
}

.booking-results-group + .booking-results-group {
  margin-top: 30px;
}

.booking-results-subhead {
  margin-bottom: 16px;
}

.booking-results-subhead h3 {
  margin: 0;
  color: var(--sea);
  font-size: 24px;
}

.booking-results-subhead p {
  margin: 8px 0 0;
  color: rgba(82, 110, 98, 0.84);
  font-size: 14px;
  line-height: 1.6;
}



.site-auth-form__check--stacked {
  align-items: flex-start;
  gap: 10px;
}

.site-auth-form__check--stacked input {
  margin-top: 4px;
}

.site-auth-form__check-text {
  display: inline;
  line-height: 1.55;
}

.site-auth-form__check-text .site-auth-form__link {
  white-space: normal;
}

.site-auth-form__link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sea);
  font: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(49, 78, 111, 0.35);
  text-underline-offset: 3px;
  cursor: pointer;
}

.site-auth-form__link:hover,
.site-auth-form__link:focus-visible {
  color: var(--gold);
  text-decoration-color: rgba(192, 159, 107, 0.65);
  outline: none;
}

.site-doc-modal[hidden] {
  display: none !important;
}

.site-doc-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
}

.site-doc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 66, 91, 0.58);
}

.site-doc-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  max-height: min(78vh, 860px);
  margin: min(8vh, 64px) auto;
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 28px 70px rgba(36, 66, 91, 0.24);
}

.site-doc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(49, 78, 111, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--sea);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.site-doc-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-doc-modal__dialog h2 {
  margin: 0 0 18px;
  padding-right: 56px;
}

.site-doc-modal__content-wrap {
  display: grid;
  gap: 30px;
}

.site-doc-modal__content {
  overflow: auto;
  max-height: calc(78vh - 210px);
  padding-right: 10px;
  color: rgba(82, 110, 98, 0.96);
  white-space: pre-line;
}

.site-doc-modal__content p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.site-doc-modal__actions {
  display: flex;
  justify-content: flex-end;
}

.site-doc-modal__cta[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .site-doc-modal__dialog {
    width: calc(100% - 20px);
    margin: 16px auto;
    padding: 24px 18px 18px;
    border-radius: 22px;
    max-height: calc(100vh - 32px);
  }

  .site-doc-modal__content {
    max-height: calc(100vh - 250px);
  }
}




.site-auth-form__check.site-auth-form__check--stacked {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.site-auth-form__check.site-auth-form__check--stacked input {
  margin-top: 4px;
  flex: 0 0 auto;
}

.site-auth-form__check.site-auth-form__check--stacked .site-auth-form__check-text {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  text-align: left !important;
  line-height: 1.55;
}

.site-auth-form__check.site-auth-form__check--stacked .site-auth-form__link {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  white-space: normal;
  text-align: left !important;
}


.legal-page {
  max-width: 1120px;
}

.legal-page__heading {
  margin-bottom: 28px;
}

.legal-tabs {
  display: grid;
  gap: 20px;
}

.legal-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.legal-tabs__button {
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid rgba(49, 78, 111, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(49, 78, 111, 0.92);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.legal-tabs__button:hover,
.legal-tabs__button:focus-visible {
  border-color: rgba(192, 159, 107, 0.5);
  color: var(--sea);
  outline: none;
  transform: translateY(-1px);
}

.legal-tabs__button.is-active {
  border-color: rgba(192, 159, 107, 0.6);
  background: var(--gold);
  color: #fff;
}

.legal-document {
  padding: 34px 36px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(36, 66, 91, 0.08);
}

.legal-document__eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.legal-document h2 {
  margin: 0 0 18px;
}

.legal-document__body {
  color: rgba(82, 110, 98, 0.96);
  font-size: 15px;
  line-height: 1.85;
  white-space: pre-line;
}

@media (max-width: 900px) {
  .legal-document {
    padding: 28px 24px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .legal-tabs__nav {
    justify-content: stretch;
  }

  .legal-tabs__button {
    width: 100%;
  }

  .legal-document {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .legal-document__body {
    font-size: 14px;
    line-height: 1.75;
  }
}

.split-grid--reverse > :first-child {
  order: 2;
}

.split-grid--reverse > :last-child {
  order: 1;
}

.cms-dynamic-richtext {
  display: grid;
  gap: 14px;
}

.cms-dynamic-richtext p {
  margin: 0;
}

.site-footer__reviews {
  margin-top: 18px;
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(243, 239, 230, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(20, 41, 60, 0.16);
}

.site-footer__reviews iframe {
  display: block;
  border: 0;
  width: 150px;
  height: 50px;
}

@media (max-width: 640px) {
  .site-footer__reviews {
    margin-top: 14px;
    padding: 7px 8px;
    border-radius: 16px;
  }
}

.room-pricing-section-next.section--tight-top {
  padding-top: 14px;
}

.room-pricing-section-next.section--tight-top {
  padding-top: 8px;
}

.room-month-grid__item {
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.room-month-grid__item--cold {
  background: linear-gradient(180deg, rgba(100, 149, 237, 0.14), rgba(100, 149, 237, 0.08));
  border-color: rgba(100, 149, 237, 0.22);
}

.room-month-grid__item--growth {
  background: linear-gradient(180deg, rgba(120, 181, 107, 0.16), rgba(120, 181, 107, 0.09));
  border-color: rgba(120, 181, 107, 0.24);
}

.room-month-grid__item--warm {
  background: linear-gradient(180deg, rgba(214, 170, 86, 0.18), rgba(214, 170, 86, 0.1));
  border-color: rgba(214, 170, 86, 0.26);
}

.room-month-grid__item--high {
  background: linear-gradient(180deg, rgba(225, 137, 105, 0.18), rgba(225, 137, 105, 0.1));
  border-color: rgba(225, 137, 105, 0.26);
}

.room-month-grid__item--peak {
  background: linear-gradient(180deg, rgba(203, 99, 87, 0.22), rgba(203, 99, 87, 0.12));
  border-color: rgba(203, 99, 87, 0.3);
}

.room-month-grid__item.is-current {
  border-width: 1px;
  box-shadow: 0 12px 26px rgba(49, 78, 111, 0.08);
  transform: translateY(-1px);
}

.room-month-grid__item--cold.is-current {
  border-color: rgba(68, 112, 194, 0.42);
}

.room-month-grid__item--growth.is-current {
  border-color: rgba(88, 145, 76, 0.42);
}

.room-month-grid__item--warm.is-current {
  border-color: rgba(193, 144, 49, 0.42);
}

.room-month-grid__item--high.is-current {
  border-color: rgba(201, 110, 78, 0.42);
}

.room-month-grid__item--peak.is-current {
  border-color: rgba(176, 74, 64, 0.46);
}

.room-month-grid {
  gap: 12px;
}

.room-month-grid__item {
  padding: 16px 12px;
  border-radius: 12px;
  background: #f6f1e7;
  border: 1px solid transparent;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.room-month-grid__item p {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.room-month-grid__item strong {
  font-size: 18px;
  font-weight: 600;
}

.room-month-grid__item--cold {
  background: #e6f0fb;
}

.room-month-grid__item--cold p,
.room-month-grid__item--cold strong {
  color: #1657a0;
}

.room-month-grid__item--growth {
  background: #edf5de;
}

.room-month-grid__item--growth p,
.room-month-grid__item--growth strong {
  color: #477b1d;
}

.room-month-grid__item--warm {
  background: #fdf0d8;
}

.room-month-grid__item--warm p,
.room-month-grid__item--warm strong {
  color: #8a5a11;
}

.room-month-grid__item--high {
  background: #fcebe4;
}

.room-month-grid__item--high p,
.room-month-grid__item--high strong {
  color: #9b4d2b;
}

.room-month-grid__item--peak {
  background: #f6c2c5;
}

.room-month-grid__item--peak p,
.room-month-grid__item--peak strong {
  color: #9f2b2f;
}

.room-month-grid__item.is-current {
  border-width: 3px;
  box-shadow: 0 10px 24px rgba(49, 78, 111, 0.1);
  transform: translateY(-1px);
}

.room-month-grid__item--cold.is-current {
  border-color: #0e4f97;
}

.room-month-grid__item--growth.is-current {
  border-color: #3f751a;
}

.room-month-grid__item--warm.is-current {
  border-color: #95600b;
}

.room-month-grid__item--high.is-current {
  border-color: #a7542f;
}

.room-month-grid__item--peak.is-current {
  border-color: #96282d;
}

.page--rooms .room-month-grid__item {
  background: #f6f1e7;
  border: 1px solid transparent;
  border-radius: 12px;
}

.page--rooms .room-month-grid__item--cold {
  background: #e6f0fb;
  border-color: rgba(22, 87, 160, 0.24);
}

.page--rooms .room-month-grid__item--growth {
  background: #edf5de;
  border-color: rgba(71, 123, 29, 0.24);
}

.page--rooms .room-month-grid__item--warm {
  background: #fdf0d8;
  border-color: rgba(138, 90, 17, 0.24);
}

.page--rooms .room-month-grid__item--high {
  background: #fcebe4;
  border-color: rgba(155, 77, 43, 0.24);
}

.page--rooms .room-month-grid__item--peak {
  background: #f6c2c5;
  border-color: rgba(159, 43, 47, 0.26);
}

.page--rooms .room-month-grid__item.is-current {
  border-width: 3px;
}

.cms-dynamic-section--faq {
  position: relative;
}

.faq-section {
  position: relative;
}

.faq-section__card {
  padding: 38px 42px;
}

.faq-section__heading {
  margin-bottom: 28px;
}

.faq-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
}

.faq-item {
  border-bottom: 1px solid rgba(49, 78, 111, 0.16);
}

.faq-item__trigger {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--sea);
}

.faq-item__question {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(49, 78, 111, 0.78);
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item__answer {
  padding: 0 44px 22px 0;
}

.faq-item__answer p,
.faq-laundry p {
  margin: 0;
  color: rgba(82, 110, 98, 0.88);
  line-height: 1.75;
}

.faq-item__answer p + p,
.faq-laundry p + p {
  margin-top: 12px;
}

.faq-section__footer {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(49, 78, 111, 0.16);
}

.faq-laundry {
  max-width: 760px;
}

.faq-laundry h3 {
  margin: 0 0 10px;
  color: var(--sea);
  font-size: 30px;
  line-height: 1.08;
}

@media (max-width: 900px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .faq-section__card {
    padding: 24px 20px;
  }

  .faq-section__heading {
    margin-bottom: 20px;
  }

  .faq-item__trigger {
    padding: 18px 0;
    gap: 16px;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq-item__answer {
    padding: 0 16px 18px 0;
  }

  .faq-laundry h3 {
    font-size: 26px;
  }
}



