:root {
  --navy: #063a4a;
  --navy-deep: #032c39;
  --teal: #0c7c82;
  --aqua: #31b9b1;
  --aqua-soft: #dff5f0;
  --coral: #f4765a;
  --sun: #f7c84b;
  --sand: #fff7e9;
  --paper: #fffdf8;
  --ink: #123a43;
  --muted: #5b7276;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 48, 61, .14);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open,
body.dialog-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
.screen-reader-text,
.skip-link:not(:focus) {
  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:focus {
  position: fixed;
  z-index: 999;
  left: 12px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: white;
}
.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(4.2rem, 8.5vw, 8.2rem); }
h2 { font-size: clamp(3rem, 6vw, 5.6rem); }
h3 { font-size: 2rem; }
h1 em, h2 em {
  color: var(--coral);
  font-weight: 400;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--sun);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow-teal { color: var(--teal); }
.lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  line-height: 1.48;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(5, 71, 78, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(5, 71, 78, .25);
}
.button-small { min-height: 42px; padding-inline: 20px; }
.button-coral { background: var(--coral); }
.button-sun { background: var(--sun); color: var(--navy-deep); }
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding: 8px 0 5px;
  background: none;
  color: white;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { font-size: 1.25rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link-dark { color: var(--teal); border-color: rgba(12,124,130,.35); }

.site-header {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 16px max(28px, calc((100vw - 1400px) / 2));
  color: white;
  transition: background .25s ease, box-shadow .25s ease, min-height .25s ease;
}
.site-header.scrolled {
  min-height: 70px;
  background: rgba(3,44,57,.94);
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  width: 49px;
  height: 49px;
  overflow: visible;
  fill: none;
  stroke: var(--sun);
  stroke-linecap: round;
  stroke-width: 3.5;
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -.03em;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.76);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}
.site-nav > a:not(.button) {
  position: relative;
  color: white;
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--sun);
  transition: right .2s ease;
}
.site-nav > a:not(.button):hover::after { right: 0; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  animation: hero-in 1.4s ease both;
}
@keyframes hero-in { from { transform: scale(1.05); opacity: .72; } }
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,35,46,.9) 0%, rgba(3,44,57,.68) 39%, rgba(3,44,57,.08) 72%),
    linear-gradient(0deg, rgba(2,38,49,.62), transparent 42%);
}
.sun-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}
.sun-orbit-one { width: 490px; height: 490px; right: -130px; top: 12%; }
.sun-orbit-two { width: 690px; height: 690px; right: -230px; top: 1%; }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 48px));
  padding: clamp(180px, 22vh, 245px) 0 160px max(28px, calc((100vw - 1400px) / 2));
}
.hero h1 { margin-bottom: 28px; text-shadow: 0 4px 28px rgba(0,0,0,.18); }
.hero h1 em { color: var(--sun); }
.hero-copy {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero-badge {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - 1400px) / 2));
  bottom: 44px;
  display: grid;
  grid-template-columns: auto auto 1px auto auto 1px auto auto;
  align-items: baseline;
  gap: 7px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 18px;
  background: rgba(3,44,57,.52);
  backdrop-filter: blur(12px);
}
.hero-badge strong { color: var(--sun); font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; }
.hero-badge span { font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-badge i { width: 1px; height: 27px; margin-inline: 8px; background: rgba(255,255,255,.3); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 48px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.7);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.intro {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  padding-block: 140px;
}
.intro-copy h2 { margin-bottom: 32px; }
.intro-copy > p:not(.eyebrow) { color: var(--muted); }
.intro-copy .lead { color: var(--ink); }
.intro-copy .text-link { margin-top: 16px; }
.intro-images { position: relative; min-height: 650px; }
.photo-card {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.photo-card img { height: 100%; object-fit: cover; }
.photo-card-main { position: absolute; inset: 0 75px 65px 0; }
.photo-card-main figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  max-width: 230px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}
.photo-card-float {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 260px;
  height: 220px;
  border: 9px solid var(--paper);
  transform: rotate(3deg);
}
.doodle-sun {
  position: absolute;
  top: -40px;
  right: 6px;
  color: var(--coral);
  font-size: 5rem;
  line-height: 1;
  transform: rotate(12deg);
}

.feature-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--teal);
  color: white;
}
.feature-ribbon article {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 26px clamp(24px, 3vw, 50px);
  border-right: 1px solid rgba(255,255,255,.2);
}
.feature-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: var(--sun);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}
.feature-ribbon strong { display: block; font-family: Georgia, serif; font-size: 1.12rem; font-weight: 500; }
.feature-ribbon small { display: block; margin-top: 3px; color: rgba(255,255,255,.7); font-size: .76rem; }

