:root {
  --ivory: #fff7e9;
  --paper: #f7eddd;
  --blush: #e8c9bf;
  --soft-blush: #f1ded6;
  --mustard: #e0b72f;
  --charcoal: #171714;
  --ink: #24231f;
  --muted: #6f685d;
  --line: rgba(36, 35, 31, 0.25);
  --white: #fffdf8;
  --announcement-height: 40px;
  --header-height: 140px;
  --content: 1340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

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

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

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

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

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 25px;
}

:focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--white);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--announcement-height);
  padding: 0 52px;
  background: var(--mustard);
  color: var(--charcoal);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.announcement button {
  position: absolute;
  top: 0;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 60px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.site-header--overlay {
  position: absolute;
  top: var(--announcement-height);
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background: transparent;
  color: var(--white);
}

.wordmark {
  justify-self: center;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  text-transform: lowercase;
}

.wordmark--dark,
.wordmark--footer {
  color: var(--charcoal);
}

.menu-toggle,
.destinations__toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  text-transform: uppercase;
}

.menu-toggle {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.menu-toggle__lines {
  display: grid;
  gap: 4px;
  width: 34px;
}

.menu-toggle__lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.destinations {
  position: relative;
  justify-self: end;
}

.destinations__toggle {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
}

.destinations__toggle::after {
  content: " \25BE";
}

.destinations__toggle[aria-expanded="true"]::after {
  content: " \25B4";
}

.destinations__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 12px;
  transform: translateY(-6px);
  visibility: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.destinations__menu.is-open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.destinations__menu a {
  padding: 10px;
  font-size: 14px;
}

.destinations__menu a:hover {
  background: var(--soft-blush);
}

.site-menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  overflow-y: auto;
  padding: 34px 48px 50px;
  transform: translateY(-102%);
  visibility: hidden;
  background: var(--mustard);
  color: var(--charcoal);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), visibility 420ms;
}

.site-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.site-menu__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-menu__top .wordmark {
  grid-column: 2;
}

.site-menu__top .icon-button {
  grid-column: 3;
  justify-self: end;
}

.site-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  width: min(100%, 1240px);
  margin: 130px auto 80px;
}

.site-menu__group {
  display: grid;
  align-content: start;
}

.site-menu__group .eyebrow {
  margin-bottom: 22px;
}

.site-menu__group a {
  width: fit-content;
  padding: 6px 0;
  font-size: 25px;
  line-height: 1.2;
}

.site-menu__group a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-menu__note {
  margin: 0;
  text-align: center;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-button:hover {
  background: var(--charcoal);
  color: var(--white);
}

.icon-button:active,
.text-button:active,
.booking-strip__submit:active {
  transform: translateY(1px);
}

.icon-button--large {
  width: 54px;
  height: 54px;
  font-size: 28px;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-shell {
  width: min(calc(100% - 80px), var(--content));
  margin-inline: auto;
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.text-button--filled,
.text-button--dark,
.text-button--light {
  min-width: 150px;
  padding: 0 20px;
  border: 1px solid var(--charcoal);
}

.text-button--filled {
  background: var(--mustard);
  color: var(--charcoal);
}

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

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

.text-button--filled:hover,
.text-button--dark:hover,
.text-button--light:hover {
  background: transparent;
  color: inherit;
}

.home-hero,
.property-hero,
.editorial-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  color: var(--white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero {
  overflow: hidden;
}

.home-hero::after {
  position: absolute;
  z-index: -2;
  inset: -2%;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  animation: hero-drift 18s ease-in-out infinite alternate;
  content: "";
}

.home-hero.is-paused::after {
  animation-play-state: paused;
}

@keyframes hero-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-0.6%, -0.4%, 0); }
}

.home-hero::before,
.property-hero::before,
.editorial-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(19, 18, 15, 0.12);
  content: "";
}

.home-hero {
  align-items: center;
  min-height: calc(100dvh - var(--announcement-height));
  padding: 180px 30px 145px;
  background-position: center;
}

.home-hero__content {
  width: min(100%, 700px);
  margin-inline: auto;
  transform: translateY(-55px);
  text-align: center;
}

.home-hero__content .eyebrow {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.25;
}

.home-hero__content h1 {
  margin-bottom: 0;
  font-family: Arial, sans-serif;
  font-weight: 600;
  text-wrap: balance;
}

.home-hero__content h1 span {
  display: inline;
}

.booking-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 83px;
  background: rgba(23, 23, 20, 0.88);
  color: var(--white);
}

.booking-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  padding: 12px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
}

.booking-field__label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.booking-field__icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  font-size: 16px;
  line-height: 1;
}

.booking-field__icon--calendar {
  border: 2px solid currentColor;
  border-radius: 1px;
}

