:root {
  --ink: #102f34;
  --ink-soft: #4b6264;
  --ocean: #0b3338;
  --ocean-deep: #06262b;
  --sea-glass: #75a6a3;
  --sea-mist: #dce8e3;
  --sand: #d8b47c;
  --sun: #e9b949;
  --ivory: #f5f1e8;
  --paper: #fffdf8;
  --line: rgba(16, 47, 52, 0.14);
  --white-line: rgba(255, 255, 255, 0.32);
  --shadow: 0 26px 70px rgba(6, 38, 43, 0.14);
  --radius-small: 14px;
  --radius: 24px;
  --radius-large: 38px;
  --shell: min(1240px, calc(100% - 48px));
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --promo-height: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 24%, rgba(117, 166, 163, 0.09), transparent 28rem),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ocean-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.promo-bar {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--promo-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(5, 34, 39, 0.9);
  box-shadow: 0 10px 26px rgba(5, 25, 29, 0.12);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  animation: promo-arrive 0.65s var(--ease) both;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}

body.promo-hidden .promo-bar {
  animation: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: var(--promo-height);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.015em;
}

.promo-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.promo-inner strong {
  color: #f1c776;
  font-size: 13px;
  font-weight: 600;
}

.promo-inner a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-inner a span:last-child {
  transition: transform 0.25s var(--ease);
}

.promo-inner a:hover span:last-child {
  transform: translateX(4px);
}

@keyframes promo-arrive {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: calc(var(--promo-height) + 10px);
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1380px, calc(100% - 36px));
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  color: #fff;
  background: rgba(7, 31, 35, 0.12);
  box-shadow: 0 14px 34px rgba(5, 25, 29, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transform: translateX(-50%);
  transition:
    top 0.35s var(--ease),
    color 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  top: calc(var(--promo-height) + 6px);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 42px rgba(6, 38, 43, 0.12);
}

body.promo-hidden .site-header,
body.promo-hidden .site-header.is-scrolled {
  top: 10px;
}

.brand {
  display: block;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 188px;
  height: auto;
  aspect-ratio: 315 / 60;
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo {
  filter: brightness(0) saturate(100%) invert(15%) sepia(15%) saturate(1444%) hue-rotate(137deg)
    brightness(92%) contrast(95%);
}

.brand-dark .brand-logo {
  filter: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 30px);
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.language-switch span {
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.5;
}

.language-switch .is-active {
  opacity: 1;
}

.language-switch span + span {
  border-left: 1px solid currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

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

.button-small {
  min-height: 48px;
  padding-inline: 21px;
}

.button-light {
  color: var(--ocean-deep);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled .button-light {
  color: #fff;
  background: var(--ocean);
}

.button-dark {
  color: #fff;
  background: var(--ocean);
  box-shadow: 0 14px 30px rgba(6, 38, 43, 0.16);
}

.button-dark:hover {
  background: var(--ocean-deep);
}

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

.button-outline:hover {
  color: #fff;
  background: var(--ocean);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: #fff;
  background: var(--ocean-deep);
  isolation: isolate;
}

.hero-image,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: 0;
  object-fit: cover;
  object-position: 55% center;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.14);
  will-change: transform;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 24, 28, 0.78) 0%, rgba(4, 24, 28, 0.42) 45%, rgba(4, 24, 28, 0.08) 76%),
    linear-gradient(0deg, rgba(4, 24, 28, 0.58) 0%, transparent 43%, rgba(4, 24, 28, 0.2) 100%);
}

.hero-grain {
  z-index: 2;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 860px;
  padding-top: 170px;
  padding-bottom: 138px;
}

@media (min-width: 1101px) {
  .hero-content {
    width: min(1380px, calc(100% - 36px));
  }
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--sea-glass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section-heading h2,
.editorial-copy h2,
.location-copy h2,
.closing-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(72px, 8.2vw, 132px);
}