.stay { padding-block: 140px; }
.section-heading { max-width: 760px; margin-bottom: 60px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 24px; }
.section-heading > p:last-child { max-width: 610px; margin-inline: auto; color: var(--muted); font-size: 1.08rem; }
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stay-card {
  overflow: hidden;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgba(6,58,74,.1);
  transition: transform .25s ease;
}
.stay-card:hover { transform: translateY(-7px); }
.stay-card img { height: 270px; object-fit: cover; }
.stay-card > div { padding: 24px 24px 28px; }
.stay-card span {
  color: var(--teal);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.stay-card h3 { margin: 10px 0 12px; font-size: 1.7rem; }
.stay-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.amenity-board {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  margin-top: 70px;
  padding: 52px 58px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}
.amenity-board h3 { margin: 0 0 18px; color: white; font-size: clamp(2.4rem, 4vw, 3.5rem); }
.amenity-board-copy > p:last-child { max-width: 330px; color: rgba(255,255,255,.7); }
.amenity-board ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 24px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.amenity-board li { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.88); }
.amenity-board li span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: rgba(49,185,177,.2); color: var(--sun); font-size: .72rem; }

.gallery-section { padding: 130px 0 0; overflow: hidden; background: var(--navy-deep); color: white; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 48px; }
.gallery-heading h2 { margin-bottom: 0; }
.gallery-heading h2 em { color: var(--sun); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr;
  grid-template-rows: 290px 290px;
  gap: 5px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #0b5260;
  cursor: zoom-in;
}
.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--aqua);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-tile:hover img { transform: scale(1.045); }
.gallery-tile:hover::after { opacity: .12; }
.gallery-wide { grid-row: 1 / 3; }
.gallery-tall { grid-row: 1 / 3; grid-column: 3; }

.explore {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
  padding-block: 150px;
}
.explore-visual { position: relative; }
.explore-visual img { height: 680px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.explore-stamp {
  position: absolute;
  right: -35px;
  bottom: 40px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  align-content: center;
  border: 4px double rgba(255,255,255,.65);
  border-radius: 50%;
  background: var(--coral);
  color: white;
  text-align: center;
  transform: rotate(-8deg);
}
.explore-stamp strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.explore-stamp span { font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.explore-copy h2 { margin-bottom: 30px; }
.explore-copy > p:not(.eyebrow) { color: var(--muted); }
.explore-list { margin-top: 38px; }
.explore-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(6,58,74,.13);
}
.explore-list article > span { color: var(--coral); font-family: Georgia, serif; }
.explore-list strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.12rem; font-weight: 500; }
.explore-list small { display: block; margin-top: 2px; color: var(--muted); }

.reviews { padding-block: 130px; background: var(--aqua-soft); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-grid blockquote {
  margin: 0;
  padding: 34px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 45px rgba(6,58,74,.08);
}
.stars { margin-bottom: 24px; color: var(--coral); letter-spacing: .12em; }
.review-grid blockquote p { color: var(--ink); font-family: Georgia, serif; font-size: 1.15rem; line-height: 1.6; }
.review-grid footer { color: var(--teal); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 9vw, 130px);
  padding-block: 140px;
}
.faq-heading p:not(.eyebrow) { max-width: 390px; color: var(--muted); }
.faq-list details { border-top: 1px solid rgba(6,58,74,.17); }
.faq-list details:last-child { border-bottom: 1px solid rgba(6,58,74,.17); }
.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 18px;
  color: var(--coral);
  font-family: sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 650px; padding: 0 40px 22px 0; color: var(--muted); }

.availability {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.availability > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.availability-wash { position: absolute; inset: 0; background: linear-gradient(rgba(3,44,57,.64), rgba(3,44,57,.82)); }
.availability-content { position: relative; z-index: 2; width: min(900px, calc(100vw - 48px)); }
.availability h2 { margin-bottom: 24px; font-size: clamp(3.1rem, 6vw, 5.8rem); }
.availability h2 em { color: var(--sun); }
.availability-content > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 30px; color: rgba(255,255,255,.84); font-size: 1.1rem; }
.availability small { display: block; margin-top: 16px; color: rgba(255,255,255,.58); font-size: .7rem; }

.site-footer { padding: 70px max(28px, calc((100vw - 1180px) / 2)) 20px; background: var(--navy-deep); color: white; }
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 55px;
}
.footer-main > p { margin: 0; color: rgba(255,255,255,.64); }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 28px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .78rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--sun); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.47); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; }
.mobile-booking { display: none; }

.gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(2,25,32,.96);
  color: white;
}
.gallery-dialog[open] { display: grid; grid-template-columns: 70px 1fr 70px; place-items: center; }
.gallery-dialog::backdrop { background: rgba(2,25,32,.92); }
.gallery-dialog figure { width: min(1180px, calc(100vw - 180px)); margin: 0; }
.gallery-dialog figure img { max-height: 84vh; object-fit: contain; }
.gallery-dialog figcaption { padding-top: 12px; text-align: center; }
.gallery-close, .gallery-arrow {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}
.gallery-close { position: absolute; right: 24px; top: 14px; font-size: 2.5rem; }
.gallery-arrow { font-size: 2rem; }

.booking-notice {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  display: grid;
  max-width: 360px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--navy-deep);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}
.booking-notice.show { opacity: 1; transform: translateY(0); }
.booking-notice strong { color: var(--sun); }
.booking-notice span { color: rgba(255,255,255,.7); font-size: .82rem; }

.inner-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 170px max(24px, calc((100vw - 1180px) / 2)) 78px;
  background: var(--navy);
  color: white;
}
.inner-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,35,46,.88), rgba(3,44,57,.12) 78%); }
.inner-hero-content { position: relative; z-index: 2; width: min(840px, 100%); }
.breadcrumbs { display: flex; gap: 8px; align-items: center; margin-bottom: 24px; color: rgba(255,255,255,.7); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs a { color: var(--sun); text-decoration: none; }
.inner-hero h1 { margin-bottom: 18px; font-size: clamp(3.8rem, 7.5vw, 7rem); }
.inner-hero h1 em { color: var(--sun); }
.inner-hero-content > p:last-child { max-width: 670px; margin-bottom: 0; color: rgba(255,255,255,.82); font-size: 1.14rem; }
.page-intro { max-width: 850px; padding-block: 105px 75px; text-align: center; }
.page-intro h2 { margin-bottom: 24px; }
.page-intro p:last-child { max-width: 700px; margin-inline: auto; color: var(--muted); font-size: 1.08rem; }
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 95px); align-items: center; padding-block: 80px; }
.content-split.reverse .content-split-media { order: 2; }
.content-split-media { position: relative; min-height: 580px; }
.content-split-media > img { position: absolute; inset: 0; height: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.content-split-copy h2 { margin-bottom: 26px; }
.content-split-copy p:not(.eyebrow) { color: var(--muted); }
.detail-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; margin: 28px 0 0; padding: 0; list-style: none; }
.detail-points li { padding: 13px 15px; border-radius: 12px; background: var(--aqua-soft); color: var(--navy); font-size: .86rem; font-weight: 750; }
.page-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-block: 90px 120px; padding: 42px 48px; border-radius: var(--radius); background: var(--coral); color: white; box-shadow: var(--shadow); }
.page-cta h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.7rem); }
.page-cta p { max-width: 430px; margin: 10px 0 0; color: rgba(255,255,255,.8); }
.page-cta .button { flex: 0 0 auto; }
.gallery-page { width: min(1340px, calc(100vw - 30px)); margin: 0 auto 120px; }
.gallery-page-grid { columns: 3 320px; column-gap: 16px; }
.gallery-page-grid .gallery-tile { display: block; width: 100%; margin: 0 0 16px; border-radius: 16px; break-inside: avoid; }
.gallery-page-grid .gallery-tile img { height: auto; min-height: 220px; }
.gallery-page-note { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 35px; }
.gallery-page-note p { margin: 0; color: var(--muted); }
.activity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-bottom: 110px; }
.activity-card { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); color: white; box-shadow: var(--shadow); }
.activity-card > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.activity-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,35,46,.9), transparent 70%); }
.activity-card > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 36px; }
.activity-card h2 { margin-bottom: 14px; font-size: 2.75rem; }
.activity-card p { margin: 0; color: rgba(255,255,255,.8); }
.planning-band { padding-block: 100px; background: var(--aqua-soft); }
.planning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.planning-card { padding: 30px; border-radius: 20px; background: white; box-shadow: 0 16px 44px rgba(6,58,74,.08); }
.planning-card span { color: var(--coral); font-family: Georgia, serif; font-size: 2rem; }
.planning-card h3 { margin: 15px 0 12px; font-size: 1.7rem; }
.planning-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.faq-page .faq { padding-top: 85px; }
.faq-page .faq-list details { scroll-margin-top: 90px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-block: 100px 120px; }
.contact-card { min-height: 360px; padding: 45px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.contact-card.teal { background: var(--teal); color: white; }
.contact-card h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 4vw, 4rem); }
.contact-card p { color: var(--muted); }
.contact-card.teal p { color: rgba(255,255,255,.75); }
.contact-links { display: grid; gap: 12px; margin-top: 28px; }
.contact-links a { display: flex; align-items: center; justify-content: space-between; min-width: 0; overflow-wrap: anywhere; padding: 15px 18px; border: 1px solid rgba(6,58,74,.14); border-radius: 12px; color: var(--teal); font-weight: 800; text-decoration: none; }
.contact-card.teal .contact-links a { border-color: rgba(255,255,255,.25); color: white; }
.site-nav a[aria-current="page"]::after { right: 0 !important; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-nav { gap: 17px; }
  .site-nav > a:not(.button) { display: none; }
  .feature-ribbon { grid-template-columns: repeat(2, 1fr); }
  .feature-ribbon article:nth-child(2) { border-right: 0; }
  .feature-ribbon article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .intro { grid-template-columns: 1fr 1fr; gap: 50px; }
  .intro-images { min-height: 530px; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 34px, 620px); }
  body { padding-bottom: 62px; }
  h1 { font-size: clamp(3.7rem, 18vw, 5.4rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .site-header { min-height: 72px; padding: 11px 18px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand strong { font-size: 1.1rem; }
  .brand small { font-size: .56rem; }
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
  }
  .nav-toggle span:not(.screen-reader-text) { width: 19px; height: 2px; background: white; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 22px;
    background: var(--navy-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.button) { display: block; padding: 13px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav .button { margin-top: 15px; }
  .hero { min-height: 830px; }
  .hero-image { object-position: 60% 50%; }
  .hero-wash { background: linear-gradient(0deg, rgba(3,35,46,.92), rgba(3,44,57,.26) 78%); }
  .hero-content { display: flex; min-height: 760px; flex-direction: column; justify-content: flex-end; padding: 135px 18px 125px; }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-badge {
    left: 17px;
    right: 17px;
    bottom: 26px;
    grid-template-columns: auto auto 1px auto auto 1px auto auto;
    justify-content: center;
    gap: 5px;
    padding: 14px 10px;
  }
  .hero-badge strong { font-size: 1.25rem; }
  .hero-badge span { font-size: .56rem; }
  .hero-badge i { margin-inline: 4px; }
  .scroll-cue, .sun-orbit { display: none; }
  .intro, .explore, .faq { grid-template-columns: 1fr; }
  .intro { gap: 45px; padding-block: 90px; }
  .intro-images { min-height: 470px; }
  .photo-card-main { inset: 0 18px 42px 0; }
  .photo-card-float { right: -7px; width: 180px; height: 155px; }
  .feature-ribbon { grid-template-columns: 1fr; }
  .feature-ribbon article { min-height: 104px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stay { padding-block: 90px; }
  .stay-grid { grid-template-columns: 1fr; }
  .stay-card img { height: 250px; }
  .amenity-board { grid-template-columns: 1fr; gap: 18px; padding: 35px 25px; }
  .amenity-board ul { grid-template-columns: 1fr; }
  .gallery-section { padding-top: 90px; }
  .gallery-heading { display: block; }
  .gallery-heading .text-link { margin-top: 15px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 180px 180px; }
  .gallery-wide { grid-column: 1 / 3; grid-row: 1; }
  .gallery-tall { grid-column: auto; grid-row: auto; }
  .gallery-tile:nth-child(n+6) { display: none; }
  .explore { gap: 55px; padding-block: 95px; }
  .explore-visual img { height: 500px; }
  .explore-stamp { right: -5px; bottom: -30px; width: 125px; height: 125px; }
  .reviews { padding-block: 90px; }
  .review-grid blockquote { padding: 28px; }
  .faq { gap: 40px; padding-block: 90px; }
  .availability { min-height: 650px; }
  .availability h2 br { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .mobile-booking {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    min-height: 62px;
    place-items: center;
    background: var(--coral);
    color: white;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -8px 28px rgba(3,44,57,.18);
  }
  .gallery-dialog[open] { grid-template-columns: 42px 1fr 42px; }
  .gallery-dialog figure { width: calc(100vw - 90px); }
  .booking-notice { right: 14px; bottom: 76px; left: 14px; }
  .inner-hero { min-height: 540px; padding: 140px 18px 55px; }
  .inner-hero h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .page-intro { padding-block: 75px 45px; }
  .content-split { grid-template-columns: 1fr; padding-block: 55px; }
  .content-split.reverse .content-split-media { order: initial; }
  .content-split-media { min-height: 430px; }
  .detail-points { grid-template-columns: 1fr; }
  .page-cta { align-items: flex-start; flex-direction: column; margin-block: 55px 90px; padding: 32px 25px; }
  .gallery-page { width: calc(100vw - 22px); }
  .gallery-page-grid { columns: 2 150px; column-gap: 10px; }
  .gallery-page-grid .gallery-tile { display: block !important; margin-bottom: 10px; }
  .gallery-page-grid .gallery-tile img { min-height: 130px; }
  .gallery-page-note { align-items: flex-start; flex-direction: column; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card { min-height: 430px; }
  .planning-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding-block: 70px 90px; }
  .contact-card { min-height: auto; padding: 32px 25px; }
}

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