.booking-field__icon--calendar::before {
  width: 10px;
  height: 2px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.booking-field__icon--pin {
  width: 14px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 9px 1px;
  transform: rotate(-45deg);
}

.booking-field__icon--pin::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.booking-field__icon--guests::before,
.booking-field__icon--guests::after {
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 50% 50% 2px 2px;
  content: "";
}

.booking-field__icon--guests {
  position: relative;
}

.booking-field__icon--guests::before {
  top: 1px;
  left: 1px;
  width: 7px;
  height: 12px;
}

.booking-field__icon--guests::after {
  right: 0;
  bottom: 0;
  width: 7px;
  height: 10px;
}

.booking-strip__submit {
  border: 0;
  background: var(--mustard);
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.booking-strip__mobile-label {
  display: none;
}

.hero-media-toggle {
  position: absolute;
  z-index: 2;
  bottom: 87px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}

.booking-strip__message {
  position: absolute;
  right: 20px;
  bottom: calc(100% + 10px);
  margin: 0;
  padding: 5px 8px;
  background: var(--charcoal);
  font-size: 12px;
}

.booking-strip__message:empty {
  display: none;
}

.intro-split {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.85fr);
  align-items: center;
  gap: 70px;
  min-height: clamp(828px, calc(47.57vw + 143px), 955px);
  padding-block: 44px;
}

.intro-split__copy {
  max-width: 380px;
}

.intro-split__copy h2,
.dining-split__copy h2 {
  margin-bottom: 24px;
}

.intro-split__copy .text-button,
.dining-split__copy .text-button {
  margin-top: 20px;
}

.media-carousel {
  position: relative;
  min-width: 0;
}

.media-carousel__track {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.37 / 1;
  background: #c9bba8;
}

.media-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  transform: translateX(4%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), visibility 420ms;
}

.media-carousel__slide.is-active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.media-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 18px;
}

.intro-split .media-carousel__controls {
  padding-top: 10px;
}

.media-carousel__count {
  min-width: 42px;
  font-size: 11px;
  text-align: center;
}

.locations-band {
  min-height: 999px;
  padding: 96px 40px 83px;
  background: var(--blush);
}

.locations-band .section-heading {
  margin-bottom: 50px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1160px);
  margin-inline: auto;
}

.property-tile {
  background: var(--ivory);
}

.property-tile > a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.31 / 1;
}

.property-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.property-tile:hover img,
.listing-item:hover img,
.journal-card:hover img,
.gallery-grid__item:hover img {
  transform: scale(1.025);
}

.property-tile__body {
  padding: 25px 48px 27px;
  text-align: center;
}

.property-tile__body p:not(.eyebrow) {
  max-width: 48ch;
  margin-inline: auto;
}

.dining-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 70px;
  min-height: 913px;
  padding-block: 55px;
}

.dining-split.section-shell {
  width: min(calc(100% - 80px), 1160px);
}

.dining-split__copy {
  max-width: 480px;
  justify-self: center;
}

.dining-split__carousel .media-carousel__track {
  aspect-ratio: 0.77 / 1;
}

.sun-mark {
  width: 92px;
  height: 92px;
  margin-bottom: 35px;
  border: 18px solid var(--charcoal);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 -29px 0 -26px var(--charcoal), 0 29px 0 -26px var(--charcoal), 29px 0 0 -26px var(--charcoal), -29px 0 0 -26px var(--charcoal), 21px 21px 0 -26px var(--charcoal), -21px -21px 0 -26px var(--charcoal), 21px -21px 0 -26px var(--charcoal), -21px 21px 0 -26px var(--charcoal);
}

.press-feature {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  padding: 105px 50px;
  background-image: var(--press-image);
  background-position: center;
  background-size: cover;
}

.press-feature::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(25, 20, 14, 0.52);
  content: "";
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1050px);
  margin: 56px auto 0;
}

.press-quote {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 25px;
  background: rgba(255, 247, 233, 0.9);
  color: var(--charcoal);
  text-align: center;
}

.press-quote p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.25;
}

.press-quote strong {
  font-size: 11px;
  text-transform: uppercase;
}

.journal-band {
  min-height: 864px;
  padding: 100px 50px;
}

.journal-band .section-heading {
  margin-bottom: 54px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: min(100%, 1160px);
  margin-inline: auto;
}

.journal-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.24 / 1;
  margin-bottom: 28px;
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.journal-card > p:not(.eyebrow) {
  color: var(--muted);
}

.social-band {
  min-height: clamp(667px, calc(55.16vw - 127px), 806px);
  padding: 66px 0 76px;
}

.social-band .section-heading {
  margin-bottom: 50px;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(calc(100% - 80px), 1160px);
  margin-inline: auto;
}

