:root {
  --black: #0B0D0F;
  --charcoal: #292D31;
  --slate: #596673;
  --ocean: #28627D;
  --deep: #153B4F;
  --mist: #E8EDF0;
  --paper: #F6F8F9;
  --white: #FFFFFF;
  --line: rgba(41, 45, 49, .14);
  --shadow-sm: 0 12px 34px rgba(11, 13, 15, .08);
  --shadow-lg: 0 28px 80px rgba(11, 13, 15, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 82px;
  --serif: Georgia, Cambria, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img, picture { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--ocean); text-underline-offset: .18em; }
a:hover { color: var(--deep); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--black);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.02;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.45rem, 5vw, 4.8rem); }
h3 { color: var(--charcoal); font-size: 1.28rem; line-height: 1.25; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: .75rem 1rem;
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #55A9CD;
  outline-offset: 4px;
}

.eyebrow {
  margin-bottom: .75rem;
  color: var(--ocean);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .20em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-light { color: #83C5E0; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .86rem 1.22rem;
  border: 2px solid var(--ocean);
  border-radius: 7px;
  background: var(--ocean);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--white);
  transform: translateY(-2px);
}
.button-small { min-height: 42px; padding: .72rem 1rem; font-size: .92rem; }
.button-ghost {
  border-color: rgba(255,255,255,.72);
  background: rgba(11,13,15,.15);
  backdrop-filter: blur(7px);
}
.button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--deep); }
.button-outline { background: transparent; color: var(--deep); }
.button-dark { border-color: var(--black); background: var(--black); }
.button-dark:hover { border-color: var(--deep); background: var(--deep); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.centered-buttons { justify-content: center; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 249, .94);
  backdrop-filter: blur(15px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: block; flex: 0 1 270px; }
.brand img { width: min(270px, 100%); height: auto; }
.primary-nav { display: flex; align-items: center; gap: 25px; }
.primary-nav > a:not(.button) {
  color: var(--charcoal);
  font-size: .92rem;
  font-weight: 760;
  text-decoration: none;
}
.primary-nav > a:not(.button):hover { color: var(--ocean); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
}
.menu-bars { width: 24px; display: grid; gap: 5px; }
.menu-bars span { height: 2px; border-radius: 3px; background: currentColor; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 50% 48%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,9,12,.90) 0%, rgba(8,18,23,.74) 38%, rgba(8,18,23,.18) 72%, rgba(8,18,23,.32) 100%),
    linear-gradient(0deg, rgba(4,9,12,.64) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(90px, 14vh, 160px) 100px;
}
.hero h1 { max-width: 830px; margin-bottom: 1.3rem; color: var(--white); }
.hero-lead {
  max-width: 700px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  width: 42px;
  height: 62px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 30px;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll-dot 2s infinite;
}
@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 25px); }
  100% { opacity: 0; }
}

.highlights { background: var(--white); border-bottom: 1px solid var(--line); }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.highlight {
  min-height: 158px;
  display: grid;
  align-content: center;
  padding: 28px;
  border-left: 1px solid var(--line);
}
.highlight:last-child { border-right: 1px solid var(--line); }
.highlight-number { margin-bottom: .7rem; color: var(--ocean); font-size: .72rem; font-weight: 850; letter-spacing: .18em; }
.highlight strong { margin-bottom: .2rem; color: var(--black); font-size: 1.05rem; }
.highlight span:last-child { color: var(--slate); font-size: .9rem; line-height: 1.45; }

.section { padding-block: clamp(78px, 10vw, 132px); }
.section-mist { background: var(--mist); }
.section-charcoal { background: var(--charcoal); color: rgba(255,255,255,.77); }
.section-charcoal h2, .section-charcoal h3 { color: var(--white); }

.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
  margin-bottom: 70px;
}
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading.centered { margin-inline: auto; margin-bottom: 52px; text-align: center; }
.section-heading.narrow { max-width: 760px; }
.split-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}
.split-heading > p { max-width: 430px; color: var(--slate); }
.prose { color: var(--slate); }
.prose-large { font-size: 1.12rem; }
.prose > * + * { margin-top: 1.25em; }

