@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --ink: #102e35;
  --ink-soft: #38545a;
  --deep: #073a44;
  --deepest: #052b33;
  --ocean: #0f6d78;
  --turquoise: #27bdbe;
  --turquoise-dark: #159a9d;
  --foam: #e7f6f4;
  --sand: #f4efe6;
  --sand-deep: #e7ddcc;
  --paper: #fbfaf6;
  --white: #fff;
  --cta: #27bdbe;
  --cta-dark: #159a9d;
  --line: rgba(16, 46, 53, 0.16);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1260px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(5rem, 9vw, 9rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  color: inherit;
}

::selection {
  color: var(--deepest);
  background: rgba(39, 189, 190, 0.35);
}

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--deepest);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--compact {
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
}

.section--sand {
  background: var(--sand);
}

.section--foam {
  background: var(--foam);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.2rem;
  color: var(--ocean);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.display-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-title {
  max-width: 18ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.section-title em {
  color: var(--turquoise-dark);
  font-style: italic;
  font-weight: 500;
}

.lead {
  max-width: 43rem;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.8rem;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 240ms var(--ease);
}

.text-link:hover::after {
  width: 3.4rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  color: var(--white);
  background: rgba(3, 31, 37, 0.18);
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
  transition:
    color 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  transition: opacity 240ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  height: 76px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 12px 36px rgba(5, 43, 51, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.is-scrolled::after,
.menu-open .site-header::after {
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - (2 * var(--gutter)), 1440px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  line-height: 1;
}

.brand__mark {
  width: 69px;
  height: 25px;
  object-fit: contain;
}

.brand__name {
  margin-top: -0.05rem;
  font-family: var(--serif);
  font-size: 0.91rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__sub {
  margin-top: 0.24rem;
  color: var(--turquoise);
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-header .brand {
  z-index: 102;
  display: grid;
  width: auto;
  column-gap: 0.8rem;
  grid-template-columns: 104px max-content;
  grid-template-rows: auto auto;
  justify-items: start;
}

.site-header .brand__mark {
  width: 104px;
  height: 38px;
  grid-row: 1 / 3;
}

.site-header .brand__name {
  align-self: end;
  margin-top: 0;
  font-size: 1.32rem;
  letter-spacing: 0.08em;
}

.site-header .brand__sub {
  align-self: start;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.site-nav {
  --header-action-gap: clamp(1rem, 1.5vw, 1.35rem);

  display: flex;
  align-items: center;
  gap: var(--header-action-gap);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--header-action-gap);
}

.header-contact-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__link + .site-nav__link {
  margin-left: clamp(0.3rem, 1vw, 1rem);
}

.site-nav__link {
  position: relative;
  padding-block: 0.55rem;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--turquoise);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 240ms var(--ease), opacity 180ms ease;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle::after {
  top: 28px;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--cta);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.button::after {
  display: grid;
  width: 1.72rem;
  height: 1.72rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background-image: url("../icons/arrow-outward.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.96rem;
  content: "";
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 260ms var(--ease);
}

.button:hover {
  background: var(--cta-dark);
  box-shadow: 0 14px 30px rgba(5, 88, 94, 0.2);
  transform: translateY(-2px);
}

.button:hover::after {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.12);
  transform: translate(2px, -2px);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
  background: transparent;
}

.button--outline::after {
  background-image: url("../icons/arrow-downward.svg");
}

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

.button--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button--header {
  min-height: 42px;
  padding: 0.72rem 1.05rem;
  color: var(--white);
}

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

.button--whatsapp {
  gap: 0.72rem;
  padding-block: 0.55rem;
  letter-spacing: 0;
  text-transform: none;
}

.button--whatsapp::after {
  display: none;
}

.button--whatsapp .button__icon {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 1.4rem;
}

.button__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
  line-height: 1;
  text-align: left;
}

.button__copy strong {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.button__copy span {
  font-size: 0.69rem;
  font-weight: 450;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.button--header.button--whatsapp {
  min-height: 52px;
  padding: 0.46rem 1rem;
}

.header-contact__button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(3, 31, 37, 0.48);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.header-contact__button img {
  width: 18px;
  height: 18px;
}

.header-contact__button:hover {
  border-color: var(--turquoise);
  background: var(--turquoise-dark);
  transform: translateY(-2px);
}

.header-contact__button:focus-visible {
  outline: 2px solid var(--turquoise);
  outline-offset: 3px;
}

.site-header.is-scrolled .header-contact__button {
  border-color: rgba(16, 46, 53, 0.18);
  background: var(--deepest);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deepest);
  isolation: isolate;
}

.hero--page {
  min-height: min(74svh, 780px);
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
  animation: hero-enter 1.6s var(--ease) both;
}

.hero--home .hero__media img {
  object-position: 53% center;
}

.hero--home {
  align-items: stretch;
}

.hero--home .hero__content {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-block: calc(92px + clamp(1.5rem, 3vh, 2.5rem)) clamp(1.5rem, 3vh, 2.5rem);
}

.hero--comfort .hero__media img {
  object-position: 38% center;
}

.hero--location .hero__media img {
  object-position: center 56%;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 35, 43, 0.76) 0%, rgba(4, 35, 43, 0.28) 54%, rgba(4, 35, 43, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 35, 43, 0.58) 0%, transparent 52%, rgba(4, 35, 43, 0.12) 100%);
  content: "";
}

.hero--page::before {
  background:
    linear-gradient(90deg, rgba(4, 35, 43, 0.72) 0%, rgba(4, 35, 43, 0.24) 62%, rgba(4, 35, 43, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 35, 43, 0.5) 0%, transparent 62%);
}

.hero__content {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
  padding-block: clamp(9rem, 18vh, 13rem) clamp(4rem, 9vh, 7rem);
}

.hero--page .hero__content {
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 2.5rem;
  height: 1px;
  background: var(--turquoise);
  content: "";
}

.hero__title {
  max-width: 11ch;
  font-size: clamp(4rem, 9vw, 8.8rem);
  text-wrap: balance;
}

.hero--page .hero__title {
  max-width: 13ch;
  font-size: clamp(3.7rem, 7.6vw, 7.2rem);
}

.hero__subtitle {
  max-width: 39rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero__index {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2.5rem, 6vh, 5rem);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--serif);
  line-height: 1;
}

.hero__index strong {
  font-size: 2.2rem;
  font-weight: 550;
}

.hero__index span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

@keyframes hero-enter {
  from {
    opacity: 0.7;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Home story */
.story-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.story-copy {
  position: relative;
  z-index: 1;
}

.story-copy p:not(.eyebrow) {
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.85;
}

.story-media {
  position: relative;
  margin: 0;
}

.story-media::before {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  width: 42%;
  height: 55%;
  border: 1px solid var(--turquoise);
  content: "";
}

.story-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-media figcaption {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  z-index: 2;
  max-width: 13rem;
  padding: 1.2rem 1.4rem;
  color: var(--white);
  background: var(--deep);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.stats-wrap {
  margin-top: clamp(4rem, 8vw, 7.5rem);
  border-block: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  min-height: 190px;
  padding: 2rem clamp(1rem, 2.5vw, 2.3rem);
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat__number {
  display: block;
  color: var(--ocean);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat__label {
  display: block;
  margin-top: 0.8rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.stat__detail {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.4;
}

/* Highlights */
.feature-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deepest);
}

.feature-band::before {
  position: absolute;
  top: -16rem;
  right: -13rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(39, 189, 190, 0.2);
  border-radius: 50%;
  content: "";
}

.feature-band::after {
  position: absolute;
  right: 2rem;
  bottom: -18rem;
  width: 33rem;
  height: 33rem;
  border: 1px solid rgba(39, 189, 190, 0.12);
  border-radius: 50%;
  content: "";
}

.feature-intro {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.6fr);
}

.feature-intro .section-title {
  color: var(--white);
}

.feature-intro .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 290px;
  padding: 2rem clamp(1.1rem, 2.4vw, 2rem);
}

.feature-card + .feature-card {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-symbol {
  display: grid;
  width: 4.35rem;
  height: 4.35rem;
  place-items: center;
  border: 1px solid rgba(39, 189, 190, 0.68);
  border-radius: 50%;
  color: var(--turquoise);
  background: rgba(39, 189, 190, 0.07);
}

.feature-symbol img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}

.feature-card h3 {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 560;
  line-height: 1.15;
}

.feature-card p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Gallery */
.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.gallery-heading p {
  max-width: 30rem;
  margin: 0;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand-deep);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

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

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: rgba(5, 43, 51, 0.88);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Closing call to action */
.booking-banner {
  position: relative;
  display: grid;
  min-height: 580px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deepest);
  isolation: isolate;
}

.booking-banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-banner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 35, 43, 0.8) 0%, rgba(4, 35, 43, 0.46) 62%, rgba(4, 35, 43, 0.16) 100%);
  content: "";
}

.booking-banner__content {
  max-width: 46rem;
  padding-block: 5rem;
}

.booking-banner .section-title {
  color: var(--white);
}

.booking-banner p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

/* Comfort page */
.intro-center {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.intro-center .eyebrow {
  justify-content: center;
}

.intro-center .section-title,
.intro-center .lead {
  max-width: none;
}

.service-steps {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.service-step {
  padding: clamp(2rem, 4vw, 3.8rem);
}

.service-step + .service-step {
  border-left: 1px solid var(--line);
}

.service-step__number {
  color: var(--turquoise-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-step h2,
.service-step h3 {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 560;
  line-height: 1.15;
}

.service-step p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.editorial-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
}

.editorial-grid--reverse {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.08fr);
}

.editorial-grid--reverse .editorial-media {
  order: 2;
}

.editorial-media {
  position: relative;
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-media::after {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 42%;
  height: 42%;
  border-right: 1px solid var(--turquoise);
  border-bottom: 1px solid var(--turquoise);
  content: "";
}

.editorial-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1;
}

.editorial-copy > p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.detail-list li {
  display: grid;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.5rem 1fr;
}

.detail-list li::before {
  color: var(--turquoise-dark);
  content: "✓";
  font-weight: 700;
}

.amenities-wrap {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: 0.72fr 1.28fr;
}

.amenity-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.amenity-list li {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.amenity-list li:nth-child(even) {
  border-right: 0;
}

.amenity-list li::before {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(15, 109, 120, 0.35);
  border-radius: 50%;
  color: var(--ocean);
  content: "+";
  font-family: var(--serif);
  font-size: 1.1rem;
}

.quiet-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(2.2rem, 6vw, 5.5rem);
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.75fr);
}

.quiet-card::after {
  position: absolute;
  top: -8rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(39, 189, 190, 0.32);
  border-radius: 50%;
  content: "";
}

.quiet-card h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.quiet-card__rules {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quiet-card__rules li {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
}

.quiet-card__rules strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

/* Location page */
.location-intro {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
}

.location-photo {
  position: relative;
  margin: 0;
}

.location-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.location-photo figcaption {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  padding: 1rem 1.25rem;
  color: var(--white);
  background: var(--deep);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.location-copy p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.walk-note {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-block: 0.8rem;
  border-block: 1px solid var(--line);
}

.walk-note strong {
  color: var(--turquoise-dark);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 560;
  line-height: 1;
}

.walk-note span {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nearby-heading {
  display: grid;
  align-items: end;
  gap: 3rem;
  grid-template-columns: 1fr 0.65fr;
}

.nearby-heading .lead {
  margin: 0;
}

.nearby-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  background: var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.nearby-card {
  position: relative;
  min-height: 390px;
  padding: clamp(2rem, 4.5vw, 4rem);
  overflow: hidden;
  background: var(--paper);
}

.nearby-card__number {
  color: var(--turquoise-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.nearby-card h3 {
  max-width: 12ch;
  margin: 4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.nearby-card p {
  max-width: 34rem;
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
}

.nearby-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.nearby-card__tags span {
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.island-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deepest);
}

.island-section::after {
  position: absolute;
  top: 8%;
  right: -11rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(39, 189, 190, 0.18);
  border-radius: 50%;
  content: "";
}

.island-intro {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 3rem;
  grid-template-columns: 1fr 0.7fr;
}

.island-intro .section-title {
  color: var(--white);
}

.island-intro .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.islands-route {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.islands-route li {
  position: relative;
  min-height: 250px;
  padding: 2.4rem 1.5rem 2rem 0;
}

.islands-route li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--deepest);
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 1px var(--turquoise);
  content: "";
}

.islands-route li + li {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.islands-route small {
  color: var(--turquoise);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.islands-route h3 {
  margin: 2.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 560;
  line-height: 1.1;
}

.islands-route p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

/* Local recommendations */
.address-section {
  background: var(--paper);
}

.address-heading {
  display: grid;
  align-items: end;
  gap: 3rem;
  grid-template-columns: 1fr 0.7fr;
}

.address-heading .lead {
  margin: 0;
}

.address-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border: 1px solid var(--line);
  background: var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.address-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
}

.address-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sand-deep);
  aspect-ratio: 16 / 9;
}

.address-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.address-card:hover .address-card__media img {
  transform: scale(1.025);
}

.address-card__body {
  display: flex;
  min-height: 280px;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
}

.address-card__category {
  margin: 0;
  color: var(--ocean);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.address-card h3 {
  margin: 0.85rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.address-card__body > p:not(.address-card__category) {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
}

.address-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 2rem;
}

.activity-strip {
  padding-block: 1.3rem;
  overflow: hidden;
  color: var(--deepest);
  background: var(--turquoise);
}

.activity-strip__inner {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.2rem;
  padding-inline: var(--gutter);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.activity-strip__inner span:nth-child(even) {
  color: rgba(5, 43, 51, 0.42);
  font-size: 0.75em;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #031f25;
}

.footer-main {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7rem);
  grid-template-columns: 1.2fr 0.55fr 0.8fr;
}

.site-footer .footer-brand {
  width: 184px;
  max-width: 100%;
  align-items: stretch;
  color: var(--white);
}

.footer-brand .brand__mark {
  width: 100%;
  height: auto;
}

.footer-brand .brand__name {
  width: 100%;
  margin-top: 1.15rem;
  font-size: 1.85rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-indent: 0.16em;
}

.footer-brand .brand__sub {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-align: center;
  text-indent: 0.3em;
}

.footer-intro {
  max-width: 30rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-heading {
  margin: 0 0 1.5rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 0.75rem;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--turquoise);
}

.footer-contact {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.footer-contact__button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.footer-contact__button img {
  width: 1.2rem;
  height: 1.2rem;
}

.footer-contact__button:hover {
  border-color: var(--turquoise);
  background: rgba(39, 189, 190, 0.16);
  transform: translateY(-2px);
}

.footer-contact__button:focus-visible {
  outline: 2px solid var(--turquoise);
  outline-offset: 3px;
}

.footer-booking-actions {
  display: grid;
  width: max-content;
  max-width: 100%;
  gap: 0.75rem;
}

.footer-booking-actions .button {
  width: 100%;
  height: 60px;
  min-height: 60px;
}

.footer-host {
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.footer-legal {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a:hover {
  color: var(--turquoise);
}

.mobile-booking {
  display: none;
}

/* Progressive reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.js [data-reveal="left"] {
  transform: translateX(-28px);
}

.js [data-reveal="right"] {
  transform: translateX(28px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 0.45rem;
  }

  .site-nav__link + .site-nav__link {
    margin-left: 0.55rem;
  }

  .site-nav__link {
    font-size: 0.68rem;
  }

  .button--header {
    display: none;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-contact__button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .story-grid,
  .editorial-grid,
  .editorial-grid--reverse,
  .location-intro {
    gap: 4rem;
  }

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

  .feature-card:nth-child(3) {
    border-left: 0;
  }

  .feature-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .feature-card {
    min-height: 240px;
  }

  .footer-main {
    grid-template-columns: 1fr 0.55fr 0.85fr;
  }
}

@media (max-width: 780px) {
  :root {
    --section-space: 5.2rem;
  }

  html,
  body {
    touch-action: pan-y pinch-zoom;
  }

  body {
    padding-bottom: 68px;
  }

  .js [data-reveal="left"],
  .js [data-reveal="right"] {
    transform: translateY(28px);
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header {
    height: 74px;
  }

  .brand {
    width: 112px;
  }

  .brand__mark {
    width: 54px;
    height: 19px;
  }

  .brand__name {
    font-size: 0.77rem;
  }

  .brand__sub {
    font-size: 0.43rem;
  }

  .site-header .brand {
    column-gap: 0.58rem;
    grid-template-columns: 76px max-content;
  }

  .site-header .brand__mark {
    width: 76px;
    height: 28px;
  }

  .site-header .brand__name {
    font-size: 0.96rem;
    letter-spacing: 0.08em;
  }

  .site-header .brand__sub {
    margin-top: 0.14rem;
    font-size: 0.47rem;
    letter-spacing: 0.18em;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 7rem var(--gutter) 5rem;
    overflow-y: auto;
    color: var(--white);
    background: var(--deepest);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: none;
  }

  .site-nav__link + .site-nav__link {
    margin-left: 0;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: mobile-menu-enter 320ms var(--ease);
  }

  .site-nav__link {
    width: 100%;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 550;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav__link::after {
    display: none;
  }

  .header-actions {
    width: 100%;
    gap: 0.65rem;
    margin-top: 2rem;
  }

  .button--header {
    display: inline-flex;
    min-height: 46px;
    margin-right: 0.15rem;
    padding-inline: 1.25rem;
  }

  .header-contact__button,
  .site-header.is-scrolled .header-contact__button {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
  }

  .header-contact__button img {
    width: 20px;
    height: 20px;
  }

  .header-contact__button:hover {
    border-color: var(--turquoise);
    background: var(--turquoise-dark);
  }

  .menu-open .site-header {
    color: var(--white);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero {
    min-height: max(740px, 100svh);
  }

  .hero--page {
    min-height: max(590px, 72svh);
  }

  .hero::before,
  .hero--page::before {
    background:
      linear-gradient(90deg, rgba(4, 35, 43, 0.64), rgba(4, 35, 43, 0.16)),
      linear-gradient(0deg, rgba(4, 35, 43, 0.76) 0%, rgba(4, 35, 43, 0.05) 74%);
  }

  .hero--home .hero__media img {
    object-position: 61% center;
  }

  .hero--comfort .hero__media img {
    object-position: 28% center;
  }

  .hero__content {
    padding-bottom: 6.5rem;
  }

  .hero--home .hero__content {
    min-height: max(740px, 100svh);
    padding-block: calc(74px + 1.5rem) calc(68px + 1.5rem);
  }

  .hero__title,
  .hero--page .hero__title {
    max-width: 10ch;
    font-size: clamp(3.7rem, 17vw, 6.2rem);
  }

  .hero__subtitle {
    max-width: 31rem;
    font-size: 1.02rem;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__index {
    display: none;
  }

  .story-grid,
  .editorial-grid,
  .editorial-grid--reverse,
  .location-intro,
  .nearby-heading,
  .address-heading,
  .feature-intro,
  .island-intro,
  .amenities-wrap,
  .quiet-card {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .editorial-copy,
  .location-copy {
    max-width: 42rem;
  }

  .story-media figcaption {
    right: -0.5rem;
    bottom: -1.5rem;
  }

  .story-media::before {
    top: -0.8rem;
    right: -0.8rem;
  }

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

  .stat {
    min-height: 160px;
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .feature-grid,
  .service-steps,
  .nearby-grid,
  .address-grid,
  .islands-route {
    grid-template-columns: 1fr;
  }

  .feature-card + .feature-card,
  .feature-card:nth-child(3),
  .service-step + .service-step,
  .islands-route li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .service-step + .service-step {
    border-color: var(--line);
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading p {
    margin-top: 1.3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(270px, 55vw));
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .editorial-grid--reverse .editorial-media {
    order: 0;
  }

  .editorial-grid--reverse .editorial-copy {
    order: 1;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .amenity-list li,
  .amenity-list li:nth-child(even) {
    border-right: 0;
  }

  .location-photo img {
    aspect-ratio: 4 / 3;
  }

  .location-photo figcaption {
    right: -0.5rem;
  }

  .nearby-card {
    min-height: 340px;
  }

  .address-card__body {
    min-height: 0;
  }

  .islands-route li,
  .islands-route li + li {
    min-height: 0;
    padding: 2rem 0;
  }

  .islands-route li + li::before {
    left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-booking {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    display: flex;
    height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem var(--gutter);
    color: var(--ink);
    background: rgba(251, 250, 246, 0.97);
    box-shadow: 0 -10px 30px rgba(5, 43, 51, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-booking > span {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.1;
  }

  .mobile-booking .button {
    min-height: 46px;
    padding: 0.65rem 0.9rem;
    font-size: 0.65rem;
  }

  .mobile-booking .button--whatsapp {
    min-height: 48px;
    flex: 0 0 auto;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
  }

  .mobile-booking .button--whatsapp .button__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-basis: 1.1rem;
  }

  .mobile-booking .button--whatsapp .button__copy {
    gap: 0.1rem;
  }

  .mobile-booking .button--whatsapp .button__copy strong {
    font-size: 0.7rem;
    letter-spacing: 0.025em;
  }

  .mobile-booking .button--whatsapp .button__copy span {
    font-size: 0.64rem;
    letter-spacing: 0.012em;
  }
}

@keyframes mobile-menu-enter {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }

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

@media (max-width: 480px) {
  .hero__eyebrow,
  .eyebrow {
    font-size: 0.66rem;
  }

  .hero__title,
  .hero--page .hero__title {
    font-size: clamp(3.35rem, 17vw, 4.9rem);
  }

  .section-title {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .button {
    min-height: 52px;
  }

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

  .stat + .stat,
  .stat:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat {
    display: grid;
    min-height: 0;
    align-items: center;
    gap: 0 1.2rem;
    grid-template-columns: 5.5rem 1fr;
  }

  .stat__number {
    grid-row: 1 / 3;
  }

  .stat__label {
    align-self: end;
    margin-top: 0;
  }

  .stat__detail {
    align-self: start;
  }

  .quiet-card {
    margin-inline: calc(var(--gutter) * -0.45);
  }

  .booking-banner {
    min-height: 540px;
  }

  .mobile-booking > span {
    max-width: 7rem;
    font-size: 0.92rem;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