.social-strip__image {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 80px;
  padding: 55px max(40px, calc((100% - var(--content)) / 2));
  background: #c9b39e;
}

.newsletter h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.newsletter__form {
  align-self: end;
}

.newsletter__form > label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
}

.newsletter__control {
  display: grid;
  grid-template-columns: 1fr 52px;
  border-bottom: 1px solid var(--charcoal);
}

.newsletter__control input,
.newsletter__control button {
  min-width: 0;
  min-height: 52px;
  border: 0;
  background: transparent;
}

.newsletter__control button {
  font-size: 23px;
}

.newsletter__form [role="status"] {
  min-height: 24px;
  margin: 10px 0 0;
  font-size: 13px;
}

.site-footer {
  padding: 19px max(40px, calc((100% - var(--content)) / 2)) 30px;
  background: var(--ivory);
}

.site-footer__brand {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.site-footer__brand .wordmark {
  justify-self: start;
  font-size: 34px;
}

.site-footer__brand > p {
  max-width: 280px;
  margin-bottom: 4px;
  text-align: right;
}

.site-footer__brand .concept-label {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  width: min(100%, 760px);
  margin: 30px 0 40px auto;
}

.site-footer__links > div {
  display: grid;
  align-content: start;
}

.site-footer__links a {
  width: fit-content;
  padding: 4px 0;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.property-hero {
  align-items: end;
  min-height: calc(100dvh - 24px);
  padding: 180px 7vw 150px;
}

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

.property-hero__content h1 {
  margin-bottom: 32px;
  font-size: 64px;
}

.booking-strip--compact {
  min-height: 78px;
}

.property-intro {
  max-width: 890px;
  padding-block: 150px;
  text-align: center;
}

.property-intro > p:not(.eyebrow) {
  font-size: 22px;
  line-height: 1.55;
}

.room-preview__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1360px);
  margin-inline: auto;
}

.room-preview__item img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  margin-bottom: 25px;
  object-fit: cover;
}

.room-preview__item h3 {
  margin-bottom: 10px;
}

.room-preview__item p {
  max-width: 38ch;
}

.image-copy-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 780px;
}

.image-copy-band--reverse .image-copy-band__media {
  order: 2;
}

.image-copy-band--ivory {
  background: var(--ivory);
}

.image-copy-band--blush {
  background: var(--soft-blush);
}

.image-copy-band__media {
  min-height: 650px;
}

.image-copy-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-copy-band__copy {
  align-self: center;
  width: min(100% - 80px, 520px);
  margin-inline: auto;
  padding-block: 80px;
}

.image-copy-band__copy p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--muted);
  font-size: 18px;
}

.offer-band {
  padding: 110px 40px;
  background: var(--mustard);
  text-align: center;
}

.offer-band h2 {
  max-width: 850px;
  margin: 0 auto 35px;
}

.offer-band--soft {
  background: var(--blush);
}

.amenity-list {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: 80px;
  padding-block: 130px;
}

.amenity-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.editorial-hero {
  place-items: center;
  min-height: 78dvh;
  padding: 170px 35px 90px;
  text-align: center;
}

.editorial-hero > div {
  width: min(100%, 850px);
}

.editorial-hero h1 {
  font-size: 58px;
  text-wrap: balance;
}

.editorial-intro {
  max-width: 930px;
  padding-block: 135px;
  text-align: center;
}

.editorial-intro p {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.5;
}

