:root {
  --forest: #062e26;
  --forest-2: #0a3a30;
  --forest-3: #0f493c;
  --gold: #d2a252;
  --gold-bright: #e3b664;
  --ink: #18211e;
  --muted: #66706c;
  --line: #dfe4e1;
  --white: #fff;
  --max: 1400px;
  --serif: "Montserrat", "Segoe UI", Arial, sans-serif;
  --sans: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.site-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: var(--forest);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(6,46,38,.09);
}
.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-logo {
  width: 178px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font: 31px/1 var(--serif);
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong, .footer-brand strong {
  font: 30px/1 var(--serif);
  letter-spacing: .02em;
}
.brand-copy small, .footer-brand small {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 46px);
  font-size: 15px;
}
.main-nav a { padding: 12px 0; border-bottom: 1px solid transparent; }
.main-nav a:hover, .main-nav a:focus-visible { border-color: var(--gold); }
.header-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
}
.header-book .site-icon { width: 20px; height: 20px; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(650px, 78vh);
  color: var(--forest);
  overflow: hidden;
  background: var(--forest);
}
.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 30%, rgba(255,255,255,.12) 58%, rgba(255,255,255,0) 78%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: clamp(105px, 15vh, 145px) 0 155px;
}
.hero h1, .section h2, .events h2, .amenities h2, .location h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
}
.hero-content > p {
  max-width: 535px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #17221e; }
.button-gold:hover { background: var(--gold-bright); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.8); }
.hero .button-ghost { color: var(--forest); border-color: rgba(6,46,38,.45); background: rgba(255,255,255,.55); }
.button-ghost:hover { background: var(--white); color: var(--forest); }
.button-dark { background: var(--forest); color: var(--white); }
.button-dark:hover { background: var(--forest-3); }
.button-light { border-color: #83908a; background: var(--white); }
.button-outline-gold { border-color: var(--gold); color: var(--gold-bright); }

.booking-wrap {
  position: relative;
  z-index: 5;
  width: min(94%, 1460px);
  margin: -69px auto 0;
}
.booking-form {
  position: relative;
  min-height: 138px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.18fr;
  align-items: end;
  gap: 0;
  padding: 27px 28px 29px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(210,162,82,.34);
  box-shadow: 0 20px 50px rgba(0,25,20,.22);
}
.booking-form label {
  display: grid;
  gap: 10px;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.booking-form label:first-of-type { padding-left: 0; }
.booking-form label span { display: inline-flex; align-items: center; gap: 8px; color: #d9e2de; font-size: 13px; }
.booking-form label span .site-icon { width: 16px; height: 16px; color: var(--gold-bright); }
.booking-form input, .booking-form select {
  width: 100%;
  height: 47px;
  padding: 0;
  color: var(--white);
  color-scheme: dark;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}
.booking-form select option { color: var(--ink); background: var(--white); }
.booking-form button {
  height: 57px;
  margin-left: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #18211e;
  background: var(--gold);
  border: 0;
  font-weight: 700;
  cursor: pointer;
}
.booking-form button .site-icon { width: 19px; height: 19px; }
.booking-form button:hover { background: var(--gold-bright); }
.form-error {
  position: absolute;
  left: 28px;
  bottom: 6px;
  margin: 0;
  color: #ffd7d0;
  font-size: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 78px;
}
.trust-strip div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.trust-strip div:last-child { border-right: 0; }
.trust-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  color: var(--gold);
  background: rgba(210,162,82,.1);
  border: 1px solid rgba(210,162,82,.32);
}
.trust-icon .site-icon { width: 25px; height: 25px; }
.trust-strip strong { display: block; color: var(--gold); font: 22px/1.1 var(--serif); }
.trust-strip p { margin: 0; color: #4c5853; font-size: 14px; line-height: 1.5; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 36px;
}
.rooms {
  display: block;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-heading h2 { max-width: 780px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 8px; color: #9b6f29; font-weight: 600; white-space: nowrap; }
.text-link .site-icon { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover .site-icon { transform: translateX(4px); }
.room-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .8fr);
  min-height: 520px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(210,162,82,.5);
  box-shadow: 0 22px 55px rgba(0,30,24,.08);
}
.room-showcase-media { position: relative; min-height: 520px; overflow: hidden; background: #d9dfdb; }
.room-showcase-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .18s ease, transform .5s ease; }
.room-showcase-media img.is-changing { animation: room-showcase-change .55s ease both; }
@keyframes room-showcase-change {
  from { opacity: .35; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}
.room-showcase-media span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(4,38,31,.9);
  font-size: 13px;
  font-weight: 700;
}
.room-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 62px);
  background: linear-gradient(145deg, #fff, #f8f6f1);
}
.room-showcase-copy h3 { margin: 0; color: var(--forest); font: clamp(40px, 4vw, 60px)/1.02 var(--serif); }
.room-showcase-summary { margin: -4px 0 20px; color: var(--muted); line-height: 1.65; }
.room-selector-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.room-selector {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-width: 0;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.room-selector:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 16px 34px rgba(0,30,24,.1); }
.room-selector:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.room-selector.is-active { border-color: var(--gold); box-shadow: inset 0 -4px 0 var(--gold), 0 16px 34px rgba(0,30,24,.1); }
.room-selector > img { width: 100%; height: 210px; object-fit: cover; }
.room-selector > span { display: flex; flex-direction: column; align-items: flex-start; padding: 20px; }
.room-selector strong { color: var(--forest); font: 26px/1.1 var(--serif); }
.room-selector small { margin-top: 9px; color: var(--muted); font: 13px/1.45 var(--sans); }
.room-selector em { margin-top: auto; padding-top: 18px; color: #a9792e; font: 650 12px/1 var(--sans); font-style: normal; }
.room-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.room-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(0,30,24,.11); }
.room-card img { height: 240px; object-fit: cover; }
.room-card > div { padding: 22px 20px 24px; }
.room-card h3 { margin: 0; color: var(--forest); font: 28px/1.1 var(--serif); }
.room-card p { min-height: 42px; margin: 10px 0 18px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.room-card a { color: #a9792e; font-size: 13px; font-weight: 650; }
.room-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
  align-items: stretch;
  margin-bottom: 18px;
  border-color: rgba(210,162,82,.45);
}
.room-card-featured:hover { transform: none; }
.standard-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 10px;
  padding: 10px;
  background: #eef0ed;
}
.standard-gallery-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d9dfdb;
}
.standard-gallery-stage > img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transition: opacity .18s ease;
}
.standard-gallery-stage > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(6,46,38,.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.standard-gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
.standard-gallery-thumbs button {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #d9dfdb;
  border: 2px solid transparent;
  cursor: pointer;
}
.standard-gallery-thumbs button:hover,
.standard-gallery-thumbs button:focus-visible,
.standard-gallery-thumbs button.is-active {
  border-color: var(--gold);
  outline: 0;
}
.standard-gallery-thumbs img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.room-card-featured > .room-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 64px);
  background: linear-gradient(145deg, #fff, #f8f6f1);
}
.room-eyebrow {
  min-height: 0 !important;
  margin: 0 0 12px !important;
  color: #a9792e !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.room-card-featured h3 { font-size: clamp(36px, 4vw, 58px); }
.room-price {
  min-height: 0 !important;
  margin: 20px 0 24px !important;
  color: var(--forest) !important;
  font: 32px/1 var(--serif);
}
.room-price span { color: var(--muted); font: 14px/1 var(--sans); }
.room-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 14px;
}
.room-facts li::before {
  content: "✓";
  margin-right: 9px;
  color: #a9792e;
  font-weight: 800;
}
.room-book-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
}
.room-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.room-detail-trigger {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #17221e;
  background: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  font: 650 13px/1 var(--sans);
}
.room-detail-trigger:hover,
.room-detail-trigger:focus-visible { background: #e2bb70; outline: 2px solid var(--forest); outline-offset: 2px; }
.room-small-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.room-small-detail {
  min-height: 38px;
  padding: 0 14px;
  color: #17221e;
  background: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  font: 650 12px/1 var(--sans);
}
.room-small-detail:hover,
.room-small-detail:focus-visible { background: #e2bb70; outline: 2px solid var(--forest); outline-offset: 2px; }
.room-dialog {
  width: min(1180px, calc(100% - 36px));
  max-height: min(860px, calc(100dvh - 36px));
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  box-shadow: 0 30px 90px rgba(0,20,16,.35);
}
.room-dialog::backdrop { background: rgba(3,24,19,.76); backdrop-filter: blur(5px); }
.room-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 670px;
}
.room-dialog-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0,20,16,.15);
  cursor: pointer;
  font: 30px/1 var(--sans);
}
.room-dialog-close:hover,
.room-dialog-close:focus-visible { color: var(--white); background: var(--forest); outline: 2px solid var(--gold); }
.room-dialog-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 120px;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  background: #eef0ed;
}
.room-dialog-gallery-single { grid-template-rows: minmax(0, 1fr); }
.room-dialog-stage { position: relative; min-height: 0; overflow: hidden; background: #d9dfdb; }
.room-dialog-stage > img { width: 100%; height: 100%; object-fit: cover; }
.room-dialog-stage > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(4,38,31,.84);
  font-size: 12px;
}
.room-dialog-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.room-dialog-thumbs-two { grid-template-columns: repeat(2, 1fr); }
.room-dialog-thumbs button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #d9dfdb;
  border: 2px solid transparent;
  cursor: pointer;
}
.room-dialog-thumbs button:hover,
.room-dialog-thumbs button:focus-visible,
.room-dialog-thumbs button.is-active { border-color: var(--gold); outline: 0; }
.room-dialog-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.room-dialog-copy {
  overflow-y: auto;
  padding: 54px clamp(28px, 4vw, 58px) 42px;
}
.room-dialog-copy h2 { margin: 0; color: var(--forest); font: clamp(42px, 4vw, 58px)/1.05 var(--serif); }
.room-dialog-copy h3 { margin: 30px 0 16px; color: var(--forest); font-size: 17px; }
.room-dialog-price { margin: 16px 0 14px; color: var(--forest); font: 30px/1 var(--serif); }
.room-dialog-price span { color: var(--muted); font: 14px/1 var(--sans); }
.room-dialog-intro { margin: 0; color: var(--muted); line-height: 1.65; }
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.amenity-grid li { position: relative; min-width: 0; padding: 12px 12px 12px 42px; background: #f4f5f2; border: 1px solid #e3e6e1; }
.amenity-grid li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(210,162,82,.2);
  border: 1px solid rgba(210,162,82,.5);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.amenity-grid strong,
.amenity-grid span { display: block; }
.amenity-grid strong { color: var(--forest); font-size: 13px; }
.amenity-grid span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.room-time-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 20px; background: var(--line); border: 1px solid var(--line); }
.room-time-row div { padding: 12px; background: var(--white); }
.room-time-row span,
.room-time-row strong { display: block; }
.room-time-row span { color: var(--muted); font-size: 11px; }
.room-time-row strong { margin-top: 5px; color: var(--forest); font-size: 14px; }
.room-dialog-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.room-dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.room-dialog-actions .button-light { border: 1px solid var(--line); }
body.has-dialog { overflow: hidden; }
.ornament { margin: 0 0 24px; color: var(--gold); font-size: 24px; }
.ornament .site-icon { width: 32px; height: 32px; }
.section-copy h2, .events h2, .amenities h2, .location h2 {
  color: var(--forest);
  font-size: clamp(45px, 4.4vw, 68px);
  line-height: 1.08;
}
.section-copy > p:not(.ornament) {
  max-width: 420px;
  margin: 25px 0 34px;
  color: var(--muted);
  line-height: 1.75;
}
.room-gallery {
  display: grid;
  grid-template-columns: 2.3fr .78fr;
  grid-template-rows: 216px 216px auto;
  gap: 12px;
}
.room-gallery figure { margin: 0; overflow: hidden; }
.room-gallery figure img { height: 100%; object-fit: cover; }
.room-main { grid-row: 1 / 3; }
.room-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.room-tabs span { padding: 19px 12px; text-align: center; border-right: 1px solid var(--line); }
.room-tabs span:first-child { color: var(--white); background: var(--forest); }
.room-tabs span:last-child { border-right: 0; }

