:root {
  --navy: #082b47;
  --navy-deep: #06243b;
  --cream: #f5f3e9;
  --paper: #faf8f1;
  --gold: #a38b58;
  --white: #fffef8;
  --line: rgba(8, 43, 71, 0.66);
  --body-font: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --display-font: "Bodoni MT", Didot, "Times New Roman", serif;
  --content: 970px;
  --wide: 1296px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button,
input,
textarea,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #d7bd7b;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: 0;
}

h1 { font-size: 50px; line-height: 1.28; }
h2 { font-size: 25px; line-height: 1.34; text-transform: uppercase; }
h3 { font-size: 17px; line-height: 1.35; text-transform: uppercase; }
p { margin-bottom: 1em; }

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 8px;
  z-index: 40;
  padding: 9px 13px;
  color: var(--navy);
  background: var(--white);
  visibility: hidden;
}

body.keyboard-navigation .skip-link:focus {
  top: 8px;
  visibility: visible;
}

.section-cream { background: var(--cream); }
.section-navy { color: var(--white); background: var(--navy); }
.wide-shell { width: min(var(--wide), calc(100% - 10vw)); margin: 0 auto; }
.content-shell { width: min(var(--content), calc(100% - 10vw)); margin: 0 auto; }
.narrow-copy { width: min(760px, calc(100% - 10vw)); margin: 0 auto; }
.story-copy { width: min(820px, calc(100% - 10vw)); margin: 0 auto; }
.centered { text-align: center; }

.button {
  display: inline-flex;
  min-width: 162px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 13px 24px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.button:active { transform: translateY(1px); }
.button--gold { color: var(--white); background: var(--gold); }
.button--gold:hover { color: var(--navy); background: #c4ad72; }

/* Header */
.site-header {
  width: 100%;
  height: 132px;
  color: var(--white);
  z-index: 20;
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
}

.site-header--solid {
  position: relative;
  background: var(--navy);
}

.header-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 18px 5vw;
}

.wordmark {
  display: grid;
  width: 90px;
  height: 97px;
  flex: 0 0 auto;
  place-items: center;
  align-content: center;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark span,
.wordmark small {
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
}

.wordmark strong {
  margin: 2px 0 1px;
  font-family: var(--display-font);
  font-size: 58px;
  font-style: italic;
  font-weight: 400;
  line-height: 0.76;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 35px;
}

.desktop-nav > a:not(.button) {
  padding: 10px 0 5px;
  font-size: 18px;
  text-decoration: none;
}

.desktop-nav > a:not(.button)::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after { width: 100%; }
.desktop-nav .button { margin-left: 6px; min-width: 142px; }

.menu-toggle,
.mobile-book,
.mobile-menu { display: none; }

/* Heroes */
.page-hero {
  position: relative;
  height: 393px;
  color: var(--white);
  overflow: hidden;
}

.page-hero--home { height: 700px; }
.page-story .page-hero { height: 534px; }
.page-amenities .page-hero { height: 660px; }
.page-contact .page-hero { height: 411px; }
.page-legal .page-hero { height: 316px; }
.page-privacy .page-hero { height: 316px; }

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

.page-home .page-hero > img { object-position: center 52%; }
.page-rooms .page-hero > img,
.page-press .page-hero > img { object-position: center 46%; }
.page-story .page-hero > img { object-position: center 57%; }
.page-amenities .page-hero > img { object-position: center 58%; }
.page-contact .page-hero > img { object-position: center 52%; }
.page-legal .page-hero > img { object-position: center 58%; }

.page-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 27, 44, 0.16);
}

.page-hero-copy {
  position: absolute;
  inset: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.page-hero--home .page-hero-copy {
  inset: 105px 5vw 0;
}

@media (min-width: 901px) {
  .page-home .page-hero--home .page-hero-copy { transform: translateY(-138px); }
}

.page-hero h1 {
  max-width: 1080px;
  margin: 0;
  color: var(--white);
  font-size: 34px;
  text-transform: uppercase;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.14);
}

.page-story .page-hero h1 { font-size: 50px; }
.hero-eyebrow {
  margin-bottom: 28px;
  font-family: var(--display-font);
  font-size: 25px;
  text-transform: uppercase;
}

/* Home */
.home-intro {
  min-height: 358px;
  padding: 53px 0 45px;
}