h1 em,
h2 em {
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.text-link span:last-child {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span:last-child {
  transform: translateX(4px);
}

.text-link-light {
  color: #fff;
}

.glass-card {
  border: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(4, 24, 28, 0.16);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.hero-note {
  width: 260px;
  margin-bottom: 30px;
  padding: 24px;
  border-radius: var(--radius);
  transition:
    transform 0.4s var(--ease),
    background-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.hero-note-number {
  display: block;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
}

.hero-note p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 44px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.scroll-cue span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(#fff, transparent);
  animation: scroll-cue-pulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-cue-pulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleY(0.42);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.booking-wrap {
  position: relative;
  z-index: 5;
  margin-top: -65px;
}

.booking-bar {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.75fr auto;
  align-items: center;
  min-height: 130px;
  padding: 15px;
  border-color: rgba(255, 255, 255, 0.66);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow);
  transition:
    background-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.booking-intro {
  padding: 0 30px 0 18px;
}

.booking-intro .eyebrow {
  display: block;
  margin-bottom: 5px;
}

.booking-intro strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.booking-field {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 15px 22px;
  border-left: 1px solid var(--line);
  border-radius: 16px;
  transition:
    background-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.booking-field span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 36px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.booking-submit {
  align-self: stretch;
  min-width: 178px;
  border-radius: 18px;
  gap: 16px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 14px);
  padding: 70px 0 90px;
}

.facts article {
  position: relative;
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 62px;
  padding: 8px 28px;
  border: 1px solid rgba(16, 47, 52, 0.13);
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  transition:
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.facts article::before {
  display: none;
}

.facts strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}

.facts span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: 72px 0 150px;
}

.editorial-copy {
  padding-left: 40px;
}

.editorial-copy h2,
.section-heading h2,
.location-copy h2 {
  font-size: clamp(56px, 6vw, 90px);
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 34px 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
}

.editorial-collage {
  position: relative;
  min-height: 680px;
}

.image-card {
  position: relative;
  overflow: hidden;
  background: var(--sea-mist);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.has-image-error::before {
  position: absolute;
  inset: 12px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(16, 47, 52, 0.35);
  border-radius: inherit;
  color: var(--ink-soft);
  content: attr(data-placeholder);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.image-card:hover img,
.stay-card a:hover .image-card img {
  transform: scale(1.025);
}

.collage-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 610px;
  border-radius: var(--radius-large);
}

.collage-small {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 47%;
  height: 380px;
  border: 10px solid var(--ivory);
  border-radius: 30px;
}

.collage-caption {
  position: absolute;
  right: -18px;
  bottom: 52px;
  color: var(--sea-glass);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.stays-section {
  padding: 130px 0 140px;
  background: var(--paper);
}

.heading-split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.heading-aside {
  max-width: 410px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.heading-aside .text-link {
  margin-top: 24px;
}

.stay-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px 22px;
  margin-top: 72px;
}

.stay-card-large {
  grid-row: span 2;
}

.stay-card,
.service-card {
  transition:
    transform 0.45s var(--ease),
    filter 0.45s var(--ease);
}

.stay-image {
  position: relative;
  height: 355px;
  border-radius: var(--radius);
}

.stay-card-large .stay-image {
  height: 752px;
}

.stay-card-large .stay-image img {
  object-position: center;
}

.stay-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 37, 43, 0.24);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.image-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 37, 43, 0.28);
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease);
}

.stay-card a:hover .image-arrow {
  transform: rotate(10deg) translateY(-2px);
}

.stay-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 5px 0;
}

.stay-meta h3,
.service-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  transition: color 0.3s var(--ease);
}

.stay-meta p,
.service-card p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 12px;
}

.stay-meta > strong {
  flex: 0 0 auto;
  padding-top: 5px;
  font-size: 12px;
  font-weight: 600;
}

.price-note {
  margin-top: 35px;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: right;
}

.brand-break {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: #fff;
  background: var(--ocean-deep);
  isolation: isolate;
}

.brand-break > img,
.brand-break-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-break > img {
  z-index: 0;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.14);
  will-change: transform;
}

.brand-break-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 34, 39, 0.76), rgba(5, 34, 39, 0.12) 72%),
    linear-gradient(0deg, rgba(5, 34, 39, 0.3), transparent 60%);
}

.brand-break-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 780px;
}

.brand-break blockquote {
  max-width: 760px;
  margin: 15px 0 42px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: 0.98;
}