.feature-image-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
}
.image-story {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.image-frame, .image-frame img { width: 100%; height: 100%; }
.image-story-large .image-frame { min-height: 610px; }
.image-story-small .image-frame { min-height: 610px; }
.image-frame img { object-fit: cover; }
.image-story-large .image-frame img { object-position: 54% 50%; }
.image-story-small .image-frame img { object-position: 50% 50%; }
.image-story-copy {
  position: absolute;
  inset: auto 20px 20px;
  max-width: 470px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  background: rgba(11,13,15,.78);
  color: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
}
.image-story-copy h3 { margin-bottom: .4rem; color: var(--white); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.image-story-copy p:last-child { font-size: .94rem; }

.feature-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  padding: 30px 26px;
  border: 1px solid rgba(41,45,49,.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11,13,15,.045);
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ocean);
  font-size: 1.3rem;
}
.feature-card h3 { margin-bottom: .55rem; }
.feature-card p { color: var(--slate); font-size: .94rem; }
.disclosure-note {
  max-width: 920px;
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 26px;
  margin: 38px auto 0;
  padding: 24px 28px;
  border-left: 4px solid var(--ocean);
  background: rgba(255,255,255,.66);
}
.disclosure-note p { color: var(--slate); }

.photo-banner { position: relative; min-height: 690px; overflow: hidden; background: var(--black); }
.photo-banner-picture, .photo-banner-picture img { width: 100%; height: 100%; }
.photo-banner-picture { position: absolute; inset: 0; }
.photo-banner-picture img { object-fit: cover; object-position: 50% 46%; }
.photo-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,13,15,.62), transparent 55%); }
.photo-banner-caption {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100% - var(--container)) / 2));
  bottom: 48px;
  color: var(--white);
}
.photo-banner-caption span { display: block; margin-bottom: .25rem; font-size: .76rem; font-weight: 850; letter-spacing: .19em; text-transform: uppercase; }
.photo-banner-caption strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; }

.explore-section { position: relative; overflow: hidden; background: var(--deep); color: rgba(255,255,255,.79); }
.explore-section::before, .booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image: url("../images/social-share.svg");
  background-size: cover;
  background-position: center;
}
.explore-grid { position: relative; display: grid; grid-template-columns: 1fr .95fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.explore-art { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.explore-art img { width: 100%; min-height: 520px; object-fit: cover; }
.placeholder-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: .42rem .66rem;
  border-radius: 4px;
  background: rgba(11,13,15,.76);
  color: var(--white);
  font-size: .72rem;
  font-weight: 750;
}
.explore-copy h2 { color: var(--white); }
.experience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.experience-list li {
  position: relative;
  padding: 13px 14px 13px 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  background: rgba(255,255,255,.055);
  color: var(--white);
  font-size: .92rem;
  font-weight: 720;
}
.experience-list li::before { content: "—"; position: absolute; left: 13px; color: #83C5E0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}
.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 13px;
  background: var(--charcoal);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  text-decoration: none;
}
.gallery-item-wide { grid-column: span 8; }
.gallery-item-tall { grid-row: span 2; }
.gallery-picture, .gallery-picture img { width: 100%; height: 100%; }
.gallery-picture img { object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover .gallery-picture img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(11,13,15,.68)); }
.gallery-item > span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.equipped-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: center; }
.equipped-copy p { max-width: 500px; }
.tick-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin: 28px 0 0; padding: 0; list-style: none; }
.tick-list li { position: relative; padding-left: 24px; color: var(--white); }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: #83C5E0; font-weight: 900; }
.detail-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.detail-photo, .detail-photo img { width: 100%; height: 100%; }
.detail-photo { min-height: 270px; overflow: hidden; border-radius: 12px; }
.detail-photo img { object-fit: cover; }
.detail-photo-wide { grid-column: 1 / -1; min-height: 300px; }