.home-intro h2 {
  margin-bottom: 31px;
  font-size: 25px;
}

.home-intro p {
  font-size: 19px;
  line-height: 1.42;
}

.room-feature { padding: 102px 0 85px; }

.split-feature {
  display: grid;
  align-items: center;
  grid-template-columns: 1.28fr 0.95fr;
  gap: 65px;
}

.split-feature img {
  width: 100%;
  height: 455px;
  object-fit: cover;
}

.split-feature h2 {
  margin-bottom: 8px;
  font-size: 26px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split-feature p {
  font-size: 18px;
  line-height: 1.43;
}

.split-feature .button { margin-top: 22px; min-width: 265px; }

.home-features { padding: 48px 0 80px; }

.feature-columns {
  display: grid;
  width: min(1080px, calc(100% - 10vw));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 59px;
}

.feature-image {
  position: relative;
  aspect-ratio: 0.67;
  overflow: hidden;
}

.feature-image::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 30, 50, 0.12);
  content: "";
}

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

.feature-image h2 {
  position: absolute;
  right: 16px;
  bottom: 34px;
  left: 16px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 25px;
  text-align: center;
  text-transform: none;
}

.feature-tile > p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.35;
}

.feature-tile > p a { font-style: italic; }

.quote-carousel {
  position: relative;
  display: grid;
  min-height: 680px;
  padding: 80px 5vw;
  align-items: center;
  grid-template-columns: 54px 1fr 54px;
  color: var(--navy);
  background: #fff;
}

.quote-track { display: grid; place-items: center; }

.quote-slide {
  max-width: 700px;
  margin: 0;
  text-align: center;
}

.quote-slide blockquote {
  margin: 0 0 28px;
  font-family: var(--display-font);
  font-size: 25px;
  line-height: 1.28;
}

.quote-slide figcaption { font-size: 14px; }

.round-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #b6a889;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.image-carousel {
  position: relative;
  height: 750px;
  background: var(--navy);
  overflow: hidden;
}

.image-track,
.image-slide,
.image-slide img {
  width: 100%;
  height: 100%;
}

.image-slide img { object-fit: cover; }

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 1px solid var(--white);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button[aria-current="true"] { background: var(--white); }

.subscribe { min-height: 390px; padding: 72px 0 60px; }
.subscribe h2 { font-size: 21px; text-transform: none; }
.subscribe p { font-size: 15px; }
.subscribe small { font-size: 12px; }

.inline-form {
  display: flex;
  max-width: 460px;
  margin: 30px auto 18px;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-form input {
  width: 290px;
  height: 54px;
  border: 0;
  border-radius: 0;
  padding: 0 18px;
  color: var(--navy);
  background: #fff;
}

.inline-form .button { min-width: 120px; }
.form-status { width: 100%; min-height: 1.4em; margin: 0; }

.marble-band {
  height: 62px;
  background: url("../images/generated/marbled-paper-band.png") center / cover;
}

.social-strip { position: relative; min-height: 515px; padding: 80px 5vw 100px; }
.social-strip h2 { margin-bottom: 46px; font-size: 18px; text-align: center; text-transform: none; }

.social-icon {
  position: absolute;
  top: 72px;
  right: 5vw;
  width: 25px;
  height: 25px;
}

.social-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; }

