:root {
  --forest-dark: #202b23;
  --ivory: #f5f2ee;
  --copper: #c17a49;
  --hairline: rgba(245, 242, 238, 0.3);
  --content-width: 82rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--forest-dark);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
}

.placeholder-page {
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1.5rem, 3.4vw, 3.4rem) clamp(1.35rem, 5.6vw, 6.5rem);
  padding-bottom: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto auto;
}

.placeholder-page::before,
.placeholder-page::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.placeholder-page::before {
  background: var(--forest-dark);
}

.placeholder-page::after {
  display: none;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header {
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}

.site-header > a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: clamp(10rem, 18vw, 18.5rem);
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.primary-nav a {
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  color: rgba(245, 242, 238, 0.82);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.primary-nav a[aria-current="page"] { color: #f6b184; }

.primary-nav a:not(.book-now):hover,
.primary-nav a:not(.book-now):focus-visible {
  color: #f6b184;
  outline: none;
}

.primary-nav .book-now {
  justify-content: center;
  padding: 0.8rem 1.05rem;
  background: var(--ivory);
  border: 1px solid var(--ivory);
  color: var(--forest-dark);
  white-space: nowrap;
}

.primary-nav .book-now:hover,
.primary-nav .book-now:focus-visible {
  background: #f6b184;
  border-color: #f6b184;
  outline: none;
}

.placeholder-copy {
  align-self: stretch;
  width: min(100%, var(--content-width));
  max-width: none;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vh, 7.5rem) 0 4rem;
}

.placeholder-copy,
.location-content,
.gallery-content,
.contact-content,
.reviews-content {
  --hairline: rgba(32, 43, 35, 0.18);
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
  color: var(--forest-dark);
}

.placeholder-copy h1,
.location-content h1,
.gallery-content h1,
.contact-content h1 { color: var(--forest-dark); }

.placeholder-copy .intro,
.location-content .intro,
.gallery-content .intro,
.contact-content .contact-intro { color: rgba(32, 43, 35, 0.7); }

.eyebrow,
.site-footer {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 600;
}

.eyebrow { margin: 0 0 1.25rem; color: var(--copper); }

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.intro {
  margin: clamp(1.6rem, 3.5vw, 2.8rem) 0 0;
  max-width: 34rem;
  color: rgba(245, 242, 238, 0.76);
  font-size: clamp(0.98rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}

.external-review-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.75rem;
  padding: 0.9rem 1.15rem;
  background: var(--forest-dark);
  border: 1px solid var(--forest-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.external-review-link:hover,
.external-review-link:focus-visible {
  background: var(--copper);
  border-color: var(--copper);
  outline: none;
}

.reviews-content {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  color: var(--forest-dark);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.reviews-heading .external-review-link {
  margin-top: 1.5rem;
}

.reviews-heading h1 {
  margin: 0;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.reviews-intro { max-width: 32rem; padding-bottom: 0.4rem; }
.reviews-intro-kicker {
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.reviews-intro h2,
.review-story-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.reviews-intro h2 { font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1; }
.reviews-intro > p:not(.reviews-intro-kicker) {
  margin: 1.25rem 0 0;
  color: rgba(32, 43, 35, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
}

.reviews-proof {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  color: var(--forest-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reviews-proof-stars {
  color: var(--copper);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.review-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  align-items: stretch;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  background: #eee9e2;
}
.review-story-image { min-height: 30rem; margin: 0; overflow: hidden; }
.review-story-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.review-story-copy { padding: clamp(2.5rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.review-story-copy h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 0.98; text-wrap: balance; }
.review-story-copy > p:not(.eyebrow) { margin: 1.5rem 0 0; color: rgba(32, 43, 35, 0.68); font-size: 0.95rem; line-height: 1.7; }
.review-highlights { margin: 2rem 0 0; padding: 0; border-top: 1px solid rgba(32, 43, 35, 0.18); list-style: none; }
.review-highlights li { padding: 1rem 0; display: flex; gap: 1rem; border-bottom: 1px solid rgba(32, 43, 35, 0.18); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.review-highlights span { color: var(--copper); }

.location-page {
  overflow: visible;
}

.gallery-page {
  overflow: visible;
  display: block;
}

.gallery-page::before,
.gallery-page::after {
  height: 100svh;
  bottom: auto;
}

.gallery-content {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.gallery-heading,
.location-heading,
.contact-heading {
  color: var(--forest-dark);
}

.gallery-heading h1,
.location-heading h1,
.contact-heading h1 { color: var(--forest-dark); }

.gallery-heading .intro,
.location-heading .intro,
.contact-heading .contact-intro { color: rgba(32, 43, 35, 0.7); }

.gallery-heading .intro {
  margin: 0;
  max-width: 24rem;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.35rem);
}

.gallery-item {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eef0ee;
}

.gallery-item:first-child { grid-column: 1 / -1; }

.gallery-item a {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 180ms ease;
}

.gallery-item a:hover img,
.gallery-item a:focus-visible img { transform: scale(1.025); }
.gallery-item a:focus-visible { outline: 2px solid #f6b184; outline-offset: 3px; }

.gallery-lightbox {
  width: 100vw;
  height: 100svh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem);
  border: 0;
  background: rgba(11, 16, 13, 0.97);
  color: var(--ivory);
  overflow: hidden;
}

.gallery-lightbox::backdrop { background: rgba(11, 16, 13, 0.92); }

.lightbox-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-image {
  max-width: calc(100vw - clamp(2rem, 10vw, 9rem));
  max-height: calc(100svh - clamp(6rem, 12vw, 9rem));
  display: block;
  object-fit: contain;
}

.lightbox-close,
.lightbox-arrow {
  border: 1px solid rgba(245, 242, 238, 0.45);
  background: rgba(32, 43, 35, 0.76);
  color: var(--ivory);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--forest-dark);
  outline: none;
}

.lightbox-close {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 1.65rem;
  line-height: 1;
}

.lightbox-arrow {
  width: 3rem;
  height: 3rem;
  padding: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  font-size: 1.45rem;
}

.lightbox-arrow--previous { left: 0; }
.lightbox-arrow--next { right: 0; }

.lightbox-counter {
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: rgba(245, 242, 238, 0.62);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-content {
  align-self: center;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.contact-intro {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem);
  max-width: 36rem;
  color: rgba(32, 43, 35, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.contact-heading { margin-bottom: clamp(3rem, 6vw, 5rem); }
.contact-heading .contact-intro { margin-bottom: 0; }

.contact-links {
  border-top: 1px solid var(--hairline);
}

.contact-link {
  padding: clamp(1.4rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--forest-dark);
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-link span:first-child {
  color: rgba(32, 43, 35, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-link span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 3vw, 2.25rem);
  text-align: right;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--copper);
  outline: none;
}

.location-content {
  align-self: center;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.location-heading .intro {
  margin: 0;
  max-width: 42rem;
}

.destination-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.location-map {
  margin: 0;
  border: 1px solid var(--hairline);
  background: #eef0ee;
  overflow: hidden;
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

.location-map figcaption {
  padding: 0.8rem 1rem;
  color: rgba(32, 43, 35, 0.55);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drive-times {
  margin: 0;
  border-top: 1px solid var(--hairline);
}

.drive-time {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
}

.drive-time dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.25;
}

.drive-time dd {
  margin: 0;
  flex: 0 0 auto;
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  height: 8rem;
  padding: 0;
  color: rgba(245, 242, 238, 0.6);
}

.booking-banner {
  min-height: clamp(12rem, 20vw, 16rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--copper);
  box-shadow: 0 0 0 100vmax var(--copper);
  clip-path: inset(0 -100vmax);
  color: var(--forest-dark);
}

.booking-banner-copy { max-width: 50rem; }
.booking-banner-kicker { margin: 0 0 0.9rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.booking-banner h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.95; }
.booking-banner-copy > p:last-child { margin: 1rem 0 0; max-width: 38rem; font-size: 0.95rem; line-height: 1.6; }

.booking-banner-link {
  min-height: 3.6rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #fff;
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.booking-banner-link:hover,
.booking-banner-link:focus-visible { background: var(--ivory); border-color: var(--forest-dark); outline: none; }

html.booking-modal-open { overflow: hidden; }

.booking-dialog {
  width: min(54rem, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest-dark);
  overflow: auto;
}

.booking-dialog::backdrop { background: rgba(10, 17, 12, 0.82); backdrop-filter: blur(5px); }

.booking-dialog-shell {
  min-height: min(48rem, calc(100svh - 2rem));
  display: grid;
  grid-template-columns: minmax(18rem, 28rem) minmax(21rem, 26rem);
  position: relative;
  background: #fff;
  box-shadow:
    0 0.15rem 0.4rem rgba(10, 17, 12, 0.12),
    0 1.4rem 3.5rem rgba(10, 17, 12, 0.25),
    0 3.5rem 7rem rgba(10, 17, 12, 0.16);
}

.booking-dialog-close {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border: 1px solid rgba(32, 43, 35, 0.18);
  border-radius: 50%;
  color: var(--forest-dark);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.booking-dialog-close:hover,
.booking-dialog-close:focus-visible { background: #f6b184; border-color: #f6b184; outline: none; }

.booking-dialog-intro {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest-dark);
  color: var(--ivory);
}

.booking-dialog-kicker,
.booking-widget-label { margin: 0 0 1rem; color: #f6b184; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.booking-dialog-intro h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.9; }
.booking-dialog-description { margin: 1.5rem 0 0; color: rgba(245, 242, 238, 0.72); font-size: 0.95rem; line-height: 1.7; }

.booking-dialog-facts {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.25rem;
  border-top: 1px solid rgba(245, 242, 238, 0.25);
  list-style: none;
}

.booking-dialog-facts li { color: rgba(245, 242, 238, 0.78); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.booking-dialog-help { margin: 0; padding-top: 1.75rem; color: rgba(245, 242, 238, 0.6); font-size: 0.8rem; line-height: 1.8; }
.booking-dialog-help a { color: var(--ivory); text-underline-offset: 0.2rem; }
.booking-dialog-alternative { margin: auto 0 0; padding-top: 1.75rem; color: rgba(245, 242, 238, 0.6); font-size: 0.72rem; line-height: 1.6; }
.booking-dialog-alternative a { color: #f6b184; font-weight: 700; letter-spacing: 0.08em; text-decoration-thickness: 1px; text-underline-offset: 0.25rem; text-transform: uppercase; }
.booking-dialog-alternative a:hover,
.booking-dialog-alternative a:focus-visible { color: var(--ivory); outline: none; }

.booking-widget-panel { padding: clamp(3.5rem, 5vw, 5rem) clamp(1rem, 3vw, 2.5rem) 2rem; background: #f1eee8; }
.booking-widget-label { color: var(--copper); text-align: center; }
.booking-widget-slot {
  width: 100%;
  max-width: 22rem;
  min-height: 38rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.site-footer p { margin: 0; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  line-height: 1.35;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #f6b184;
  outline: none;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.footer-nav a {
  color: rgba(245, 242, 238, 0.66);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav a[aria-current="page"] {
  color: #f6b184;
  outline: none;
}

@media (max-width: 680px) {
  .placeholder-page { padding: 1.35rem 1.25rem 0; }
  .site-header {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }
  .brand-logo { width: min(62vw, 15rem); }
  .primary-nav {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem 0.55rem;
    overflow: visible;
  }
  .primary-nav a {
    min-width: 0;
    justify-content: center;
    font-size: 0.57rem;
    letter-spacing: 0.11em;
  }
  .primary-nav .book-now {
    width: 100%;
    grid-column: 1 / -1;
    margin-left: 0;
    padding: 0.68rem 0.8rem;
  }
  .placeholder-copy { padding: 3rem 0; }
  .reviews-content { padding: 3rem 0; }
  .reviews-heading { grid-template-columns: 1fr; gap: 2rem; }
  .review-story { grid-template-columns: 1fr; }
  .review-story-image { min-height: 20rem; }
  .location-heading,
  .destination-layout { grid-template-columns: 1fr; }
  .location-heading { gap: 1.5rem; }
  .location-heading .intro { margin-top: 0; }
  .destination-layout { gap: 2.5rem; }
  .drive-time { padding: 1rem 0; }
  .gallery-heading { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .gallery-heading .intro { text-align: left; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .gallery-lightbox { padding: 0.75rem; }
  .lightbox-image { max-width: 100%; max-height: calc(100svh - 7rem); }
  .lightbox-arrow { top: auto; bottom: 0; transform: none; }
  .lightbox-arrow--previous { left: 0; }
  .lightbox-arrow--next { right: 0; }
  .contact-link { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .contact-link span:last-child { text-align: left; overflow-wrap: anywhere; }
  .booking-banner { align-items: flex-start; flex-direction: column; gap: 1.75rem; }
  .booking-banner-link { width: 100%; }
  .booking-dialog { width: 100%; max-height: 100svh; }
  .booking-dialog-shell { min-height: 100svh; grid-template-columns: 1fr; }
  .booking-dialog-intro { min-height: auto; padding: 3.5rem 1.5rem 2rem; }
  .booking-dialog-intro h2 { max-width: 8ch; }
  .booking-dialog-help { margin-top: 0; padding-top: 1.75rem; }
  .booking-dialog-alternative { margin-top: 1.75rem; padding-top: 0; }
  .booking-widget-panel { padding: 2rem 0.5rem 1rem; }
  .booking-widget-slot { min-height: 42rem; }
  .site-footer { width: 100%; min-width: 0; height: auto; align-items: center; flex-wrap: wrap; font-size: 0.56rem; gap: 1rem; padding: 1.5rem 0; }
  .footer-nav {
    order: -1;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    row-gap: 1rem;
    column-gap: 0.5rem;
    padding-bottom: 0.9rem;
  }
  .footer-nav a { min-width: 0; line-height: 1.4; text-align: left; overflow-wrap: anywhere; }
  .footer-nav a:nth-child(3n) { text-align: right; }
  .site-footer p:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