.brand-break .button {
  width: fit-content;
}

.services-section {
  padding: 145px 0 150px;
}

.services-section .heading-aside {
  margin-bottom: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 76px;
}

.service-card-offset {
  margin-top: 70px;
}

.service-image {
  position: relative;
  height: 510px;
  border-radius: var(--radius);
}

.service-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 34, 39, 0.25);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 600;
  transition:
    color 0.35s var(--ease),
    background-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.service-card h3 {
  margin-top: 18px;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 830px;
  background: var(--sea-mist);
}

.location-visual {
  min-height: 830px;
  overflow: hidden;
}

.location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.location-copy {
  display: grid;
  align-content: center;
  max-width: 620px;
  padding: 90px clamp(48px, 7vw, 120px);
}

.location-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 34px 0;
  color: var(--ink-soft);
}

.distance-list {
  margin-bottom: 35px;
  border-top: 1px solid var(--line);
}

.distance-list > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.3s var(--ease),
    padding 0.3s var(--ease);
}

.distance-list dt {
  font-family: var(--serif);
  font-size: 25px;
  transition: color 0.3s var(--ease);
}

.distance-list dd {
  align-self: center;
  color: var(--ink-soft);
  font-size: 13px;
}

.location-copy .text-link {
  width: fit-content;
}

.faq-section {
  padding: 140px 0;
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 9vw, 145px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(56px, 5.6vw, 86px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 445px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 15px;
}

.faq-intro .text-link {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 94px;
  padding: 24px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  list-style: none;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(16, 47, 52, 0.2);
  border-radius: 50%;
  transition:
    border-color 0.3s var(--ease),
    background-color 0.3s var(--ease),
    transform 0.35s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary {
  color: var(--ocean);
}

.faq-item[open] .faq-icon {
  border-color: var(--ocean);
  color: #fff;
  background: var(--ocean);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 680px;
  padding: 0 70px 28px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  animation: faq-answer-in 0.35s var(--ease) both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.closing-cta {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--ocean-deep);
}

.closing-cta > img,
.closing-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-cta > img {
  object-fit: cover;
  object-position: center 55%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.14);
  will-change: transform;
}

.closing-overlay {
  background: rgba(3, 29, 34, 0.54);
}

.closing-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 760px;
  text-align: center;
}

.closing-copy h2 {
  font-size: clamp(70px, 9vw, 138px);
}

.closing-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ocean-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) repeat(2, minmax(165px, 0.55fr));
  column-gap: clamp(52px, 6vw, 92px);
  align-items: start;
  padding-bottom: 44px;
}

.brand-dark {
  color: #fff;
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-primary {
  min-width: 0;
}

.footer-newsletter {
  max-width: 520px;
  margin-top: 28px;
}

.footer-newsletter .eyebrow {
  margin-bottom: 10px;
}

.footer-newsletter h2 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.newsletter-copy {
  max-width: 440px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.newsletter-form {
  margin-top: 18px;
}

.newsletter-field {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.newsletter-field:focus-within {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(117, 166, 163, 0.1);
}

.newsletter-field input {
  min-width: 0;
  min-height: 48px;
  padding: 0 8px 0 16px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
}

.newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.newsletter-field button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ocean-deep);
  background: var(--paper);
  cursor: pointer;
  transition:
    color 0.3s var(--ease),
    background-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.newsletter-field button:hover {
  color: #fff;
  background: var(--sea-glass);
  transform: rotate(-7deg) scale(1.04);
}

.newsletter-note,
.newsletter-status {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.newsletter-status:not(:empty) {
  color: #f1c776;
}

.footer-link-column {
  display: grid;
  align-content: start;
  justify-self: center;
  min-width: 120px;
  gap: 11px;
}

.footer-link-column strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-link-column a {
  position: relative;
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: color 0.28s var(--ease);
}

.footer-link-column a:hover {
  color: #fff;
}

.footer-link-column a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease);
}

.footer-link-column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 0.8s var(--ease) var(--reveal-delay, 0ms),
    filter 0.8s var(--ease) var(--reveal-delay, 0ms),
    transform 0.8s var(--ease) var(--reveal-delay, 0ms);
}