.social-grid {
  display: grid;
  width: min(1296px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.social-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Rooms */
.rooms-intro { padding: 82px 0 197px; }
.rooms-intro h2 { text-decoration: underline; text-underline-offset: 5px; }
.rooms-intro p { font-size: 19px; line-height: 1.42; }
.rooms-intro h3 { margin-top: 32px; color: #8d7c59; }

.feature-list {
  display: grid;
  width: 640px;
  max-width: 100%;
  margin: 12px auto 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 65px;
  text-align: left;
  list-style-position: inside;
}

.feature-list li { margin: 3px 0; font-size: 13px; }
.room-list { padding-bottom: 95px; }

.room-row {
  display: grid;
  padding: 36px 0 45px;
  border-top: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 534px minmax(0, 1fr);
  gap: 65px;
}

.room-carousel {
  position: relative;
  width: 534px;
  height: 400px;
  overflow: hidden;
}

.room-slide,
.room-slide img { width: 100%; height: 100%; }
.room-slide img { object-fit: cover; }

.room-arrow {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 66px;
  border: 0;
  padding: 0;
  color: var(--white);
  background: rgba(8, 43, 71, 0.23);
  font-size: 32px;
  transform: translateY(-50%);
  cursor: pointer;
}

.room-arrow--prev { left: 0; }
.room-arrow--next { right: 0; }
.room-copy h2 { margin-bottom: 4px; font-size: 25px; }
.room-copy p { font-size: 16px; line-height: 1.38; }
.room-copy .button { margin-top: 17px; min-width: 210px; }

.group-note {
  margin: 0;
  padding: 56px 80px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  text-align: center;
}

/* About and amenities */
.story-intro { padding: 84px 0 48px; }
.story-copy p { font-size: 19px; line-height: 1.42; }
.story-list { padding: 0 0 95px; }

.story-row {
  display: grid;
  min-height: 350px;
  padding: 50px 5px;
  border-top: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 412px 1fr;
  gap: 70px;
}

.story-row--reverse { grid-template-columns: 1fr 412px; }
.story-row--reverse img { grid-column: 2; }
.story-row--reverse > div { grid-row: 1; grid-column: 1; }

.story-row img {
  width: 412px;
  height: 261px;
  object-fit: cover;
}

.story-row h2 { margin-bottom: 4px; font-size: 25px; }
.story-row p { font-size: 18px; line-height: 1.4; }

.amenities-intro { padding: 74px 0 42px; }
.amenities-intro h2 { font-size: 28px; text-decoration: underline; text-underline-offset: 5px; }
.amenity-list { padding-bottom: 92px; }

.amenity-row {
  display: grid;
  min-height: 390px;
  padding: 45px 5px;
  border-top: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 450px 1fr;
  gap: 70px;
}

.amenity-row--reverse { grid-template-columns: 1fr 450px; }
.amenity-row--reverse img { grid-column: 2; }
.amenity-row--reverse > div { grid-row: 1; grid-column: 1; }
.amenity-row img { width: 450px; height: 300px; object-fit: cover; }
.amenity-row h2 { margin-bottom: 5px; }
.amenity-row p { font-size: 18px; line-height: 1.42; }

/* Gallery */
.page-gallery { background: var(--navy); }
.gallery-grid {
  display: grid;
  padding: 72px 5vw 100px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  background: var(--navy);
}

.gallery-item {
  margin: 0;
  aspect-ratio: 1.33;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

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

/* Contact */
.contact-panel { padding: 135px 5vw 120px; }
.contact-grid {
  display: grid;
  width: min(1145px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr 0.92fr;
  gap: 80px;
}

.contact-details h2,
.contact-form h2 { font-size: 23px; }
.contact-details address { margin-bottom: 38px; font-style: normal; font-size: 20px; }
.contact-details p { font-size: 18px; }

.demo-map {
  position: relative;
  height: 350px;
  margin-top: 70px;
  color: #7f8991;
  background: #ecedea;
  overflow: hidden;
}

.demo-map::before,
.demo-map::after {
  position: absolute;
  background: #d2d6d6;
  content: "";
}

.demo-map::before { inset: 0 48% 0 auto; width: 2px; transform: rotate(20deg); }
.demo-map::after { inset: 47% 0 auto; height: 3px; transform: rotate(-4deg); }
.map-road { position: absolute; display: block; height: 2px; background: #c6cbcc; }
.map-road--one { top: 25%; left: -5%; width: 115%; transform: rotate(10deg); }
.map-road--two { top: 70%; left: -5%; width: 115%; transform: rotate(-13deg); }
.map-road--three { top: 0; left: 25%; width: 2px; height: 100%; transform: rotate(-10deg); }
.map-pin {
  position: absolute;
  top: 44%;
  left: 48%;
  width: 25px;
  height: 25px;
  border: 7px solid #343a3e;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.demo-map strong { position: absolute; top: 38%; left: 56%; font-size: 15px; }
.demo-map small { position: absolute; top: 47%; left: 56%; font-size: 11px; }

.contact-form { display: grid; align-content: start; }
.contact-form h2 { margin-bottom: 70px; }
.contact-form label { margin: 0 0 8px; }
.contact-form label:not(:first-of-type) { margin-top: 18px; }
.contact-form input,
.contact-form textarea,
.reservation-form input,
.reservation-form select {
  width: 100%;
  border: 1px solid rgba(8, 43, 71, 0.5);
  border-radius: 0;
  padding: 12px;
  color: var(--navy);
  background: #fff;
}
.contact-form input { height: 53px; }
.contact-form .button { margin-top: 22px; justify-self: start; }

/* Press and long copy */
.press-grid { min-height: 2550px; padding: 95px 5vw 180px; }
.press-shell {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 55px 65px;
}
.press-shell img { width: 100%; aspect-ratio: 0.84; object-fit: cover; }
.press-shell h2 { margin: 10px 0 1px; font-size: 18px; }
.press-shell p { font-size: 15px; line-height: 1.32; }

.legal-copy {
  padding: 62px max(5vw, calc((100% - 1065px) / 2)) 82px;
}
.legal-copy section { margin-bottom: 30px; }
.legal-copy h2 { margin-bottom: 10px; font-size: 16px; }
.legal-copy p,
.legal-copy li { font-size: 16px; line-height: 1.4; }
.legal-copy ul { margin: 4px 0 0; padding-left: 24px; }
.legal-copy li { margin-bottom: 6px; }
.legal-lead { margin-bottom: 18px; }
.legal-lead + section { margin-top: 34px; }
.page-policies .legal-copy { padding-top: 47px; padding-bottom: 76px; }
.page-policies .legal-copy section { margin-bottom: 58px; }
.page-policies .legal-copy p,
.page-policies .legal-copy li { line-height: 1.48; }

.accessibility-document {
  padding: 160px max(5vw, calc((100% - 1078px) / 2)) 100px;
}
.accessibility-intro {
  width: min(730px, 100%);
  margin: 0 auto 70px;
}
.accessibility-intro p {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}
.accessibility-copy section { margin-bottom: 40px; }
.accessibility-copy h2 {
  margin-bottom: 14px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}
.accessibility-copy p,
.accessibility-copy li { font-size: 16px; line-height: 1.4; }
.accessibility-copy ul { margin: 12px 0 0; padding: 0; list-style: none; }
.accessibility-copy li { position: relative; margin-bottom: 10px; padding-left: 18px; }
.accessibility-copy li::before { position: absolute; left: 0; content: "\2022"; }

.careers-copy { min-height: 720px; padding: 92px 0 120px; }
.careers-copy p { font-size: 19px; }
.role-list { display: grid; margin: 55px auto; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); }
.role-list span { padding: 22px; border: 1px solid var(--line); text-transform: uppercase; }

.reserve-panel { padding: 86px 5vw 120px; }
.reservation-form {
  display: grid;
  width: min(960px, 100%);
  margin: 0 auto;
  align-items: end;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.reservation-form label { display: block; margin-bottom: 8px; text-transform: uppercase; }
.reservation-form input,
.reservation-form select { height: 54px; }
.reservation-form .button { grid-column: 1 / -1; justify-self: center; margin-top: 25px; }
.reservation-form .form-status { grid-column: 1 / -1; text-align: center; }
.concept-note { margin: 35px auto 0; text-align: center; font-size: 14px; }

/* Footer */
.site-footer {
  min-height: 500px;
  padding: 72px 5vw 45px;
  color: var(--white);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 0.85fr 1.4fr 1fr;
  gap: 65px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

.footer-link-role { text-decoration: underline; text-underline-offset: 2px; }
.page-policies .site-footer { min-height: 395px; padding-top: 50px; padding-bottom: 32px; }

.footer-center { text-align: center; }
.wordmark--footer { width: 100px; height: 112px; margin: 0 auto 25px; }
.wordmark--footer strong { font-size: 64px; }
.footer-center address { font-style: normal; font-size: 16px; line-height: 1.3; }
.footer-marks { display: grid; gap: 4px; justify-items: center; text-align: center; font-family: Arial, sans-serif; }
.footer-marks span { margin-top: 17px; font-size: 10px; }
.footer-marks strong { font-size: 17px; }
.copyright { margin: 36px 0 0; font-size: 12px; text-align: center; }

@media (max-width: 900px) {
  body { font-size: 18px; }
  .desktop-nav,
  .mobile-book { display: none; }

  .site-header { height: 137px; }
  .header-inner { padding: 20px 24px; }
  .header-inner > .wordmark {
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 2;
    width: 83px;
    height: 90px;
    transform: translateX(-50%);
  }
  .wordmark strong { font-size: 54px; }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 0;
    padding: 13px 8px;
    place-content: center;
    gap: 8px;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.visually-hidden) {
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: block;
    padding: 150px 24px 45px;
    color: var(--white);
    background: var(--navy);
  }

  .mobile-menu[hidden] { display: none; }
  .site-header:has(.menu-toggle[aria-expanded="true"]) { position: fixed; inset: 0 0 auto; }
  .site-header:has(.menu-toggle[aria-expanded="true"]) .header-inner { position: relative; z-index: 1; }
  .mobile-menu nav { display: flex; align-items: center; flex-direction: column; gap: 24px; }
  .mobile-menu a { font-family: var(--display-font); font-size: 31px; line-height: 1.15; text-decoration: none; text-transform: none; }
  .mobile-menu a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
  .mobile-menu { padding: 137px 24px 22px; }
  .mobile-menu nav {
    position: relative;
    height: 100%;
    padding: 154px 0 120px;
    justify-content: flex-start;
    gap: 17px;
  }
  .mobile-menu-book {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 210px;
    min-height: 78px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--gold);
    font-family: var(--body-font);
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
  }

  .page-hero { height: 260px; }
  .page-hero--home { height: 591px; }
  .page-rooms .page-hero,
  .page-press .page-hero { height: 196px; }
  .page-story .page-hero { height: 460px; }
  .page-amenities .page-hero { height: 480px; }
  .page-contact .page-hero { height: 270px; }
  .page-legal .page-hero { height: 260px; }

  .page-hero-copy {
    inset: 0 18px;
    justify-content: flex-start;
    padding-top: 128px;
  }
  .page-hero--home .page-hero-copy { inset: 0 18px; padding-top: 180px; }
  .page-contact .page-hero-copy { padding-top: 198px; }
  .page-story .page-hero-copy,
  .page-amenities .page-hero-copy { justify-content: center; padding-top: 90px; }
  .page-legal .page-hero-copy { justify-content: center; padding-top: 82px; }
  .page-hero h1 { font-size: 26px; line-height: 1.34; }
  .page-story .page-hero h1 { font-size: 36px; }
  .hero-eyebrow { margin-bottom: 20px; font-size: 20px; }

  .home-intro { min-height: 430px; padding: 50px 24px 46px; }
  .home-intro h2 { font-size: 21px; }
  .home-intro p { font-size: 18px; line-height: 1.4; }

  .room-feature { padding: 36px 0 50px; }
  .split-feature {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-feature img { height: auto; aspect-ratio: 0.92; }
  .split-feature h2 { font-size: 21px; }
  .split-feature p { font-size: 17px; }
  .split-feature .button { min-width: 175px; }

  .home-features { padding: 70px 0 60px; }
  .feature-columns {
    width: calc(100% - 66px);
    grid-template-columns: 1fr;
    gap: 62px;
  }
  .feature-tile { width: 66%; }
  .feature-tile:nth-child(even) { margin-left: auto; }
  .feature-image h2 { font-size: 22px; }
  .feature-tile > p { margin-top: 18px; font-size: 15px; }

  .quote-carousel {
    min-height: 590px;
    padding: 60px 16px;
    grid-template-columns: 38px 1fr 38px;
  }
  .quote-slide blockquote { font-size: 20px; }
  .round-arrow { width: 32px; height: 32px; font-size: 22px; }
  .image-carousel { height: 633px; }
  .image-slide img { object-position: center; }
  .subscribe { min-height: 380px; padding: 66px 24px 48px; }
  .inline-form { max-width: 300px; }
  .inline-form input { width: 100%; }
  .inline-form .button { min-width: 120px; }
  .marble-band { height: 30px; }
  .social-strip { min-height: 660px; padding: 62px 24px 70px; }
  .social-strip h2 { margin-bottom: 30px; font-size: 16px; }
  .social-icon { top: 54px; right: 24px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .social-grid img:last-child { grid-column: 1; }

  .rooms-intro { padding: 51px 24px 210px; }
  .rooms-intro h2 { font-size: 20px; }
  .rooms-intro p { font-size: 17px; line-height: 1.42; }
  .feature-list { grid-template-columns: 1fr; text-align: left; list-style-position: outside; }
  .room-list { padding: 0 0 55px; }
  .room-list .content-shell { width: calc(100% - 48px); }
  .room-row {
    padding: 50px 0 52px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .room-carousel { width: 100%; height: auto; aspect-ratio: 1.5; }
  .room-copy h2 { font-size: 20px; }
  .room-copy p { font-size: 16px; line-height: 1.42; }
  .room-copy .button { min-width: 157px; min-height: 56px; margin-top: 18px; padding: 14px 20px; font-size: 14px; }
  .group-note { padding: 47px 14px 90px; font-size: 15px; line-height: 1.42; }

  .story-intro { padding: 62px 24px 36px; }
  .story-copy p { font-size: 17px; }
  .story-list,
  .amenity-list { padding-bottom: 55px; }
  .story-list .content-shell,
  .amenity-list .content-shell { width: calc(100% - 48px); }
  .story-row,
  .story-row--reverse,
  .amenity-row,
  .amenity-row--reverse {
    min-height: 0;
    padding: 32px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .story-row--reverse img,
  .amenity-row--reverse img { grid-row: auto; grid-column: auto; }
  .story-row--reverse > div,
  .amenity-row--reverse > div { grid-row: auto; grid-column: auto; }
  .story-row img,
  .amenity-row img { width: 100%; height: auto; aspect-ratio: 1.5; }
  .story-row h2,
  .amenity-row h2 { font-size: 20px; }
  .story-row p,
  .amenity-row p { font-size: 17px; }
  .amenities-intro { padding: 64px 24px 40px; }
  .amenities-intro h2 { font-size: 24px; }

  .gallery-grid {
    padding: 35px 24px 70px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .contact-panel { padding: 66px 11vw 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-details h2,
  .contact-form h2 { font-size: 20px; }
  .contact-details address { margin-bottom: 22px; font-size: 18px; }
  .contact-details p { margin-bottom: 8px; font-size: 17px; }
  .demo-map { width: 100%; height: 410px; margin-top: 0; }
  .contact-form h2 { margin-bottom: 35px; }
  .contact-form input { height: 46px; }
  .contact-form textarea { height: 130px; }

  .press-grid { min-height: 0; padding: 55px 24px 100px; }
  .press-shell { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 24px; }
  .press-shell h2 { font-size: 15px; }
  .press-shell p { font-size: 14px; }
  .legal-copy { padding: 50px 24px 68px; }
  .legal-copy section { margin-bottom: 30px; }
  .legal-copy h2 { font-size: 17px; }
  .legal-copy p,
  .legal-copy li { font-size: 16px; }
  .page-privacy .page-hero { height: 260px; }
  .accessibility-document { padding: 135px 24px 72px; }
  .accessibility-intro { margin-bottom: 54px; }
  .accessibility-intro p { font-size: 19px; }
  .accessibility-copy section { margin-bottom: 36px; }
  .accessibility-copy p,
  .accessibility-copy li { font-size: 16px; }
  .role-list { grid-template-columns: 1fr; }
  .reservation-form { grid-template-columns: 1fr; }

  .site-footer { min-height: 730px; padding: 55px 24px 35px; }
  .page-policies .site-footer { min-height: 730px; padding: 55px 24px 35px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-links { align-items: center; gap: 16px; order: 1; }
  .footer-center { order: 2; }
  .footer-marks { order: 3; }
  .wordmark--footer { margin-bottom: 25px; }
  .footer-center address { font-size: 14px; }
  .copyright { margin-top: 28px; font-size: 11px; }
}

@media (max-width: 430px) {
  .header-inner { padding-right: 18px; padding-left: 18px; }
  .feature-columns { width: calc(100% - 54px); }
  .gallery-grid { padding-right: 18px; padding-left: 18px; }
}

@media (max-width: 400px) {
  .page-contact .demo-map { margin-top: -77px; }
}

@media (min-width: 381px) and (max-width: 400px) {
  .page-rooms .rooms-intro h3 { transform: translateY(26px); }
}

@media (min-width: 401px) and (max-width: 430px) {
  .page-hero--home { height: 652px; }
  .contact-panel { padding-right: 55px; padding-left: 55px; }
  .page-contact .demo-map { margin-top: -20px; }
  .page-rooms .rooms-intro { padding-bottom: 103px; }
  .page-rooms .rooms-intro p { width: 220px; margin-right: auto; margin-left: auto; }
  .page-rooms .rooms-intro h3 { transform: translateY(-54px); }
  .page-contact .site-footer { min-height: 700px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