.fact-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 90px max(40px, calc((100% - 1150px) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.fact-band > div {
  display: grid;
  gap: 8px;
  padding: 15px 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}

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

.fact-band strong {
  font-size: 48px;
  font-weight: 500;
}

.fact-band span {
  font-size: 13px;
}

.editorial-cta {
  padding: 130px 40px;
  text-align: center;
}

.editorial-cta h2 {
  max-width: 750px;
  margin: 0 auto 36px;
}

.title-band {
  padding: 120px 40px 115px;
  background: var(--blush);
  text-align: center;
}

.title-band--tall {
  padding-block: 155px;
}

.rooms-title-band {
  padding-block: 92px 84px;
}

.page--rooms .site-header--overlay {
  color: var(--charcoal);
}

.page--rooms .site-header--overlay .wordmark {
  color: #ae871d;
}

.page--rooms .destinations {
  visibility: hidden;
}

.rooms-discovery {
  position: relative;
  display: grid;
  grid-template-columns: 65% 35%;
  height: 828px;
  overflow: hidden;
  background: var(--ivory);
}

.rooms-discovery__book-top,
.rooms-discovery__explore,
.rooms-booking-promo a {
  display: grid;
  place-items: center;
  min-height: 58px;
  background: var(--mustard);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.rooms-discovery__book-top {
  position: absolute;
  z-index: 4;
  top: 38px;
  right: 60px;
  width: 187px;
}

.rooms-discovery__media {
  position: relative;
  align-self: start;
  height: 730px;
  margin-top: 20px;
}

.rooms-discovery__track {
  position: relative;
  height: 675px;
  overflow: hidden;
}

.rooms-discovery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms;
}

.rooms-discovery__slide.is-active {
  visibility: visible;
  opacity: 1;
}

.rooms-discovery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rooms-discovery__arrow {
  position: absolute;
  z-index: 3;
  top: 322px;
  width: 62px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
}

.rooms-discovery__arrow--prev {
  left: 24px;
}

.rooms-discovery__arrow--next {
  right: 24px;
}

.rooms-discovery__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.rooms-discovery__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  background: transparent;
}

.rooms-discovery__dot.is-active {
  background: var(--charcoal);
}

.rooms-discovery__copy {
  align-self: start;
  max-width: 465px;
  padding: 180px 50px 50px 60px;
}

.rooms-discovery__copy .eyebrow {
  margin-bottom: 18px;
  font-size: 14px;
}

.rooms-discovery__copy h1 {
  max-width: 360px;
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.08;
}

.rooms-discovery__copy > p:last-of-type {
  max-width: 365px;
  margin: 0 0 27px;
  font-size: 18px;
  line-height: 1.6;
}

.rooms-discovery__explore {
  width: 231px;
}

.rooms-booking-promo {
  position: relative;
  width: min(580px, calc(100% - 30px));
  height: 420px;
  margin: 20px 10% 120px auto;
  overflow: hidden;
}

.rooms-booking-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms-booking-promo a {
  display: none;
}

.title-band h1,
.title-band > p {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
}

.title-band > p:last-child {
  margin-bottom: 0;
  font-size: 18px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 44px;
  padding-block: 120px;
}

.listing-item__image {
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
  margin-bottom: 27px;
}

.listing-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.listing-item h2 {
  margin-bottom: 15px;
  font-size: 31px;
}

.listing-item > p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
}

.room-perks {
  padding: 92px 0 98px;
  background: var(--ivory);
  text-align: center;
}

.room-perks h2 {
  margin-bottom: 56px;
}

.room-perks__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.room-perk {
  min-height: 245px;
  padding: 34px 30px 30px;
  border-right: 1px solid var(--line);
}

.room-perk:last-child {
  border-right: 0;
}

.room-perk__mark {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
}

.room-perk h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.room-perk p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.room-finder {
  padding: 58px 0;
  background: var(--soft-blush);
}

.room-finder__inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.45fr);
  align-items: end;
  gap: 60px;
}

.room-finder__inner h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.room-finder__form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  border: 1px solid var(--ink);
}

.room-finder__form label {
  display: grid;
  gap: 5px;
  padding: 13px 18px;
  border-right: 1px solid var(--line);
}

.room-finder__field {
  display: grid;
  gap: 5px;
  padding: 13px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
}

.room-finder__field span {
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
}

.room-finder__field strong {
  font-size: 13px;
  font-weight: 400;
}

.room-finder__form label span {
  font-size: 9px;
  text-transform: uppercase;
}

.room-finder__form input,
.room-finder__form select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
}

.room-finder__form > button[type="submit"] {
  min-width: 155px;
  border: 0;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.room-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 105px;
}

.room-results-head h2 {
  margin-bottom: 0;
}

.room-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-filters button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
  text-transform: uppercase;
}

.room-filters button.is-active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.rooms-list {
  padding-block: 45px 110px;
}

.room-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: 75px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.room-row:nth-child(even) {
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1.4fr);
}

.room-row:nth-child(even) .room-row__media {
  order: 2;
}

.room-row__media {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(110px, 0.55fr);
  gap: 10px;
  height: 100%;
  min-height: 410px;
}

.room-row__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.room-row__copy {
  max-width: 440px;
}

.room-row__copy p:not(.eyebrow) {
  color: var(--muted);
}

.room-row__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 20px;
  margin: 23px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-size: 12px;
}

.rooms-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  padding-block: 115px;
  border-top: 1px solid var(--line);
}

.rooms-faq__list details {
  border-bottom: 1px solid var(--line);
}

.rooms-faq__list summary {
  padding: 24px 35px 24px 0;
  cursor: pointer;
  font-size: 18px;
}

.rooms-faq__list p {
  max-width: 62ch;
  padding: 0 30px 25px 0;
  color: var(--muted);
}

.journal-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 45px;
  padding-block: 110px;
}

.journal-index__item img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  margin-bottom: 26px;
  object-fit: cover;
}

.journal-index__item--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 70px;
}