.motion-ready .reveal--left {
  transform: translate3d(-44px, 0, 0);
}

.motion-ready .reveal--right {
  transform: translate3d(44px, 0, 0);
}

.motion-ready .reveal--scale {
  transform: translate3d(0, 22px, 0) scale(0.965);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .brand-logo {
    transition:
      opacity 0.3s var(--ease),
      transform 0.3s var(--ease),
      filter 0.3s var(--ease);
  }

  .brand:hover .brand-logo {
    opacity: 0.82;
    transform: translateX(3px);
  }

  .language-switch:hover span {
    opacity: 0.82;
  }

  .button-light:hover {
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  }

  .hero-note:hover {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 70px rgba(4, 24, 28, 0.24);
    transform: translateY(-7px);
  }

  .booking-bar:hover {
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 30px 80px rgba(6, 38, 43, 0.18);
  }

  .booking-field:hover,
  .booking-field:focus-within {
    background: rgba(117, 166, 163, 0.1);
    transform: translateY(-2px);
  }

  .facts article:hover {
    color: var(--ocean);
    border-right-color: rgba(117, 166, 163, 0.48);
    border-left-color: rgba(117, 166, 163, 0.48);
    transform: translateY(-3px);
  }

  .editorial-collage:hover .collage-main {
    box-shadow: 0 26px 55px rgba(6, 38, 43, 0.16);
    transform: translateY(-7px);
  }

  .editorial-collage:hover .collage-small {
    box-shadow: 0 22px 44px rgba(6, 38, 43, 0.16);
    transform: translate3d(-5px, 5px, 0);
  }

  .stay-card:hover,
  .service-card:hover {
    filter: drop-shadow(0 20px 24px rgba(6, 38, 43, 0.1));
    transform: translateY(-9px);
  }

  .stay-card:hover .image-card img,
  .service-card:hover .image-card img {
    transform: scale(1.055);
  }

  .stay-card:hover h3,
  .service-card:hover h3 {
    color: var(--sea-glass);
  }

  .stay-card:hover .stay-badge,
  .service-card:hover .service-image span {
    color: var(--ocean-deep);
    background: rgba(255, 253, 248, 0.9);
    transform: rotate(-5deg) scale(1.06);
  }

  .location-visual:hover img {
    transform: scale(1.035);
  }

  .distance-list > div:hover {
    padding-right: 12px;
    padding-left: 12px;
    background: rgba(255, 255, 255, 0.38);
  }

  .distance-list > div:hover dt {
    color: var(--sea-glass);
  }

  .faq-item summary:hover {
    color: var(--ocean);
  }

  .faq-item summary:hover .faq-icon {
    border-color: var(--sea-glass);
    transform: rotate(8deg);
  }

  .faq-item[open] summary:hover .faq-icon {
    transform: rotate(45deg);
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 7px 18px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 67, 60, 0.86);
  box-shadow: 0 16px 32px rgba(5, 34, 39, 0.2);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: rgba(8, 82, 70, 0.94);
  box-shadow: 0 18px 38px rgba(5, 34, 39, 0.28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.42);
  outline-offset: 3px;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.16));
  overflow: hidden;
}

