:root {
  --ink: #1f3f3b;
  --nav-text: #356f6b;
  --ink-button: #276a6d;
  --muted: #68716b;
  --paper: #fbfaf7;
  --soft: #f1eee8;
  --line: #ded8cc;
  --olive: #62745d;
  --teal: #276a6d;
  --clay: #b66f4f;
  --gold: #d9b76f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 32, 28, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 10px 30px rgba(23, 32, 28, .08);
}

.brand img {
  width: 235px;
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: contrast(1.18) saturate(1.22);
}

.brand {
  position: relative;
  display: block;
  width: 235px;
  height: 58px;
  flex: 0 0 auto;
}

.brand img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--nav-text);
  font-size: .92rem;
  font-weight: 650;
}

.site-nav a,
.lang-switch {
  border: 0;
  background: transparent;
  color: var(--nav-text);
  cursor: pointer;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-book {
  padding: 9px 14px;
  border: 1px solid rgba(51, 70, 63, .18);
  border-radius: 8px;
  background: var(--ink-button);
  color: rgba(255, 255, 255, .92) !important;
}

.site-nav .nav-book::after {
  display: none;
}

.phone-link {
  color: var(--teal) !important;
}

.lang-switch {
  min-width: 42px;
  padding: 7px 10px;
  border: 1px solid rgba(23, 32, 28, .18);
  border-radius: 8px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 32, 28, .16);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-bg-next,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -5;
  background-image: url("assets/photos/home1.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  opacity: 1;
}

.hero-bg-next {
  z-index: -4;
  opacity: 0;
  transition: opacity 1.7s ease;
}

.hero.is-photo-fading .hero-bg-next {
  opacity: 1;
}

.hero-video {
  z-index: -3;
  overflow: hidden;
  background: var(--ink);
  opacity: 1;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-video:not(.is-loaded) {
  opacity: 0;
  visibility: hidden;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero.video-ended .hero-video {
  opacity: 0;
  visibility: hidden;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .24) 48%, rgba(0, 0, 0, .12)),
    linear-gradient(0deg, rgba(23, 32, 28, .46), transparent 55%);
}

.hero-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 76px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4.7rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-tagline {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.65rem;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 650px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 1.08rem;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
}

.button-primary {
  background: var(--gold);
  color: #1f1b10;
}

.button-ghost {
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.section-band {
  padding: 88px 0;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.facts {
  padding: 28px 0;
  background: var(--ink-button);
  color: var(--white);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.fact {
  min-height: 150px;
  padding: 24px 22px;
  background: var(--ink-button);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fact span {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.fact p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.fact-icon {
  width: 31px;
  height: 31px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: .82;
}

.fact-booking {
  position: relative;
  overflow: hidden;
  background: var(--ink-button);
  isolation: isolate;
  transition: transform .2s ease;
}

.fact-booking::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 132px;
  height: 122px;
  border-radius: 24px;
  background: #0d3f88;
  transition: background .2s ease, transform .2s ease;
}

.fact-booking:hover {
  transform: translateY(-2px);
}

.fact-booking:hover::before {
  background: #0a3575;
  transform: scale(1.03);
}

.fact-booking .booking-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #fff;
  color: #0d3f88;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
}

.fact-booking p {
  color: #fff;
  font-weight: 800;
}

.fact-booking p::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-radius: 50%;
  background: #58a7ff;
  vertical-align: .12em;
}

.amenities {
  background: var(--soft);
  padding: 60px 0 58px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.section-heading.split p:not(.section-kicker) {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.amenity {
  min-height: 82px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.amenity img {
  width: 42px;
  height: 42px;
  transition: transform .22s ease;
}

.amenity:hover {
  border-color: rgba(39, 106, 109, .28);
  background: rgba(255, 255, 255, .82);
  transform: translateY(-3px) scale(1.015);
}

.amenity:hover img {
  transform: scale(1.08);
}

.security-note {
  margin: 16px 0 0;
  color: var(--muted);
}

.info-strip {
  padding: 64px 0 58px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-heading {
  max-width: 760px;
  margin: 0 0 30px;
  text-align: left;
}

.info-heading .section-kicker {
  margin-bottom: 6px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.info-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #050806;
}

.info-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item h3 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.facilities {
  background: var(--paper);
  padding-bottom: 32px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.facility-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.facility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .04));
}

.facility-card span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.facility-card:hover img {
  transform: scale(1.04);
}

.facility-card.is-active {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.facility-card {
  transition: outline-color .35s ease, outline-offset .35s ease, transform .35s ease;
}

.detail-section {
  padding: 42px 0 82px;
  background: var(--white);
  scroll-margin-top: 84px;
}

.detail-section.alt {
  background: #eef4f2;
}

.detail-section[data-facility-panel]:not(.is-active) {
  display: none;
}

.detail-section[data-facility-panel].is-active {
  animation: panelFadeIn .75s ease both;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.detail-grid.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.reverse .detail-copy {
  order: 2;
}

.detail-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.detail-copy > .section-kicker:first-child {
  display: none;
}

.detail-copy h3 {
  margin-top: 28px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
}

.detail-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-photos img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-photos img:first-child {
  grid-column: 1 / -1;
  height: 360px;
}

.gallery-section {
  background: var(--paper);
}

.gallery-section .section-kicker {
  margin-bottom: 0;
  color: var(--clay);
  font-size: 1.02rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.gallery-filters button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 88px;
  padding: 10px 13px;
  border: 1px solid rgba(23, 32, 28, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 12px 28px rgba(23, 32, 28, .08);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gallery-filters button:hover {
  border-color: rgba(39, 106, 109, .32);
  background: var(--white);
  color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(23, 32, 28, .1);
}

.gallery-filters button:focus-visible {
  outline: 3px solid rgba(217, 183, 111, .45);
  outline-offset: 2px;
}

.gallery-filters button.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 18px 38px rgba(39, 106, 109, .22);
}

.gallery-filter-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(31%) sepia(24%) saturate(1086%) hue-rotate(135deg) brightness(92%) contrast(87%);
  transition: filter .2s ease;
}

.gallery-filter-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.gallery-filters button.active .gallery-filter-icon {
  filter: brightness(0) invert(1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-more[hidden] {
  display: none;
}

.button-outline {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal);
}

.button-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--soft);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--teal);
  color: var(--white);
}

.booking-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.booking-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px min(8vw, 110px);
}

.booking-panel .section-kicker {
  color: var(--gold);
}

.booking-panel h2 {
  max-width: 560px;
}

.rates {
  background: var(--white);
}

.rates-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--paper);
}

.rates-table th,
.rates-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.rates-table th:first-child,
.rates-table td:first-child {
  text-align: left;
}

.rates-table thead th {
  background: var(--ink);
  color: var(--white);
}

.rates-table tbody td {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--teal);
}

.location {
  padding: 88px 0;
  background: var(--soft);
}

.location-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 36px;
  align-items: stretch;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.map-frame {
  position: relative;
  min-height: 420px;
}

.map-frame iframe,
.consent-placeholder {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe[hidden],
.consent-placeholder[hidden] {
  display: none;
}

.consent-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 38px;
  background: var(--paper);
  color: var(--ink);
}

.consent-placeholder h3,
.consent-placeholder p {
  margin: 0;
}

.consent-placeholder p {
  color: var(--muted);
}

.site-footer {
  padding: 58px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-cookie {
  display: block;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-cookie:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: min(940px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-banner p {
  margin: 0;
}

.cookie-banner h2 {
  font-size: 1.65rem;
}

.cookie-banner > div > p:last-child {
  margin-top: 8px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(23, 32, 28, .58);
}

.cookie-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 30px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.25rem;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cookie-option h3,
.cookie-option p {
  margin: 0;
}

.cookie-option h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.cookie-option p {
  color: var(--muted);
}

.cookie-option span {
  color: var(--teal);
  font-weight: 800;
}

.cookie-option input {
  width: 24px;
  height: 24px;
  accent-color: var(--teal);
}

.cookie-modal .cookie-actions {
  margin-top: 18px;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 58px;
  background: rgba(0, 0, 0, .88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 60px;
  transform: translateY(-50%);
  border-radius: 8px;
  font-size: 3rem;
  line-height: .8;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 1060px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .lang-switch {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .amenities-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .facility-grid,
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid,
  .detail-grid.reverse,
  .intro-grid,
  .info-grid,
  .location-grid,
  .booking,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reverse .detail-copy {
    order: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 172px;
    max-height: none;
  }

  .brand {
    width: 172px;
    height: 50px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(100% - 28px, 920px);
    padding-bottom: 52px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .section-band,
  .detail-section,
  .location {
    padding: 64px 0;
  }

  .facilities {
    padding-bottom: 28px;
  }

  .detail-section {
    padding-top: 34px;
  }

  .section-heading.split {
    display: block;
  }

  .gallery-section .section-kicker {
    max-width: 100%;
    font-size: .95rem;
  }

  .gallery-filters {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 18px;
  }

  .gallery-filters button {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    min-height: 46px;
    gap: 8px;
    padding: 10px 10px;
    font-size: .86rem;
  }

  .gallery-filter-icon {
    width: 20px;
    height: 20px;
  }

  .amenities-grid,
  .gallery-grid,
  .facts-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    min-height: 210px;
  }

  .detail-photos img,
  .detail-photos img:first-child {
    height: 230px;
  }

  .booking-panel {
    padding: 54px 20px;
  }

  .booking-image {
    min-height: 320px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 20px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 100%;
  }

  .cookie-modal-panel {
    padding: 24px 18px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 64px 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