.journal-index__item--featured img {
  margin-bottom: 0;
}

.journal-index__item h2 {
  font-size: 30px;
}

.journal-index__extra {
  margin-top: 18px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 8px;
  padding: 8px;
}

.gallery-grid__item {
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #c4b7a8;
}

.gallery-grid__item--1,
.gallery-grid__item--4 {
  grid-row: span 2;
}

.gallery-grid__item--2,
.gallery-grid__item--5 {
  grid-column: span 2;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 42px 88px;
  border: 0;
  background: rgba(23, 23, 20, 0.96);
  color: var(--white);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 28px;
}

.lightbox::backdrop {
  background: rgba(23, 23, 20, 0.8);
}

.lightbox figure {
  display: grid;
  place-items: center;
  margin: 0;
}

.lightbox figure img {
  max-height: calc(100dvh - 130px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  font-size: 12px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
}

.faq-layout,
.legal-layout {
  padding-block: 120px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  column-gap: 80px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.faq-group h2 {
  grid-row: 1 / span 10;
  font-size: 30px;
}

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

.faq-group summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  font-size: 19px;
  font-weight: 500;
  list-style: none;
}

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

.faq-group details[open] summary span {
  transform: rotate(45deg);
}

.faq-group details p {
  max-width: 70ch;
  padding: 0 40px 26px 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 850px;
  background: var(--blush);
}

.contact-layout__intro,
.contact-form {
  padding: 120px max(45px, 8vw);
}

.contact-layout__intro {
  background: var(--charcoal);
  color: var(--white);
}

.contact-layout__intro > p:not(.eyebrow) {
  max-width: 55ch;
}

.contact-locations {
  display: grid;
  gap: 20px;
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-locations div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}

.contact-form {
  align-content: start;
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form label:not(.checkbox-label) {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--charcoal);
  border-radius: 0;
  background: transparent;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
}

.contact-form .text-button {
  justify-self: start;
}

.form-message {
  min-height: 24px;
  margin: 0;
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 760px);
  justify-content: space-between;
  gap: 90px;
}

.legal-layout aside {
  position: sticky;
  top: 30px;
  display: grid;
  align-self: start;
}

.legal-layout aside a {
  padding: 8px 0;
}

.legal-layout__content section {
  margin-bottom: 70px;
  scroll-margin-top: 30px;
}

.legal-layout__content p {
  color: var(--muted);
  font-size: 18px;
}