.whatsapp-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 36px, 980px);
  }

  .main-nav {
    gap: 18px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr 0.75fr auto;
  }

  .booking-intro {
    display: none;
  }

  .booking-field:first-of-type {
    border-left: 0;
  }

  .editorial-copy {
    padding-left: 0;
  }

  .stay-card-large .stay-image {
    height: 690px;
  }

  .service-image {
    height: 430px;
  }

  .location-copy {
    padding: 70px 48px;
  }

  .footer-top {
    grid-template-columns: minmax(380px, 1.15fr) repeat(2, minmax(130px, 0.55fr));
    gap: 36px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-large: 28px;
    --promo-height: 50px;
  }

  .promo-inner {
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }

  .promo-inner p {
    max-width: 245px;
  }

  .promo-inner strong {
    font-size: 12px;
  }

  .promo-inner a {
    max-width: 96px;
    font-size: 9px;
    line-height: 1.2;
  }

  .site-header {
    top: calc(var(--promo-height) + 8px);
    grid-template-columns: auto 1fr auto;
    min-height: 62px;
    padding: 7px 8px 7px 14px;
    border-radius: 18px;
  }

  body.promo-hidden .site-header,
  body.promo-hidden .site-header.is-scrolled {
    top: 8px;
  }

  .brand-logo {
    width: 148px;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    place-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.5);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.25s var(--ease),
      transform 0.25s var(--ease),
      visibility 0.25s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 27px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .header-actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 8px;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 770px;
  }

  .hero-content {
    align-items: flex-end;
    padding-top: 135px;
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(63px, 15vw, 94px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .scroll-cue {
    display: none;
  }

  .booking-wrap {
    margin-top: -62px;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 22px;
  }

  .booking-field {
    min-height: 74px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .booking-submit {
    min-height: 62px;
    grid-column: span 2;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 62px 0 75px;
  }

  .editorial-section {
    grid-template-columns: 1fr;
    padding: 55px 0 100px;
  }

  .editorial-collage {
    min-height: 610px;
  }

  .collage-main {
    width: 72%;
    height: 530px;
  }

  .collage-small {
    width: 48%;
    height: 330px;
  }

  .stays-section,
  .services-section {
    padding: 100px 0;
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stay-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stay-card-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .stay-card-large .stay-image {
    height: 580px;
  }

  .stay-image {
    height: 330px;
  }

  .stay-meta {
    display: grid;
  }

  .brand-break,
  .brand-break-copy {
    min-height: 650px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-image {
    height: 370px;
  }

  .location-section {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .location-copy {
    padding: 65px 30px;
  }

  .faq-section {
    padding: 100px 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro > p:not(.eyebrow) {
    max-width: 560px;
  }

  .closing-cta,
  .closing-copy {
    min-height: 650px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px 28px;
  }

  .footer-primary {
    grid-column: 1 / -1;
  }

  .footer-link-column {
    justify-self: start;
  }

  .footer-newsletter {
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 24, 28, 0.84) 0%, rgba(4, 24, 28, 0.38) 68%, rgba(4, 24, 28, 0.24) 100%),
      linear-gradient(90deg, rgba(4, 24, 28, 0.32), transparent);
  }

  .hero h1 {
    line-height: 0.94;
  }

  .hero-intro {
    font-size: 15px;
  }

  .button {
    min-height: 50px;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-submit {
    grid-column: auto;
  }

  .facts article {
    min-height: 88px;
    padding: 14px 18px;
    border-radius: 16px;
  }

  .facts strong {
    font-size: 31px;
  }

  .editorial-copy h2,
  .section-heading h2,
  .location-copy h2 {
    font-size: clamp(53px, 15vw, 72px);
  }

  .editorial-collage {
    min-height: 520px;
  }

  .collage-main {
    width: 82%;
    height: 440px;
  }

  .collage-small {
    width: 52%;
    height: 270px;
    border-width: 6px;
  }

  .collage-caption {
    display: none;
  }

  .stay-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .stay-card-large {
    grid-column: auto;
  }

  .stay-card-large .stay-image,
  .stay-image {
    height: 460px;
  }

  .stay-card-large .stay-image img {
    object-position: 56% center;
  }

  .price-note {
    text-align: left;
  }

  .brand-break,
  .brand-break-copy {
    min-height: 600px;
  }

  .brand-break > img {
    object-position: 56% center;
  }

  .brand-break blockquote {
    font-size: 52px;
  }

  .service-card-offset {
    margin-top: 0;
  }

  .service-image {
    height: 500px;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-visual {
    min-height: 540px;
  }

  .location-copy {
    padding: 78px 20px 90px;
  }

  .faq-section {
    padding: 82px 0;
  }

  .faq-intro h2 {
    font-size: clamp(53px, 15vw, 72px);
  }

  .faq-item summary {
    min-height: 80px;
    gap: 18px;
    padding: 20px 0;
    font-size: 25px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
  }

  .faq-answer {
    padding-right: 40px;
    font-size: 13px;
  }

  .closing-copy h2 {
    font-size: clamp(68px, 21vw, 104px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px 24px;
  }

  .footer-primary {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    margin-top: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