.events {
  display: grid;
  grid-template-columns: 1.45fr .95fr;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding: 78px max(5vw, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--forest);
}
.event-image { height: 500px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 10px; overflow: hidden; }
.event-image img { height: 100%; object-fit: cover; }
.event-copy { max-width: 520px; }
.events h2 { color: var(--white); }
.event-copy > p:not(.ornament) { margin: 26px 0 36px; color: #d2ddd8; line-height: 1.75; }

.amenities {
  max-width: none;
  margin: 0;
  display: block;
  padding: 92px max(5vw, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(135deg, #06372d, #02251f);
}
.services-heading { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.services-heading h2 { color: var(--white); font-size: clamp(38px, 3.8vw, 58px); }
.services-heading > p:last-child { margin: 18px 0 0; color: #b9ccc4; }
.service-list { display: grid; grid-template-columns: repeat(5, 1fr); }
.service-list article { min-width: 0; padding: 4px 28px 10px; text-align: center; border-right: 1px solid rgba(210,162,82,.35); }
.service-list article:first-child { padding-left: 0; }
.service-list article:last-child { padding-right: 0; border-right: 0; }
.service-list svg { width: 52px; height: 52px; margin: 0 auto 22px; fill: none; stroke: var(--gold-bright); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-list h3 { min-height: 48px; margin: 0 0 10px; color: var(--white); font: 21px/1.15 var(--serif); }
.service-list p { margin: 0; color: #b9ccc4; font-size: 13px; line-height: 1.6; }

.location {
  display: grid;
  grid-template-columns: 1fr .82fr 1fr;
  min-height: 570px;
  background: #f4f5f3;
}
.location-photo img { height: 100%; object-fit: cover; }
.location-copy {
  align-self: center;
  padding: 60px clamp(35px, 4vw, 75px);
}
.location-copy h2 { font-size: clamp(42px, 4vw, 63px); }
.location-copy > p:not(.ornament) { color: var(--muted); line-height: 1.7; }
.location-copy address { display: grid; gap: 12px; margin: 25px 0 32px; font-style: normal; font-weight: 600; }
.location-copy address a { display: inline-flex; align-items: center; gap: 10px; width: fit-content; }
.location-copy address .site-icon { width: 18px; height: 18px; color: #a9792e; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-frame { min-height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65) contrast(.92); }

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 62px max(5vw, calc((100vw - var(--max)) / 2)) 38px;
  color: var(--white);
  background: #031f1a;
}
.site-footer .brand-logo { width: 154px; height: 58px; padding: 4px; background: var(--white); }
.footer-brand small { display: block; margin-top: 4px; }
.site-footer nav { justify-self: center; display: flex; gap: 40px; color: #d6dfdb; }
.copyright { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 24px; color: #8ba098; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.mobile-book { display: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .booking-form { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .booking-form label { padding: 0; border: 0; }
  .booking-form button { margin: 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div { margin-bottom: 24px; }
  .room-showcase { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); }
  .room-selector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .room-cards { grid-template-columns: repeat(2, 1fr); }
  .room-card-featured { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .8fr); }
  .standard-gallery { grid-template-columns: minmax(0, 1fr) 88px; }
  .standard-gallery-stage > img { min-height: 370px; }
  .service-list { grid-template-columns: repeat(3, 1fr); gap: 38px 0; }
  .service-list article:nth-child(3) { border-right: 0; }
  .location { grid-template-columns: 1fr 1fr; }
  .map-frame { grid-column: 1 / -1; height: 400px; }
}

@media (max-width: 780px) {
  .site-header {
    position: relative;
    height: 82px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .brand-logo { width: 148px; height: 58px; }
  .header-book { display: none; }
  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 9px;
    color: var(--forest);
    background: transparent;
    border: 1px solid rgba(6,46,38,.32);
  }
  .menu-button span:not(.sr-only) { height: 1px; background: currentColor; }
  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--forest);
  }
  .main-nav.is-open { display: grid; }
  .main-nav.is-open { color: var(--white); }
  .main-nav a, .main-nav a:nth-child(4) { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero { min-height: 680px; color: var(--white); }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,22,18,.88), rgba(2,22,18,.24)); }
  .hero-content { width: auto; margin: 0; padding: 152px 22px 160px; }
  .hero h1 { font-size: clamp(42px, 11vw, 55px); }
  .hero .button-ghost { color: var(--white); border-color: rgba(255,255,255,.72); background: transparent; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 310px; }
  .booking-wrap { width: calc(100% - 28px); margin-top: -80px; }
  .booking-form { grid-template-columns: 1fr; padding: 24px 20px 32px; }
  .booking-form label { gap: 5px; }
  .booking-form input, .booking-form select { height: 42px; }
  .form-error { left: 20px; }
  .trust-strip { grid-template-columns: 1fr; padding: 38px 22px 62px; }
  .trust-strip div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section, .amenities { padding: 78px 22px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .room-showcase { grid-template-columns: 1fr; min-height: 0; }
  .room-showcase-media { min-height: 330px; }
  .room-showcase-copy { padding: 34px 24px 38px; }
  .room-selector-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 20% 14px 0;
    touch-action: pan-x pan-y;
  }
  .room-selector-grid::-webkit-scrollbar { display: none; }
  .room-selector {
    flex: 0 0 78%;
    grid-template-columns: 132px 1fr;
    grid-template-rows: 1fr;
    min-height: 170px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .room-selector > img { width: 132px; height: 100%; min-height: 170px; }
  .room-selector > span { padding: 16px 14px; }
  .room-selector strong { font-size: 22px; }
  .room-cards { grid-template-columns: 1fr; }
  .room-card img { height: 255px; }
  .room-card-featured { grid-template-columns: 1fr; }
  .standard-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  .standard-gallery-stage > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .standard-gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 82px;
    gap: 8px;
  }
  .standard-gallery-thumbs img { height: 100%; }
  .room-card-featured > .room-card-copy { padding: 34px 24px 38px; }
  .room-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }
  .room-dialog-shell { grid-template-columns: 1fr; min-height: 0; }
  .room-dialog-gallery { grid-template-rows: minmax(260px, 42vh) 80px; }
  .room-dialog-copy { padding: 34px 20px 30px; }
  .room-dialog-copy h2 { padding-right: 38px; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .room-time-row { grid-template-columns: 1fr 1fr 1fr; }
  .room-dialog-actions .button { flex: 1; min-width: 140px; }
  .room-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 170px auto; }
  .room-main { grid-column: 1 / -1; grid-row: auto; }
  .room-tabs { grid-template-columns: repeat(2, 1fr); }
  .room-tabs span { border-bottom: 1px solid var(--line); }
  .events { grid-template-columns: 1fr; padding: 60px 22px 74px; }
  .event-image { height: 430px; grid-template-columns: 1fr; grid-template-rows: 1.2fr .8fr; }
  .event-copy { padding: 0 4px; }
  .services-heading { margin-bottom: 44px; text-align: left; }
  .service-list { grid-template-columns: 1fr 1fr; gap: 0; }
  .service-list article,
  .service-list article:first-child,
  .service-list article:last-child {
    padding: 28px 16px;
    text-align: left;
    border-right: 1px solid rgba(210,162,82,.28);
    border-bottom: 1px solid rgba(210,162,82,.28);
  }
  .service-list article:nth-child(even) { border-right: 0; }
  .service-list article:last-child { grid-column: 1 / -1; border-right: 0; }
  .service-list svg { margin: 0 0 18px; }
  .service-list h3 { min-height: 0; }
  .location { grid-template-columns: 1fr; }
  .location-photo { height: 330px; }
  .location-copy { padding: 65px 22px; }
  .map-frame { grid-column: auto; height: 360px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; padding: 58px 22px 30px; }
  .site-footer nav { justify-self: start; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 35px; }
  .copyright { grid-column: auto; width: 100%; }
  .mobile-book {
    position: fixed;
    z-index: 30;
    left: auto;
    right: 16px;
    bottom: 16px;
    width: auto;
    min-height: 46px;
    padding: 0 17px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #17221e;
    background: var(--gold);
    box-shadow: 0 10px 24px rgba(0,20,16,.24);
    font-weight: 700;
    transition: opacity .22s ease, transform .22s ease;
  }
  .mobile-book.is-hidden { opacity: 0; transform: translateY(74px); pointer-events: none; }
  .mobile-book .site-icon { width: 17px; height: 17px; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .room-selector { flex-basis: 86%; }
  .room-selector > span { min-width: 0; }
}

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