.content-page__directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  margin: 0 0 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .content-page__directory {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .site-header {
    padding-inline: 28px;
  }

  .site-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
  }

  .booking-field {
    padding-inline: 16px;
  }

  .intro-split,
  .dining-split {
    gap: 40px;
  }

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

  .newsletter {
    gap: 45px;
  }

  .image-copy-band {
    min-height: 650px;
  }

  .image-copy-band__copy {
    width: min(100% - 50px, 480px);
  }

  .room-row,
  .room-row:nth-child(even) {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 45px;
  }

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

  .room-perk:nth-child(2) {
    border-right: 0;
  }

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

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

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 50px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 23px;
  }

  .announcement {
    padding-inline: 10px;
    font-size: 9px;
  }

  .announcement span {
    max-width: calc(100% - 45px);
  }

  .announcement button {
    right: 0;
  }

  .site-header {
    grid-template-columns: 44px 1fr 44px;
    padding-inline: 16px;
  }

  .menu-toggle {
    width: 44px;
  }

  .menu-toggle__lines {
    gap: 5px;
    width: 44px;
  }

  .menu-toggle__lines i {
    height: 3px;
  }

  .menu-toggle > span:last-child,
  .destinations {
    display: none;
  }

  .wordmark {
    font-size: 17px;
  }

  .site-menu {
    padding: 24px 22px 35px;
  }

  .site-menu__top {
    grid-template-columns: 48px 1fr 48px;
  }

  .site-menu__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    margin: 55px auto 50px;
  }

  .site-menu__group a {
    font-size: 19px;
  }

  .icon-button--large {
    width: 46px;
    height: 46px;
  }

  .section-shell {
    width: min(calc(100% - 40px), var(--content));
  }

  .home-hero {
    min-height: 100dvh;
    padding: 150px 20px 125px;
    background-image: var(--hero-image-mobile);
    background-position: left center;
  }

  .home-hero::before {
    background: rgba(255, 255, 255, 0.15);
  }

  .home-hero::after {
    background-image: var(--hero-image-mobile);
    background-position: left center;
  }

  .home-hero__content {
    width: calc(100% - 40px);
    max-width: 335px;
    transform: translateY(-21px);
  }

  .home-hero__content .eyebrow {
    max-width: 250px;
    margin: 0 auto 18px;
    font-size: 13px;
    line-height: 1.35;
  }

  .home-hero__content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .home-hero__content h1 span {
    display: block;
  }

  .booking-strip {
    position: fixed;
    z-index: 15;
    display: block;
    right: 50%;
    bottom: 0;
    left: auto;
    width: min(calc(100% - 76px), 300px);
    min-height: 62px;
    transform: translateX(50%);
    background: transparent;
  }

  .hero-media-toggle {
    bottom: calc(26.1dvh - 53px);
    left: 10px;
  }

  .booking-field {
    display: none;
  }

  .booking-strip__submit {
    width: 100%;
    min-height: 62px;
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .booking-strip__desktop-label {
    display: none;
  }

  .booking-strip__mobile-label {
    display: inline;
  }

  .booking-strip__message {
    right: 10px;
    left: 10px;
    text-align: center;
  }

  .intro-split,
  .dining-split {
    display: flex;
    flex-direction: column;
    gap: 45px;
    min-height: 0;
    width: 100%;
    padding: 95px 0;
  }

  .intro-split {
    min-height: 1118px;
  }

  .dining-split {
    min-height: 1160px;
  }

  .dining-split.section-shell {
    width: 100%;
  }

  .intro-split__copy,
  .dining-split__copy {
    width: calc(100% - 40px);
    max-width: none;
    margin-inline: auto;
  }

  .intro-split__carousel,
  .dining-split__carousel {
    width: 100%;
  }

  .media-carousel__track,
  .dining-split__carousel .media-carousel__track {
    aspect-ratio: 0.86 / 1;
  }

  .locations-band,
  .journal-band {
    padding: 75px 20px 85px;
  }

  .locations-band {
    min-height: 1501px;
  }

  .journal-band {
    min-height: 2085px;
  }

  .locations-grid,
  .journal-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .property-tile__body {
    padding: 30px 22px 36px;
  }

  .press-feature {
    min-height: max(848px, 100dvh);
    padding: 80px 20px;
  }

  .press-grid {
    display: flex;
    gap: 10px;
    overflow: hidden;
    margin-top: 38px;
  }

  .press-quote {
    min-height: 260px;
    flex: 0 0 100%;
  }

  .journal-card__image {
    aspect-ratio: 1.15 / 1;
  }

  .social-band {
    min-height: 1088px;
    padding: 75px 0 85px;
  }

  .social-band .section-heading {
    padding-inline: 20px;
  }

  .social-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: calc(100% - 20px);
  }

  .social-strip__image {
    aspect-ratio: 1 / 1.12;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 20px;
  }

  .site-footer {
    padding: 95px 20px 25px;
  }

  .site-footer__brand {
    grid-template-columns: 1fr;
    padding-bottom: 25px;
  }

  .site-footer__brand > p,
  .site-footer__brand .concept-label {
    grid-column: auto;
    text-align: left;
  }

  .site-footer__links {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0 30px;
  }

  .site-footer__links a {
    font-size: 13px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .property-hero {
    min-height: 760px;
    padding: 140px 20px 120px;
  }

  .property-hero__content h1,
  .editorial-hero h1 {
    font-size: 42px;
  }

  .property-intro,
  .editorial-intro {
    padding-block: 90px;
  }

  .property-intro > p:not(.eyebrow),
  .editorial-intro p {
    font-size: 19px;
  }

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

  .room-preview__item img {
    aspect-ratio: 1.05 / 1;
  }

  .image-copy-band,
  .image-copy-band--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .image-copy-band--reverse .image-copy-band__media {
    order: 0;
  }

  .image-copy-band__media {
    min-height: 0;
    aspect-ratio: 0.95 / 1;
  }

  .image-copy-band__copy {
    width: calc(100% - 40px);
    padding-block: 75px;
  }

  .offer-band,
  .editorial-cta {
    padding: 85px 20px;
  }

  .amenity-list {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 80px;
  }

  .amenity-list ul {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    min-height: 690px;
    padding: 140px 20px 80px;
  }

  .fact-band {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .fact-band > div {
    padding: 30px 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .fact-band > div:last-child {
    border-bottom: 0;
  }

  .title-band,
  .title-band--tall {
    padding: 90px 20px;
  }

  .rooms-title-band {
    padding: 68px 20px 62px;
  }

  .room-perks {
    padding: 65px 0;
  }

  .room-perks h2 {
    margin-bottom: 38px;
  }

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

  .room-perk,
  .room-perk:nth-child(2) {
    min-height: auto;
    padding: 28px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .room-perk:last-child {
    border-bottom: 0;
  }

  .room-finder {
    padding: 48px 0;
  }

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

  .room-finder__form label:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .room-finder__form > button[type="submit"] {
    min-height: 58px;
    min-width: 0;
  }

  .room-results-head {
    display: grid;
    padding-top: 75px;
  }

  .room-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }

  .room-filters button {
    flex: 0 0 auto;
  }

  .listing-grid,
  .rooms-list,
  .journal-index,
  .faq-layout,
  .legal-layout {
    padding-block: 75px;
  }

  .room-row,
  .room-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 0 55px;
  }

  .room-row:nth-child(even) .room-row__media {
    order: 0;
  }

  .room-row__media {
    grid-template-columns: minmax(0, 1.7fr) minmax(85px, 0.55fr);
    min-height: 320px;
  }

  .rooms-faq {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 80px;
  }

  .journal-index {
    grid-template-columns: 1fr;
  }

  .journal-index__item--featured {
    grid-column: auto;
    display: block;
  }

  .journal-index__item--featured img {
    margin-bottom: 26px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-grid__item--2,
  .gallery-grid__item--5 {
    grid-column: span 1;
  }

  .lightbox {
    padding: 70px 14px 25px;
  }

  .lightbox[open] {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .faq-group {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: 30px 0;
  }

  .faq-group h2 {
    grid-row: auto;
    margin-bottom: 25px;
  }

  .faq-group summary {
    font-size: 17px;
  }

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

  .contact-layout__intro,
  .contact-form {
    padding: 80px 20px;
  }

  .contact-locations div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .legal-layout aside {
    position: static;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }

  .site-menu__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-menu__group .eyebrow {
    margin-bottom: 8px;
  }

  .site-menu__group a {
    font-size: 18px;
  }

  .property-hero__content h1,
  .editorial-hero h1 {
    font-size: 38px;
  }

  .gallery-grid {
    grid-auto-rows: 150px;
  }

  .newsletter {
    gap: 20px;
    padding-block: 50px;
  }

  .dining-split {
    padding-block: 90px;
  }
}

@media (min-width: 421px) and (max-width: 760px) {
  .intro-split {
    min-height: 1087px;
  }

  .locations-band {
    min-height: 1529px;
  }

  .dining-split {
    min-height: 1090px;
    padding-block: 60px;
  }
}

@media (1501px <= width) {
  .social-strip {
    width: min(calc(100% - 80px), 1450px);
  }
}

/* Source-calibrated open navigation and booking states. */
.site-menu {
  inset: 0 auto 0 0;
  width: min(438px, 100vw);
  padding: 0;
  transform: translateX(-102%);
  background: var(--ivory);
  color: var(--charcoal);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), visibility 360ms;
}

.site-menu.is-open {
  transform: translateX(0);
}

.site-menu__close {
  width: 54px;
  height: 54px;
  margin: 54px 0 40px 66px;
  border: 0;
  background: transparent;
  font-size: 52px;
  font-weight: 200;
  line-height: 1;
}

.site-menu__list {
  display: grid;
  gap: 35px;
  padding: 0 48px 70px 72px;
}

.site-menu__group {
  display: grid;
}

.site-menu__group > button,
.site-menu__direct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.site-menu__group > button span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.site-menu__group > button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.site-menu__sister-label {
  width: 175px;
  font-size: inherit !important;
  line-height: 1.25;
}

.site-menu__group > button[aria-expanded="true"] .site-menu__sister-label {
  transform: none;
}

.site-menu__subnav {
  display: grid;
  gap: 7px;
  padding: 16px 0 2px;
}

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

.site-menu__subnav a {
  width: fit-content;
  padding: 1px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.destinations__menu {
  top: calc(100% + 20px);
  min-width: 220px;
  padding: 28px 20px 22px;
  border: 0;
  background: #b89017;
  color: var(--white);
  text-align: center;
}

.destinations__menu strong {
  padding: 4px 8px 2px;
  font-size: 12px;
}

.destinations__menu a {
  padding: 5px 8px;
  font-size: 17px;
  font-weight: 600;
}

.destinations__menu hr {
  width: calc(100% + 40px);
  margin: 16px -20px 12px;
  border: 0;
  border-top: 1px dotted rgba(255, 255, 255, 0.45);
}

.booking-calendar,
.booking-popover {
  position: absolute;
  z-index: 12;
  color: var(--charcoal);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(23, 23, 20, 0.2);
}

.booking-calendar[hidden],
.booking-popover[hidden] {
  display: none;
}

.booking-calendar {
  left: 50%;
  bottom: calc(100% - 34px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: min(726px, calc(100vw - 48px));
  min-height: 324px;
  padding: 20px 38px 24px 26px;
  transform: translateX(-50%);
  border-radius: 3px;
}

.booking-calendar__month {
  align-self: start;
}

.booking-calendar__title {
  margin: 0 0 13px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.booking-calendar__weekday,
.booking-calendar__day {
  display: grid;
  place-items: center;
  min-width: 32px;
  min-height: 32px;
  border: 0;
  background: transparent;
  font-size: 15px;
}

.booking-calendar__weekday {
  font-weight: 700;
}

.booking-calendar__day:hover,
.booking-calendar__day.is-selected {
  background: #a78535;
  color: var(--white);
}

.booking-calendar__day.is-disabled {
  color: #999;
  cursor: default;
}

.booking-calendar::after {
  position: absolute;
  right: 18px;
  bottom: -11px;
  width: 0;
  height: 0;
  border-top: 12px solid var(--white);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  content: "";
}

.booking-calendar__day.is-empty {
  pointer-events: none;
}

.booking-calendar__next {
  position: absolute;
  top: 12px;
  right: 17px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 38px;
  line-height: 1;
}

.booking-popover {
  bottom: calc(100% + 8px);
  min-width: 230px;
  padding: 16px;
}

.booking-popover--location {
  left: 4%;
  display: grid;
}

.booking-popover--location button {
  border: 0;
  padding: 10px 14px;
  background: transparent;
  text-align: left;
}

.booking-popover--guests {
  right: 27%;
  display: grid;
  grid-template-columns: 1fr 34px 34px 34px;
  align-items: center;
  gap: 4px;
}

.booking-popover--guests button {
  height: 34px;
  border: 1px solid var(--line);
  background: transparent;
}

.exclusive-offer-tab {
  position: fixed;
  z-index: 95;
  top: 47%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 236px;
  height: 60px;
  border: 0;
  padding: 0 18px;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
  background: #b89017;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.exclusive-offer-tab span {
  font-size: 22px;
  line-height: 1;
}

@media (min-width: 761px) {
  .home-hero {
    background-position: center bottom;
    background-size: auto 128.6%;
  }

  .home-hero::after {
    inset: 0 auto 0 0;
    width: 470px;
    background-position: left center;
    background-size: auto 160.5%;
    -webkit-mask-image: linear-gradient(to right, #000 0 86%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0 86%, transparent 100%);
    transform-origin: left center;
  }

  body.menu-open .home-hero .booking-strip {
    left: min(438px, 100vw);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.menu-open .home-hero .booking-field:first-child {
    display: none;
  }

  body.menu-open .home-hero .booking-calendar {
    left: -76px;
    bottom: calc(100% - 4px);
    transform: none;
  }
}

@media (max-width: 760px) {
  .rooms-discovery {
    display: block;
    height: auto;
    min-height: 797px;
    overflow: visible;
  }

  .rooms-discovery__book-top {
    display: none;
  }

  .rooms-discovery__media {
    height: auto;
    margin: 0 15px;
  }

  .rooms-discovery__track {
    height: auto;
    aspect-ratio: 1.374 / 1;
  }

  .rooms-discovery__arrow {
    top: calc(40% - 21px);
  }

  .rooms-discovery__arrow--prev {
    left: 24px;
  }

  .rooms-discovery__arrow--next {
    right: 24px;
  }

  .rooms-discovery__dots {
    margin: 18px 0 31px;
  }

  .rooms-discovery__copy {
    max-width: none;
    padding: 0 15px 40px;
  }

  .rooms-discovery__copy .eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .rooms-discovery__copy h1 {
    max-width: 400px;
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.16;
  }

  .rooms-discovery__copy > p:last-of-type {
    max-width: 400px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
  }

  .rooms-discovery__explore {
    width: 205px;
    min-height: 48px;
    font-size: 12px;
  }

  .rooms-booking-promo {
    width: calc(100% - 30px);
    height: 350px;
    margin: 70px 15px 100px;
    overflow: visible;
  }

  .rooms-booking-promo a {
    position: absolute;
    z-index: 2;
    top: -51px;
    left: 50%;
    display: grid;
    width: min(300px, calc(100% - 46px));
    transform: translateX(-50%);
  }

  .site-menu {
    width: 100%;
  }

  .site-menu__close {
    margin: 31px 0 34px 24px;
  }

  .site-menu__list {
    gap: 26px;
    padding: 0 30px 55px;
  }

  .site-menu__group > button,
  .site-menu__direct {
    font-size: 22px;
  }

  .site-menu__sister-label {
    width: auto;
  }

  .booking-calendar {
    position: fixed;
    top: 50%;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    padding: 22px 24px 28px;
    transform: translate(-50%, -50%);
  }

  .booking-strip {
    right: auto;
    left: max(38px, calc((100% - 300px) / 2));
    transform: none;
  }

  .exclusive-offer-tab {
    display: none;
  }
}

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

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

  .home-hero::after {
    animation: none;
  }
}
