/* Compact header, smaller headings and full-screen menu overlay. */
body.menu-overlay-open {
  overflow: hidden;
}

.site-header {
  min-height: 68px;
  padding: 0 4vw;
  grid-template-columns: 1fr auto;
}

.brand,
.site-header .mobile-menu-toggle {
  position: relative;
  z-index: 22;
}

.brand-mark {
  width: 38px;
  height: 38px;
  font-size: 21px;
}

.site-header > .header-cta {
  display: none;
}

.site-header.is-mobile-ready .mobile-menu-toggle {
  color: var(--ink);
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 9px;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 5px;
}

.mobile-menu-toggle span {
  background: currentColor;
  width: 24px;
  height: 2px;
  display: block;
  transition: transform .22s ease, opacity .18s ease;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.is-mobile-ready nav {
  background: var(--paper);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  z-index: 21;
  top: 68px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: clamp(35px, 7vh, 85px) 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.site-header.is-mobile-ready.menu-open nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header nav a,
.site-header .booking-nav {
  color: var(--ink);
  text-align: center;
  letter-spacing: -.02em;
  background: transparent;
  border: 0;
  width: auto;
  padding: 8px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
}

.site-header nav a:hover,
.site-header .booking-nav:hover {
  color: var(--terracotta);
}

.site-header nav .overlay-cta {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--pine);
  margin-top: 24px;
  padding: 14px 22px;
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

/* Reduce the large display headings by roughly one third. */
h2 {
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 1.04;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.7vw, 6.35rem);
  line-height: 1;
}

.detail-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 1;
}

.legal-hero h1 {
  font-size: clamp(3rem, 6.7vw, 6.35rem);
  line-height: 1;
}

.inclusive h2,
.location-card h2,
.detail-price h2 {
  font-size: clamp(2.5rem, 4vw, 4.35rem);
}

.legal-copy h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
}

.hero-content {
  max-width: 760px;
}

.hero-actions {
  margin-top: 24px;
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  h1,
  h2,
  h3,
  p,
  li,
  dt,
  dd,
  span,
  strong,
  a {
    min-width: 0;
  }

  h1,
  h2,
  h3,
  p,
  li,
  dt,
  dd {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .site-header {
    min-height: 44px;
    height: 44px;
    padding: 0 12px;
    position: sticky;
    top: 0;
  }

  .detail-header {
    position: relative;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .site-header.is-mobile-ready .mobile-menu-toggle {
    width: 34px;
    height: 34px;
    padding: 6px;
    gap: 4px;
  }

  .mobile-menu-toggle span {
    width: 22px;
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header.is-mobile-ready nav {
    top: 44px;
    padding: 28px 18px;
  }

  .site-header nav a,
  .site-header .booking-nav {
    padding: 7px 12px;
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .site-header nav .overlay-cta {
    margin-top: 18px;
    padding: 12px 18px;
    font-size: 10px;
  }

  h2,
  .inclusive h2,
  .location-card h2,
  .detail-price h2 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .hero {
    height: calc(100svh - 44px);
  }

  .hero h1,
  .detail-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    overflow-wrap: break-word;
  }

  .hero-content,
  .detail-hero-copy,
  .legal-hero,
  .section,
  .detail-gallery-section,
  .detail-price,
  .legal-content,
  .price-row,
  .price-amount,
  .price-extras > div,
  .detail-price-card dl > div {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.is-mobile-ready nav,
  .mobile-menu-toggle span {
    transition: none;
  }
}
