:root {
  --ink: #152832;
  --ink-soft: #52626a;
  --ocean: #18354a;
  --ocean-deep: #102836;
  --ocean-soft: #31596b;
  --coral: #e66f51;
  --coral-dark: #c9543b;
  --sun: #e8b84e;
  --paper: #f6f1e8;
  --paper-warm: #eee5d8;
  --white: #fffdf9;
  --line: rgba(21, 40, 50, .16);
  --line-light: rgba(255, 253, 249, .2);
  --font-display: "Newsreader", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 30px 80px rgba(16, 40, 54, .16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
}
h1 { font-size: clamp(4rem, 8vw, 8.1rem); }
h2 { font-size: clamp(3rem, 5.8vw, 6rem); }
h3 { font-size: clamp(1.8rem, 2.6vw, 2.65rem); }
h1 em, h2 em, h3 em { color: var(--coral-dark); font-weight: 400; }
p { color: var(--ink-soft); }
::selection { background: var(--sun); color: var(--ocean-deep); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.shell { width: min(calc(100% - 6rem), 1320px); margin-inline: auto; }
.section { padding: clamp(6.5rem, 10vw, 10rem) 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--ocean);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  margin-bottom: 1.5rem;
  color: var(--coral-dark);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #f4c966; }
.section-index {
  margin: 0;
  color: inherit;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .62;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  gap: 1.5rem;
  padding: .82rem 1.35rem;
  border: 1px solid var(--ocean);
  background: var(--ocean);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.button:hover { border-color: var(--coral); background: var(--coral); color: var(--ocean-deep); transform: translateY(-2px); }
.button-small { min-height: 2.85rem; padding: .68rem 1rem; font-size: .63rem; }
.button-light { border-color: var(--white); background: var(--white); color: var(--ocean); }
.button-light:hover { border-color: var(--sun); background: var(--sun); color: var(--ocean-deep); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid currentColor;
  color: var(--ocean);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.25rem); }
.text-link-light { color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 6rem;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 241, 232, .96);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; height: 100%; gap: 2rem; }
.wordmark { display: inline-flex; align-items: center; gap: .8rem; flex: 0 0 auto; text-decoration: none; }
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -.05em;
}
.wordmark-copy { display: flex; flex-direction: column; line-height: 1; }
.wordmark-copy strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: -.035em; }
.wordmark-copy small { margin-top: .35rem; color: var(--coral-dark); font-size: .55rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(1.4rem, 2.7vw, 3rem); margin-left: auto; }
.desktop-nav a { position: relative; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.4rem; height: 1px; background: var(--coral); transition: right .22s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-account { font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.header-account:hover { color: var(--coral-dark); }
.header-cta { margin-left: .2rem; white-space: nowrap; }
.language-switcher { display: inline-flex; align-items: center; gap: .15rem; padding: .2rem; border: 1px solid var(--line); border-radius: 999px; }
.language-switcher a { display: grid; place-items: center; min-width: 1.75rem; height: 1.75rem; border-radius: 999px; color: var(--ink-soft); font-size: .55rem; font-weight: 700; text-decoration: none; }
.language-switcher a:hover, .language-switcher a[aria-current="page"] { background: var(--ocean); color: var(--white); }
.menu-button { display: none; width: 3rem; height: 3rem; margin-left: auto; padding: .75rem; border: 0; background: none; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: .42rem 0; background: var(--ocean); }
.mobile-menu { position: fixed; inset: 0; z-index: 300; background: rgba(8, 29, 40, .68); }
.mobile-menu-panel { width: min(88vw, 31rem); height: 100%; margin-left: auto; padding: 2rem; overflow-y: auto; background: var(--ocean); color: var(--white); box-shadow: var(--shadow); }
.mobile-menu-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4rem; }
.wordmark-light .wordmark-mark { background: var(--white); color: var(--ocean); }
.wordmark-light .wordmark-copy small { color: #f4c966; }
.menu-close { width: 3rem; height: 3rem; border: 1px solid var(--line-light); background: transparent; color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: .5rem 0; font-family: var(--font-display); font-size: clamp(2.2rem, 8vw, 3.8rem); line-height: 1; text-decoration: none; }
.language-switcher-mobile { width: fit-content; margin-top: 2.5rem; border-color: var(--line-light); }
.language-switcher-mobile a { color: rgba(255, 253, 249, .72); }
.language-switcher-mobile a:hover, .language-switcher-mobile a[aria-current="page"] { background: var(--white); color: var(--ocean); }
.mobile-menu-panel > p { max-width: 20rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); color: rgba(255, 253, 249, .67); }

/* Home hero */
.hero { padding: clamp(4rem, 7vw, 7rem) 0 0; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 7.7ch; margin-bottom: 2.1rem; }
.hero-lede { max-width: 35rem; margin-bottom: 2.4rem; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; }
.hero-media { position: relative; min-height: min(66vw, 46rem); }
.hero-photo { position: absolute; margin: 0; overflow: hidden; background: var(--paper-warm); box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { inset: 0 0 6rem 8%; }
.hero-photo-main img { object-position: center; }
.hero-photo-inset { left: -8%; bottom: 0; width: 43%; aspect-ratio: .95; border: .8rem solid var(--paper); }
.hero-photo-inset img { object-position: center; }
.hero-caption { position: absolute; right: -2.8rem; bottom: 1.4rem; margin: 0; color: var(--ink-soft); font-size: .58rem; font-weight: 700; letter-spacing: .13em; line-height: 1.8; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.stay-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stay-facts > div { display: flex; align-items: baseline; gap: .75rem; padding: 1.7rem clamp(1rem, 2.5vw, 2.5rem); border-right: 1px solid var(--line); }
.stay-facts > div:first-child { padding-left: 0; }
.stay-facts > div:last-child { border-right: 0; }
.stay-facts strong { color: var(--ocean); font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 500; line-height: 1; }
.stay-facts span { color: var(--ink-soft); font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* Booking callout */
.booking-strip { padding: 2.2rem 0; border-bottom: 1px solid var(--line); background: var(--sun); }
.booking-strip-grid { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.booking-strip .eyebrow { margin-bottom: .5rem; color: var(--ocean); }
.booking-strip h2 { margin: 0; color: var(--ocean-deep); font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.6rem); }
.booking-strip p:not(.eyebrow) { margin: .4rem 0 0; color: rgba(16, 40, 54, .72); font-size: .78rem; }
.booking-strip .button { flex: 0 0 auto; }

/* Editorial sections */
.editorial-grid, .spaces-head { display: grid; grid-template-columns: minmax(10rem, .7fr) 2.3fr; gap: clamp(2.5rem, 8vw, 9rem); }
.editorial-grid h2, .spaces-head h2 { margin-bottom: 2.7rem; }
.intro-copy { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.intro-copy p { margin-bottom: 0; }
.intro-lede { color: var(--ink); font-family: var(--font-display); font-size: clamp(1.55rem, 2.4vw, 2.25rem); line-height: 1.3; }
.image-break { display: grid; grid-template-columns: 1.25fr .8fr .8fr; gap: 1rem; padding: 1rem; background: var(--ocean); }
.image-break figure { min-height: 31rem; margin: 0; overflow: hidden; }
.image-break-wide { min-height: 40rem !important; }
.image-break img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.image-break figure:hover img { transform: scale(1.025); }
.spaces { background: var(--white); }
.spaces-head > div:last-child > p { max-width: 41rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid var(--line); }
.feature-grid article { padding: 2rem 2rem 1rem 0; border-right: 1px solid var(--line); }
.feature-grid article:not(:first-child) { padding-left: 2rem; }
.feature-grid article:last-child { border-right: 0; }
.feature-grid span { color: var(--coral-dark); font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.feature-grid h3 { margin: 4rem 0 .8rem; }
.feature-grid p { margin-bottom: 0; font-size: .91rem; }

/* Gallery */
.gallery-preview { padding: clamp(6rem, 9vw, 9rem) 0 1rem; background: var(--ocean); color: var(--white); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 4rem; }
.gallery-heading h2 { margin-bottom: 0; }
.gallery-heading h2 em { color: #f4c966; }
.gallery-grid { display: grid; grid-template-columns: 1.05fr .78fr .95fr; grid-template-rows: 24rem 24rem; gap: 1rem; padding: 0 1rem; }
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* Amenities and details */
.amenities { background: var(--paper-warm); }
.amenities-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.amenities-grid h2 { margin-bottom: 0; }
.amenities-grid ul { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.amenities-grid li { position: relative; padding: 1.25rem 1rem 1.25rem 1.8rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.amenities-grid li::before { content: ""; position: absolute; left: .2rem; top: 1.8rem; width: .45rem; height: .45rem; border-radius: 50%; background: var(--coral); }
.stay-details { background: var(--white); }
.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 4rem; background: var(--line); border: 1px solid var(--line); }
.detail-grid article { min-height: 20rem; padding: 2rem; background: var(--paper); }
.detail-grid span { color: var(--coral-dark); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.detail-grid strong { display: block; margin: 4rem 0 1.1rem; color: var(--ocean); font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 500; line-height: 1; }
.detail-grid p { margin: 0; font-size: .88rem; }
.review-note { display: flex; align-items: end; justify-content: space-between; gap: 4rem; margin-top: 2rem; padding: clamp(2.5rem, 5vw, 5rem); background: var(--sun); }
.review-note h2 { margin-bottom: 1.2rem; font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 4.4rem); }
.review-note p:not(.eyebrow) { max-width: 49rem; margin-bottom: 0; color: rgba(16, 40, 54, .75); }
.review-note .eyebrow { color: var(--ocean); }
.review-note .button { flex: 0 0 auto; }

/* Newsletter and member access */
.newsletter-home { background: var(--paper-warm); }
.newsletter-grid, .audience-hero { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.newsletter-grid h2 { margin-bottom: 1.5rem; }
.newsletter-grid > div:first-child > p:last-child, .audience-hero > div:first-child > p:last-child { max-width: 35rem; }
.signup-card, .member-card { padding: clamp(1.6rem, 4vw, 3.4rem); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.signup-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.signup-field { display: flex; flex-direction: column; gap: .35rem; }
.signup-field label { color: var(--ocean); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.signup-field input:not([type="checkbox"]), .signup-field textarea { width: 100%; min-height: 3.3rem; padding: .75rem .85rem; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); }
.signup-field input:focus, .signup-field textarea:focus { border-color: var(--coral); outline: 2px solid rgba(230, 111, 81, .22); }
.signup-field-checkbox { grid-column: 1 / -1; }
.signup-consent { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; color: var(--ink-soft) !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; }
.signup-consent input { width: 1.1rem; height: 1.1rem; margin-top: .2rem; accent-color: var(--coral-dark); }
.signup-form > .button, .signup-success, .signup-form > [data-faster-form-error] { grid-column: 1 / -1; }
.signup-form > .button { justify-self: start; }
.signup-error { margin: 0; color: #9c3326; font-size: .72rem; }
.signup-success { margin: 0; padding: 1rem; background: #e4f2e8; color: #1d5b32; }
.audience-page { padding: clamp(4rem, 8vw, 8rem) 0; min-height: 70vh; }
.audience-hero h1 { max-width: 8ch; margin-bottom: 2rem; }
.member-card { min-height: 22rem; }
.member-card [data-faster-member-area] { min-height: 16rem; }

/* Footer and 404 */
.site-footer { padding-top: clamp(6rem, 9vw, 9rem); background: var(--ocean-deep); color: var(--white); }
.footer-lead { padding-bottom: clamp(5rem, 8vw, 8rem); border-bottom: 1px solid var(--line-light); }
.footer-lead-row { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.footer-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 1.5rem; }
.footer-lead h2 { margin: 0; }
.footer-lead h2 em { color: #f4c966; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .65fr .65fr; gap: clamp(3rem, 7vw, 7rem); padding: 4.5rem 0; }
.footer-brand p { max-width: 28rem; margin: 2rem 0 0; color: rgba(255, 253, 249, .65); }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.footer-grid h3 { margin: 0 0 1rem; color: #f4c966; font-family: var(--font-sans); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { color: rgba(255, 253, 249, .72); font-size: .82rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-base { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--line-light); }
.footer-base p { margin: 0; color: rgba(255, 253, 249, .45); font-size: .64rem; }
.not-found { padding: clamp(5rem, 9vw, 9rem) 0; }
.not-found-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.not-found h1 { margin-bottom: 2.5rem; }
.not-found img { width: 100%; min-height: 34rem; object-fit: cover; }

/* Native HMS property shell */
body.page-hms-property { background: var(--paper); }
body.page-hms-property .hms-page { padding: clamp(4rem, 7vw, 7rem) 0 clamp(6rem, 9vw, 9rem); background: var(--paper); color: var(--ink); }
body.page-hms-property .hms-page__inner { width: min(calc(100% - 6rem), 1320px) !important; max-width: none !important; margin-inline: auto; padding: 0 !important; }
body.page-hms-property .hms-hero { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); margin: 0 0 4rem; }
body.page-hms-property .hms-page__header { padding: 0; }
body.page-hms-property .hms-page__eyebrow { color: var(--coral-dark); font-size: .69rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
body.page-hms-property .hms-page__header h1 { margin: 1.4rem 0 1.8rem; color: var(--ink); font-family: var(--font-display); font-size: clamp(3.8rem, 6.8vw, 7rem); font-weight: 500; letter-spacing: -.045em; line-height: .95; }
body.page-hms-property .hms-page__lede { max-width: 35rem; color: var(--ink-soft); font-size: 1.06rem; }
body.page-hms-property .hms-hero__image { width: 100%; height: min(54vw, 42rem); max-height: none; border-radius: 0; object-fit: cover; box-shadow: var(--shadow); }
body.page-hms-property .hms-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 5rem; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); gap: 0; }
body.page-hms-property .hms-facts li { padding: 1.7rem 2rem; border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink-soft); }
body.page-hms-property .hms-facts li:last-child { border-right: 0; }
body.page-hms-property .hms-facts strong { color: var(--ocean); font-size: .65rem; letter-spacing: .11em; text-transform: uppercase; }
body.page-hms-property .hms-panel { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1rem 3rem; margin: 0 0 2rem; padding: clamp(2rem, 4vw, 3.5rem); border: 0; border-radius: 0; background: var(--sun); box-shadow: none; }
body.page-hms-property .hms-panel .hms-page__eyebrow { grid-column: 1 / -1; margin: 0; color: var(--ocean); }
body.page-hms-property .hms-panel h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 500; }
body.page-hms-property .hms-panel p:not(.hms-page__eyebrow) { grid-column: 1; margin: 0; }
body.page-hms-property .hms-panel .hms-button { grid-column: 2; grid-row: 2 / span 2; align-self: center; }
body.page-hms-property .hms-section { margin: 0 0 2rem; padding: clamp(2.5rem, 5vw, 5rem); border: 1px solid var(--line); border-radius: 0; background: var(--white); box-shadow: none; }
body.page-hms-property .hms-section > h2 { margin-bottom: 1.4rem; color: var(--ink); font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 4.6rem); font-weight: 500; }
body.page-hms-property .hms-section > p { max-width: 54rem; }
body.page-hms-property .hms-list { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; padding: 0; list-style: none; }
body.page-hms-property .hms-list li { padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ocean); font-size: .77rem; font-weight: 600; }
body.page-hms-property .hms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 3rem; }
body.page-hms-property .hms-card__image { width: 100%; height: auto; aspect-ratio: 1.28; border-radius: 0; object-fit: cover; }
body.page-hms-property .hms-grid .hms-card__image:nth-child(7n + 1) { grid-column: span 2; aspect-ratio: 2.05; }

/* Native booking shell */
body[class*="page-hms-booking"] { background: var(--paper); }
body[class*="page-hms-booking"] .hms-page { color: var(--ink); }
body[class*="page-hms-booking"] .hms-page__inner { width: min(calc(100% - 6rem), 1180px); max-width: none; margin-inline: auto; }
body[class*="page-hms-booking"] .hms-page__header h1, body[class*="page-hms-booking"] .hms-booking-hero h1 { color: var(--ink); font-family: var(--font-display); font-weight: 500; letter-spacing: -.04em; }
body[class*="page-hms-booking"] .hms-page__eyebrow { color: var(--coral-dark); }
body[class*="page-hms-booking"] .hms-section, body[class*="page-hms-booking"] .hms-booking-result, body[class*="page-hms-booking"] .hms-booking-availability { border-radius: 0; }
body[class*="page-hms-booking"] .hms-button { border-radius: 0; background: var(--ocean); color: var(--white); font-weight: 700; letter-spacing: .05em; }
body[class*="page-hms-booking"] .hms-button:hover { background: var(--coral); color: var(--ocean-deep); }

@media (max-width: 1180px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
}

@media (max-width: 1080px) {
  .shell, body.page-hms-property .hms-page__inner, body[class*="page-hms-booking"] .hms-page__inner { width: min(calc(100% - 3rem), 1320px) !important; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 52rem; }
  .hero-copy h1 { max-width: 9ch; }
  .hero-media { min-height: 44rem; margin-left: 7%; }
  .editorial-grid, .spaces-head { grid-template-columns: .55fr 1.45fr; gap: 3rem; }
  .image-break { grid-template-columns: 1.25fr 1fr; }
  .image-break figure:last-child { display: none; }
  .feature-grid, .detail-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid article:nth-child(2) { border-right: 0; }
  .gallery-grid { grid-template-rows: 20rem 20rem; }
  body.page-hms-property .hms-hero { grid-template-columns: 1fr; }
  body.page-hms-property .hms-hero__image { height: min(70vw, 42rem); }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(3.5rem, 17vw, 5.6rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .shell, body.page-hms-property .hms-page__inner, body[class*="page-hms-booking"] .hms-page__inner { width: min(calc(100% - 2rem), 1320px) !important; }
  .section { padding: 5.5rem 0; }
  .site-header { height: 5rem; }
  .wordmark-mark { width: 2.45rem; height: 2.45rem; }
  .wordmark-copy strong { font-size: 1.15rem; }
  .hero { padding-top: 3.5rem; }
  .hero-media { min-height: 32rem; margin-left: 0; }
  .hero-photo-main { inset: 0 0 4.5rem 6%; }
  .hero-photo-inset { left: -1%; width: 48%; border-width: .55rem; }
  .hero-caption { display: none; }
  .stay-facts { grid-template-columns: 1fr 1fr; }
  .stay-facts > div, .stay-facts > div:first-child { padding: 1.3rem 1rem; border-bottom: 1px solid var(--line); }
  .stay-facts > div:nth-child(2) { border-right: 0; }
  .stay-facts > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .editorial-grid, .spaces-head, .intro-copy, .amenities-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .image-break { grid-template-columns: 1fr; padding: .6rem; }
  .image-break figure { min-height: 25rem; }
  .image-break-wide { min-height: 30rem !important; }
  .image-break figure:not(:first-child) { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article, .feature-grid article:not(:first-child) { padding: 1.8rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-grid article:last-child { border-bottom: 0; }
  .feature-grid h3 { margin-top: 2.5rem; }
  .gallery-heading, .review-note, .footer-lead-row, .footer-base, .booking-strip-grid { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 22rem 17rem 17rem; gap: .6rem; padding: 0 .6rem; }
  .gallery-tall { grid-column: span 2; grid-row: auto; }
  .gallery-wide { grid-column: span 2; }
  .amenities-grid ul { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid article { min-height: 15rem; }
  .detail-grid strong { margin-top: 2.5rem; }
  .review-note { padding: 2rem; }
  .newsletter-grid, .audience-hero { grid-template-columns: 1fr; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-field-checkbox, .signup-form > .button, .signup-success, .signup-form > [data-faster-form-error] { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .not-found-grid { grid-template-columns: 1fr; }
  .not-found img { min-height: 25rem; }
  body.page-hms-property .hms-page { padding-top: 3.5rem; }
  body.page-hms-property .hms-hero { gap: 2rem; margin-bottom: 3rem; }
  body.page-hms-property .hms-hero__image { height: 26rem; }
  body.page-hms-property .hms-facts { grid-template-columns: 1fr; }
  body.page-hms-property .hms-facts li { border-right: 0; border-bottom: 1px solid var(--line); }
  body.page-hms-property .hms-facts li:last-child { border-bottom: 0; }
  body.page-hms-property .hms-section { padding: 1.5rem; }
  body.page-hms-property .hms-panel { grid-template-columns: 1fr; }
  body.page-hms-property .hms-panel .hms-button { grid-column: 1; grid-row: auto; justify-self: start; }
  body.page-hms-property .hms-grid { grid-template-columns: 1fr 1fr; gap: .45rem; }
  body.page-hms-property .hms-grid .hms-card__image:nth-child(7n + 1) { grid-column: span 2; }
}

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