.booking-section { position: relative; overflow: hidden; background: var(--deep); color: rgba(255,255,255,.78); }
.booking-intro-grid, .form-shell, .payment-note { position: relative; }
.booking-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; margin-bottom: 52px; }
.booking-intro h2 { color: var(--white); }
.important-copy { padding-left: 18px; border-left: 3px solid #83C5E0; color: var(--white); font-weight: 700; }
.booking-steps { margin: 0; padding: 0; list-style: none; }
.booking-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.booking-steps li:first-child { padding-top: 0; }
.booking-steps li > span {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
  color: #83C5E0; font-weight: 850;
}
.booking-steps strong { color: var(--white); }
.booking-steps p { margin-top: .2rem; font-size: .92rem; }

.form-shell {
  padding: clamp(25px, 5vw, 62px);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-lg);
}
.booking-form { max-width: 1000px; margin-inline: auto; }
.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 36px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.form-heading h3 { margin-bottom: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; }
.form-note { color: var(--slate); font-size: .84rem; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 23px; }
.field { display: grid; align-content: start; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label, .field-label { color: var(--charcoal); font-size: .9rem; font-weight: 780; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 50px;
  padding: .78rem .85rem;
  border: 1px solid #9CA8B0;
  border-radius: 7px;
  background: var(--white);
  color: var(--black);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(40,98,125,.14); outline: none; }
.field small { color: var(--slate); font-size: .78rem; }
.field-nights {
  padding: 15px 17px;
  border-radius: 7px;
  background: var(--mist);
}
.field-nights output { color: var(--deep); font-size: 1.12rem; font-weight: 850; }
.consent-group { margin: 34px 0 0; padding: 0; border: 0; }
.consent-group legend { margin-bottom: 14px; color: var(--charcoal); font-weight: 850; }
.checkbox { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin-top: 13px; color: var(--slate); font-size: .88rem; }
.checkbox input { width: 19px; height: 19px; margin-top: 4px; accent-color: var(--ocean); }
.form-submit {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.form-submit p { max-width: 510px; color: var(--slate); font-size: .84rem; }
.noscript-note { margin-top: 20px; padding: 12px; background: #fff4d8; color: var(--black); }

.payment-note {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  margin-top: 50px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.payment-note h3 { margin: 0; color: var(--white); font-family: var(--serif); font-size: 2rem; font-weight: 400; }

.site-footer { padding: 65px 0 25px; background: var(--black); color: rgba(255,255,255,.67); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.footer-brand img { width: min(380px, 100%); margin-bottom: 22px; }
.footer-brand p { max-width: 460px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.footer-links a { color: rgba(255,255,255,.8); font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-bottom p { max-width: 520px; font-size: .76rem; }

.page-hero { position: relative; overflow: hidden; padding: 105px 0 92px; background: var(--deep); color: rgba(255,255,255,.78); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: url("../images/social-share.svg") center/cover; opacity: .12; }
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1 { margin-bottom: 1rem; color: var(--white); font-size: clamp(3.4rem, 7vw, 6.3rem); }
.page-hero p:last-child { max-width: 760px; font-size: 1.1rem; }
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-height) + 25px); display: grid; gap: 10px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.legal-nav strong { margin-bottom: 8px; color: var(--black); }
.legal-nav a { font-size: .9rem; }
.legal-prose { max-width: 800px; }
.legal-prose h2 { margin: 2.1em 0 .55em; color: var(--black); font-family: var(--serif); font-size: 2rem; letter-spacing: -.025em; }
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose ul { padding-left: 1.25rem; }
.owner-warning { margin-bottom: 35px; padding: 21px 23px; border-left: 4px solid var(--ocean); background: var(--mist); color: var(--charcoal); }
.owner-warning p { margin-top: .4rem; }

.confirmation-page { min-height: 72vh; display: grid; place-items: center; padding: 80px 0; background: var(--mist); }
.confirmation-card {
  max-width: 850px;
  padding: clamp(40px, 8vw, 90px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.confirmation-card > img { width: 88px; margin: 0 auto 25px; }
.confirmation-card h1 { margin-bottom: 1.2rem; font-size: clamp(3rem, 6vw, 5.3rem); }
.confirmation-card p { max-width: 680px; margin-inline: auto; color: var(--slate); }
.confirmation-card .button-row { margin-top: 30px; }
.error-code { margin-bottom: 0 !important; color: var(--ocean) !important; font-size: 5rem; font-weight: 900; line-height: 1; }

.lightbox {
  width: min(1100px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.lightbox::backdrop { background: rgba(5,8,10,.87); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 13px 55px 15px 18px; font-size: .84rem; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(11,13,15,.75);
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 980px) {
  :root { --header-height: 72px; }
  .container { width: min(var(--container), calc(100% - 34px)); }
  .brand { flex-basis: 225px; }
  .menu-toggle { display: flex; align-items: center; gap: 11px; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 17px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(11,13,15,.13);
    transform-origin: top;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(.94);
    transition: opacity .17s ease, transform .17s ease, visibility .17s;
  }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: scaleY(1); }
  .primary-nav > a { padding: 13px 10px; }
  .primary-nav .button { margin-top: 7px; }
  .hero { min-height: 760px; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,9,12,.88), rgba(4,9,12,.43)), linear-gradient(0deg, rgba(4,9,12,.58), transparent 55%); }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight:nth-child(3) { border-top: 1px solid var(--line); }
  .highlight:nth-child(4) { border-top: 1px solid var(--line); }
  .split-layout, .explore-grid, .equipped-grid, .booking-intro-grid { grid-template-columns: 1fr; }
  .split-layout { margin-bottom: 50px; }
  .feature-image-grid { grid-template-columns: 1fr; }
  .image-story-small .image-frame, .image-story-large .image-frame { min-height: 560px; }
  .feature-card-grid { grid-template-columns: 1fr 1fr; }
  .photo-banner { min-height: 590px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 330px; }
  .gallery-item, .gallery-item-wide, .gallery-item-tall { grid-column: auto; grid-row: auto; }
  .gallery-item:first-child { grid-column: 1 / -1; }
  .equipped-grid { gap: 45px; }
  .payment-note { grid-template-columns: 1fr; gap: 10px; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .brand { flex-basis: 182px; }
  .menu-toggle-label { display: none; }
  .hero { min-height: 720px; }
  .hero-media img { object-position: 57% 50%; }
  .hero-content { padding-bottom: 75px; }
  .hero-scroll { display: none; }
  .button-row .button { width: 100%; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight { min-height: 125px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section { padding-block: 75px; }
  .feature-image-grid { width: 100%; }
  .image-story-small .image-frame, .image-story-large .image-frame { min-height: 520px; }
  .image-story-copy { inset: auto 12px 12px; padding: 18px; }
  .feature-card-grid { grid-template-columns: 1fr; }
  .disclosure-note { grid-template-columns: 1fr; gap: 8px; }
  .photo-banner { min-height: 490px; }
  .photo-banner-picture img { object-position: 45% 50%; }
  .experience-list, .tick-list { grid-template-columns: 1fr; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-item:first-child { grid-column: auto; }
  .detail-photo-grid { grid-template-columns: 1fr; }
  .detail-photo-wide { grid-column: auto; }
  .form-shell { width: 100%; border-radius: 0; }
  .form-heading { display: block; }
  .form-note { margin-top: 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-submit { display: grid; }
  .form-submit .button { width: 100%; }
  .booking-steps li { grid-template-columns: 44px 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 10px; }
  .page-hero { padding: 75px 0 65px; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-nav strong { grid-column: auto; }
  .confirmation-card { border-radius: 14px; }
}

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

/* Explore image carousel */
.explore-slider {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.explore-slides {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.explore-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity .65s ease, transform 1.2s ease, visibility .65s;
}

.explore-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.explore-slide[hidden] {
  display: block;
}

.explore-slide picture,
.explore-slide img {
  width: 100%;
  height: 100%;
}

.explore-slide img {
  min-height: 560px;
  object-fit: cover;
}

.explore-slide::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(7, 13, 17, .88));
  pointer-events: none;
}

.explore-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 25px;
  left: 24px;
  color: var(--white);
}

.explore-slide figcaption span {
  display: block;
  margin-bottom: .35rem;
  color: #9BD4EB;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.explore-slide figcaption strong {
  display: block;
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.explore-slider-controls {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(11, 13, 15, .70);
  backdrop-filter: blur(9px);
}

.explore-slider-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: background .18s ease, color .18s ease;
}

.explore-slider-arrow:hover {
  background: var(--white);
  color: var(--deep);
}

.explore-slider-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.explore-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: width .18s ease, border-radius .18s ease, background .18s ease;
}

.explore-slider-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: #83C5E0;
}

@media (max-width: 680px) {
  .explore-slides,
  .explore-slide img {
    min-height: 460px;
  }

  .explore-slider-controls {
    top: 12px;
    right: 12px;
  }

  .explore-slide figcaption {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .explore-slide {
    transition: none;
  }
}

