:root {
  --ink: #092e42;
  --ink-soft: #35525f;
  --blue: #047c9e;
  --aqua: #59d3df;
  --sky: #dff6f4;
  --sand: #f2eee4;
  --paper: #fbfaf6;
  --white: #ffffff;
  --coral: #e85038;
  --line: rgba(9, 46, 66, 0.16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --page: min(1280px, calc(100vw - 8vw));
  --shadow: 0 30px 80px rgba(10, 55, 70, 0.16);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

a,
button,
input,
select,
textarea,
summary { touch-action: manipulation; }

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

.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: 0;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-110%);
  transition: transform 180ms ease;
}

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

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

.section-space {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.7rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

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

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

.button-light:hover {
  background: var(--aqua);
}

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

.button-primary:hover {
  background: var(--blue);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.light-link {
  color: white;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 92px;
  grid-template-columns: 190px 1fr 175px;
  align-items: center;
  padding-inline: 3vw;
  border-bottom: 1px solid rgba(4, 124, 158, 0.14);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 38px rgba(3, 30, 45, 0.1);
  color: var(--blue);
  backdrop-filter: blur(18px);
  transition: height 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.site-header.scrolled {
  height: 74px;
  border-bottom-color: rgba(4, 124, 158, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(3, 30, 45, 0.12);
  color: var(--blue);
}

body.menu-open .site-header {
  border-bottom-color: rgba(4, 124, 158, 0.18);
  background: rgba(255, 255, 255, 0.98);
  color: var(--blue);
}

.brand {
  display: flex;
  width: 145px;
  height: 78px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 3px;
}

.brand img {
  width: 118px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  filter: none;
  transform: none;
}

.site-header:not(.scrolled) .brand {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
}

.site-header.scrolled .brand {
  width: 120px;
  height: 64px;
}

.site-header.scrolled .brand img {
  width: 102px;
  max-height: 62px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.45vw, 1.5rem);
}

.desktop-nav a {
  position: relative;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.desktop-nav a[aria-current="page"] {
  color: #049fc0;
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 0.75rem 1.35rem;
  border: 1px solid rgba(4, 124, 158, 0.62);
  border-radius: 100px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.header-cta:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.nav-toggle-checkbox {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-checkbox:checked ~ .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle-checkbox:checked + .menu-toggle > span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle-checkbox:checked + .menu-toggle > span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu a[aria-current="page"] {
  color: #049fc0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("hero-pool.jpg");
  background-position: 50% 54%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 25, 37, 0.72) 0%, rgba(2, 25, 37, 0.2) 56%, rgba(2, 25, 37, 0.1) 100%),
    linear-gradient(0deg, rgba(3, 28, 40, 0.46) 0%, transparent 54%);
}

.hero-content {
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 10rem;
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
  transition: transform 220ms ease-out;
  will-change: transform;
}

.hero h1 {
  max-width: 960px;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8.2vw, 8.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.18);
}

.hero h1 em {
  margin-left: clamp(2rem, 9vw, 9rem);
  color: #bceef1;
}

.hero-copy {
  max-width: 530px;
  margin-bottom: 2.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.hero-side-label {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 2.2vw;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.72;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.availability-bar {
  position: absolute;
  z-index: 5;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  display: grid;
  min-height: 112px;
  grid-template-columns: 1.25fr 1fr 1fr 0.8fr 0.78fr;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -10px 60px rgba(4, 34, 47, 0.17);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.availability-bar > * {
  min-width: 0;
}

.availability-intro,
.availability-bar label {
  display: flex;
  align-items: center;
  padding-inline: clamp(1rem, 2.4vw, 2.2rem);
  border-right: 1px solid var(--line);
}

.availability-intro {
  gap: 1rem;
}

.availability-dot {
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(232, 80, 56, 0.1);
}

.availability-intro p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
}

.availability-intro small,
.availability-bar label > span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.availability-intro small {
  color: var(--blue);
}

.availability-bar label {
  display: block;
  align-content: center;
}

.availability-bar input,
.availability-bar select {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.availability-bar button {
  border: 0;
  background: var(--ink);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 200ms ease;
}

.availability-bar button span {
  display: inline-block;
  margin-left: 0.8rem;
  font-size: 1.1rem;
  transition: transform 200ms ease;
}

.availability-bar button:hover {
  background: var(--blue);
}

.availability-bar button:hover span {
  transform: translateX(4px);
}

/* Intro */
.intro-section {
  position: relative;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: clamp(3rem, 10vw, 9rem);
  align-items: end;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.intro-heading h2,
.section-heading h2,
.services-title h2,
.contact-intro h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.intro-heading h2 em,
.section-heading h2 em,
.services-title h2 em,
.contact-intro h2 em {
  color: var(--blue);
}

.intro-copy {
  max-width: 450px;
  padding-bottom: 0.6rem;
  color: var(--ink-soft);
}

.intro-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.4;
}

.intro-copy .text-link {
  margin-top: 1rem;
}

.visual-story {
  position: relative;
  min-height: min(730px, 68vw);
}

.visual-story figure {
  margin: 0;
  overflow: hidden;
}

.visual-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-main {
  position: absolute;
  top: 0;
  right: 6%;
  width: 68%;
  height: 75%;
  box-shadow: var(--shadow);
}

.visual-float {
  position: absolute;
  bottom: 0;
  left: 3%;
  width: 32%;
  height: 46%;
  border: 12px solid var(--paper);
  box-shadow: var(--shadow);
}

.visual-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 5%;
  width: 21%;
  padding: 1.2rem 0 1.2rem 2rem;
  border-left: 1px solid var(--line);
}

.visual-note .note-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--blue);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.visual-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.4;
}

.circle-stamp {
  position: absolute;
  z-index: 3;
  top: 12%;
  left: 1%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  box-shadow: 0 14px 45px rgba(232, 80, 56, 0.28);
}

.circle-stamp svg {
  width: 100%;
  height: 100%;
  animation: rotate-stamp 18s linear infinite;
}

.circle-stamp text {
  fill: white;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.circle-stamp > span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  transform: translate(-50%, -50%);
}

@keyframes rotate-stamp { to { transform: rotate(360deg); } }

/* Values */
.values-section {
  background: var(--sky);
}

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

.value-card {
  position: relative;
  min-height: 370px;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(9, 46, 66, 0.12);
}

.value-card:last-child {
  border-right: 0;
}

.value-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 4rem;
  border: 1px solid rgba(9, 46, 66, 0.2);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 2rem;
}

.value-number {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  color: var(--blue);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.value-card > p:last-child {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.photo-values {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 7rem);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.photo-values::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(223, 246, 244, 0.94), rgba(255, 255, 255, 0.55));
  content: "";
}

.home-values-bg { background-image: url("panoramic-room.jpg"); }
.about-values-bg { background-image: url("pool-sunset.jpg"); }

.photo-values .values-grid {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.photo-values .value-card {
  background: rgba(250, 253, 251, 0.82);
  backdrop-filter: blur(14px);
}

.summer-video-section {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: var(--blue);
  color: white;
}

.summer-video-section video,
.summer-video-section > .hosting-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.summer-video-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 31, 46, 0.78), rgba(3, 81, 104, 0.1) 68%), linear-gradient(0deg, rgba(1, 31, 46, 0.32), transparent 60%);
}

.pool-color-grade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 188, 208, 0.38), rgba(20, 154, 181, 0.2) 58%, rgba(9, 106, 139, 0.05));
  mix-blend-mode: color;
  opacity: 0.68;
  pointer-events: none;
}

.summer-video-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 92svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.summer-video-content h2 {
  max-width: 980px;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 7.4vw, 7.7rem);
  letter-spacing: -0.055em;
}

.summer-video-content h2 em { color: #cff5ef; }

.summer-video-content > p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.relax-feature-section {
  position: relative;
  min-height: 108svh;
  overflow: hidden;
  background: #087e9a;
  color: white;
}

.relax-feature-section video,
.relax-feature-section > .hosting-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.relax-feature-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 29, 43, 0.78), rgba(3, 82, 105, 0.08) 68%),
    linear-gradient(0deg, rgba(2, 35, 47, 0.28), transparent 58%);
}

.relax-feature-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 108svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transform: translate3d(0, var(--scene-copy-y), 0);
  will-change: transform;
}

.relax-feature-content h2 {
  max-width: 960px;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 8.5rem);
  letter-spacing: -0.055em;
}

.relax-feature-content h2 em { color: #ccf5ef; }

.relax-feature-content > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.06rem;
}

.relax-feature-section .relax-breath {
  right: -0.02em;
  bottom: 0.02em;
}

/* Rooms */
.rooms-section {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.split-heading > p {
  max-width: 430px;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
}

.room-explorer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  box-shadow: var(--shadow);
}

.room-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #d8e6e6;
}

.room-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(2, 28, 39, 0.4));
  content: "";
  pointer-events: none;
}

.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 280ms ease;
}

.room-media img.changing {
  opacity: 0;
}

.room-index,
.room-tag {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  color: white;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-index { left: 2rem; }

.room-tag { right: 2rem; }

.room-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: white;
}

.room-detail h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.3rem, 5vw, 5.5rem);
  letter-spacing: -0.045em;
}

.room-detail > p:not(.eyebrow) {
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.room-amenities li {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--ink);
}

.room-tab {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 1.2rem;
  transition: background 220ms ease, color 220ms ease;
}

.room-tab span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.room-tab:hover,
.room-tab.active {
  background: var(--blue);
  color: white;
}

/* Water */
.water-section {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: #057998;
  color: white;
}

.water-section video,
.water-section > .hosting-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.water-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 32, 48, 0.76), rgba(3, 104, 128, 0.1) 66%),
    linear-gradient(0deg, rgba(1, 28, 40, 0.18), transparent 55%);
}

.relax-breath {
  position: absolute;
  z-index: 3;
  right: -0.03em;
  bottom: -0.08em;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(9rem, 22vw, 24rem);
  font-style: italic;
  letter-spacing: -0.07em;
  line-height: 0.75;
  opacity: 0.13;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(225, 252, 249, 0.8);
}

.water-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 88svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.water-content h2,
.territory-content h2 {
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.055em;
}

.water-content h2 em,
.territory-content h2 em {
  color: #c7f4f1;
}

.water-content > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.05rem;
}

.round-link {
  position: absolute;
  right: 2%;
  bottom: 9%;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}

.round-link b {
  position: absolute;
  top: 26px;
  right: 30px;
  font-size: 1.2rem;
}

.round-link:hover {
  background: white;
  color: var(--ink);
  transform: rotate(-6deg);
}

/* Services */
.services-section {
  background: var(--sand);
}

.services-depth-bg {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(242, 238, 228, 0.96), rgba(242, 238, 228, 0.7)), url("view-egadi.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 10vw, 10rem);
}

.services-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.services-title > p:last-child {
  max-width: 390px;
  margin-top: 2rem;
  color: var(--ink-soft);
}

.services-list {
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.service-row {
  display: grid;
  min-height: 130px;
  grid-template-columns: 50px 1fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.service-row > span {
  color: var(--blue);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.service-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.gallery-heading {
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 300px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #d9e9e9;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 400ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 30, 42, 0.45));
  content: "";
  opacity: 0.75;
  transition: opacity 300ms ease;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  bottom: 1.3rem;
  left: 1.4rem;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

/* Territory */
.territory-section {
  position: relative;
  min-height: 90svh;
  color: white;
}

.territory-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.territory-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 25, 37, 0.72), transparent 75%), linear-gradient(0deg, rgba(2, 25, 37, 0.3), transparent);
}

.territory-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 90svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.territory-content > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
}

/* Contact */
.contact-section {
  background: var(--sky);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 410px;
  margin-top: 2rem;
  color: var(--ink-soft);
}

.contact-intro > .button {
  margin-top: 1.8rem;
}

.contact-intro > .button + address {
  margin-top: 2.3rem;
}

.contact-intro address {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  font-style: normal;
}

.contact-intro address a {
  font-weight: 650;
}

.contact-intro address span {
  margin-top: 0.6rem;
  color: var(--ink-soft);
}

.contact-form {
  padding: clamp(2rem, 4vw, 4rem);
  background: white;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 1.4rem;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 200ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
}

.privacy-check input {
  margin-top: 0.25rem;
  accent-color: var(--blue);
}

.privacy-check span {
  margin: 0 !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.submit-button {
  gap: 1.5rem;
  margin-top: 2rem;
  border: 0;
}

.submit-button span {
  margin: 0;
  font-size: 1rem;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.67rem;
}

/* Footer */
.site-footer {
  padding-top: clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(89, 211, 223, 0.18), transparent 34%),
    linear-gradient(135deg, #031c29 0%, #062a3b 58%, #08435a 100%);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 1fr 80px;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand {
  width: min(100%, 360px);
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #eef9f7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

.footer-brand img {
  width: 230px;
  height: 150px;
  padding: 0.35rem;
  background: transparent;
  filter: none;
  object-fit: contain;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(9, 46, 66, 0.12);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
}

.footer-label {
  margin-bottom: 1rem;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--aqua);
}

.footer-top {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 1.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.footer-legal a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

/* Legal pages */
.legal-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 25, 37, 0.76), rgba(2, 25, 37, 0.22)),
    linear-gradient(0deg, rgba(2, 25, 37, 0.62), rgba(2, 25, 37, 0.08)),
    url("terrace-egadi.jpg") center / cover;
  color: white;
}

.legal-hero.cookie-hero {
  background:
    linear-gradient(90deg, rgba(2, 25, 37, 0.76), rgba(2, 25, 37, 0.18)),
    linear-gradient(0deg, rgba(2, 25, 37, 0.62), rgba(2, 25, 37, 0.08)),
    url("pool-day.jpg") center / cover;
}

.legal-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, var(--paper), transparent);
  content: "";
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-size: clamp(4.5rem, 12vw, 9rem);
}

.legal-hero p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 120px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(10, 55, 70, 0.08);
}

.legal-aside .footer-label {
  color: var(--blue);
}

.legal-aside strong {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.legal-aside p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.legal-aside .button {
  width: 100%;
  margin-top: 1.5rem;
}

.legal-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: white;
  box-shadow: var(--shadow);
}

.legal-copy h2 {
  margin: 2.6rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  max-width: 780px;
  color: var(--ink-soft);
}

.legal-copy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-table {
  width: 100%;
  margin: 1.7rem 0 2.4rem;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--sand);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  width: min(520px, calc(100vw - 2rem));
  gap: 1.15rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(6, 42, 59, 0.94);
  color: white;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

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

.cookie-banner h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--aqua);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-actions .button {
  min-height: 3rem;
  padding-inline: 1.2rem;
}

.cookie-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.cookie-actions .button-outline:hover {
  background: white;
  color: var(--ink);
}

/* Lightbox and toast */
.lightbox {
  width: min(94vw, 1400px);
  height: min(90vh, 900px);
  padding: 0;
  border: 0;
  background: #041d29;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

.lightbox::backdrop {
  background: rgba(2, 20, 29, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 2rem;
  bottom: 2rem;
  max-width: 360px;
  padding: 1rem 1.3rem;
  border-radius: 6px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: white;
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal */
.reveal,
.reveal-image {
  --reveal-y: 28px;
  --reveal-scale: 1;
  --reveal-rotate-x: 5deg;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --scroll-tilt-x: 0deg;
  --depth-y: 0px;
  --depth-z: 0px;
  opacity: 0;
  transform:
    perspective(1400px)
    translate3d(0, calc(var(--reveal-y) + var(--depth-y)), var(--depth-z))
    rotateX(calc(var(--reveal-rotate-x) + var(--tilt-x) + var(--scroll-tilt-x)))
    rotateY(var(--tilt-y))
    scale(var(--reveal-scale));
  transform-origin: center bottom;
  transform-style: preserve-3d;
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.reveal-image {
  --reveal-y: 35px;
  --reveal-scale: 0.985;
  --reveal-rotate-x: 0deg;
  transform: none;
  transform-style: flat;
}

.reveal {
  --reveal-y: 18px;
  --reveal-rotate-x: 0deg;
  transform: translate3d(0, calc(var(--reveal-y) + var(--depth-y)), 0) scale(var(--reveal-scale));
  transform-origin: left bottom;
  transform-style: flat;
}

.reveal.visible,
.reveal-image.visible {
  --reveal-y: 0px;
  --reveal-scale: 1;
  --reveal-rotate-x: 0deg;
  opacity: 1;
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* Cinematic motion system */
.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--aqua), #d7fbf4);
  box-shadow: 0 0 14px rgba(89, 211, 223, 0.55);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.film-grain {
  display: none;
}

.page-transition {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.page-transition span {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  letter-spacing: -0.025em;
  opacity: 0.86;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 240ms ease;
}

body.page-ready .page-transition {
  opacity: 0;
  visibility: hidden;
}

body.page-leaving .page-transition {
  opacity: 1;
  visibility: visible;
}

body.page-leaving .page-transition span { opacity: 0.9; transform: translateY(-2px); }

.cinematic-section {
  --cinema-bar: 14px;
  --scene-y: 0px;
  --scene-scale: 1.025;
  --scene-copy-y: 0px;
  --scene-pan-x: 0px;
  --scene-pan-y: 0px;
  --scene-copy-x: 0px;
  --scene-copy-pointer-y: 0px;
  isolation: isolate;
}

.cinematic-section::before,
.cinematic-section::after {
  position: absolute;
  z-index: 6;
  right: 0;
  left: 0;
  height: var(--cinema-bar);
  background: #031c29;
  content: "";
  pointer-events: none;
  transition: height 80ms linear;
}

.cinematic-section::before { top: 0; }
.cinematic-section::after { bottom: 0; }

.cinematic-section video,
.cinematic-section > .hosting-poster {
  max-width: none;
  filter: saturate(0.9) contrast(1.025) brightness(0.98);
  transform: translate3d(var(--scene-pan-x), calc(var(--scene-y) + var(--scene-pan-y)), 0) scale(var(--scene-scale));
  transform-origin: center;
  transition: filter 300ms ease;
}

.cinematic-section.is-active video,
.cinematic-section.is-active > .hosting-poster {
  filter: saturate(0.94) contrast(1.02) brightness(0.99);
}

.summer-video-content,
.relax-feature-content,
.water-content {
  transform: translate3d(var(--scene-copy-x), calc(var(--scene-copy-y) + var(--scene-copy-pointer-y)), 0);
  transition: transform 220ms ease-out;
}

.cinematic-meta {
  position: absolute;
  z-index: 7;
  top: clamp(5.5rem, 8vw, 8rem);
  right: 2.5vw;
  left: 2.5vw;
  display: flex;
  justify-content: space-between;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sub-hero {
  --subhero-base: 50%;
  background-position: center var(--subhero-base);
}

.sub-hero-rooms { --subhero-base: 58%; }

.reveal {
  filter: blur(3px);
  transition: opacity 880ms ease, transform 880ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
}

.reveal-image {
  clip-path: none;
  transition: opacity 450ms ease;
}

.reveal.visible { filter: blur(0); }
.reveal-image.visible { clip-path: none; }

h1.reveal,
h2.reveal {
  clip-path: none;
  transition: opacity 900ms ease, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.depth-stage {
  perspective: 1600px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
}


.magnetic {
  --magnet-x: 0px;
  --magnet-y: 0px;
  translate: var(--magnet-x) var(--magnet-y);
  transition: translate 160ms ease-out, color 220ms ease, background 220ms ease, border-color 220ms ease;
  will-change: translate;
}

.magnetic.magnetic-settling { transition-duration: 520ms, 220ms, 220ms, 220ms; }

/* Multi-page layout */
.sub-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background-color: var(--ink);
  background-position: center var(--subhero-base, 50%);
  background-size: cover;
  color: white;
}

.sub-hero-about { background-image: url("view-egadi.jpg"); }
.sub-hero-services { background-image: url("hero-pool.jpg"); }
.sub-hero-rooms { --subhero-base: 58%; background-image: url("panoramic-room.jpg"); }
.sub-hero-gallery { background-image: url("pool-sunset.jpg"); }
.sub-hero-blog { background-image: url("terrace-egadi.jpg"); }
.sub-hero-contact { background-image: url("view-egadi.jpg"); }

.sub-hero-rooms {
  --subhero-base: 52%;
  min-height: clamp(640px, 82svh, 860px);
}

.sub-hero-rooms .sub-hero-shade {
  background:
    radial-gradient(circle at 74% 34%, rgba(89, 211, 223, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(2, 25, 37, 0.86), rgba(2, 25, 37, 0.2) 67%),
    linear-gradient(0deg, rgba(2, 25, 37, 0.64), transparent 62%);
}

.sub-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 25, 37, 0.76), rgba(2, 25, 37, 0.08) 72%), linear-gradient(0deg, rgba(2, 25, 37, 0.4), transparent 55%);
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 78svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: clamp(5rem, 9vw, 8rem);
  padding-top: 9rem;
}

.sub-hero-rooms .sub-hero-content {
  min-height: clamp(640px, 82svh, 860px);
  padding-top: clamp(8.5rem, 10vw, 11rem);
  padding-bottom: clamp(6rem, 9vw, 8.4rem);
}

.sub-hero h1 {
  max-width: 1000px;
  margin-bottom: 1.6rem;
  font-size: clamp(4.2rem, 8vw, 8.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.sub-hero h1 em {
  color: #c7f4f1;
}

.sub-hero-content > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

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

.page-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 10vw, 9rem);
  align-items: start;
}

.page-intro h2,
.editorial-copy h2,
.pool-feature-copy h2,
.page-cta h2,
.contact-panorama-card h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.page-intro h2 em,
.editorial-copy h2 em,
.pool-feature-copy h2 em,
.contact-panorama-card h2 em {
  color: var(--blue);
}

.prose {
  max-width: 560px;
  color: var(--ink-soft);
}

.prose .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.42;
}

.rooms-intro-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(89, 211, 223, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 246, 244, 0.58)),
    var(--paper);
}

.rooms-intro-section::before,
.rooms-intro-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.rooms-intro-section::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 46, 66, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 46, 66, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.rooms-intro-section::after {
  right: clamp(2rem, 6vw, 6rem);
  bottom: -8rem;
  width: clamp(240px, 30vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(4, 124, 158, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 0 0 38px rgba(255, 255, 255, 0.36);
}

.rooms-intro-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.rooms-intro-title {
  max-width: 760px;
}

.rooms-intro-title h2 {
  font-size: clamp(4rem, 7vw, 7.4rem);
  line-height: 0.92;
}

.rooms-intro-copy {
  max-width: none;
  padding: clamp(2rem, 3.4vw, 3.2rem);
  border: 1px solid rgba(9, 46, 66, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(9, 46, 66, 0.11);
  backdrop-filter: blur(18px);
}

.rooms-intro-copy .lead {
  margin-bottom: 1.2rem;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.rooms-intro-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  background: rgba(9, 46, 66, 0.12);
}

.rooms-intro-facts span {
  display: block;
  padding: 1.1rem 0.9rem;
  background: rgba(251, 250, 246, 0.94);
}

.rooms-intro-facts b,
.rooms-intro-facts small {
  display: block;
}

.rooms-intro-facts b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.rooms-intro-facts small {
  margin-top: 0.4rem;
  color: var(--blue);
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.editorial-feature {
  padding-bottom: clamp(6rem, 10vw, 10rem);
  background: var(--paper);
}

.editorial-grid,
.pool-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.editorial-grid figure,
.pool-feature-grid figure {
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-grid img,
.pool-feature-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.editorial-copy p:not(.eyebrow),
.pool-feature-copy p:not(.eyebrow) {
  margin-top: 2rem;
  color: var(--ink-soft);
}

.heading-action {
  max-width: 430px;
  padding-bottom: 0.5rem;
  color: var(--ink-soft);
}

.heading-action .text-link {
  margin-top: 1rem;
  color: var(--ink);
}

.home-stays {
  background: var(--paper);
}

.stay-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.stay-preview {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 2rem;
  color: white;
}

.stay-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(2, 28, 40, 0.72));
  content: "";
}

.stay-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-preview span,
.stay-preview h3 {
  position: absolute;
  z-index: 2;
  left: 2rem;
}

.stay-preview span {
  bottom: 6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stay-preview h3 {
  bottom: 1.8rem;
  margin: 0;
  font-size: 3rem;
}

.home-links {
  background: var(--sky);
}

.photo-links {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(223, 246, 244, 0.8), rgba(223, 246, 244, 0.8)), url("olive-terrace.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.home-links-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-link-card {
  position: relative;
  min-height: 330px;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
  background: rgba(235, 250, 248, 0.74);
  backdrop-filter: blur(12px);
  transition: background 240ms ease, color 240ms ease;
}

.home-link-card:last-child { border-right: 0; }
.home-link-card > span { color: var(--blue); font-size: 0.65rem; letter-spacing: 0.1em; }
.home-link-card h3 { margin: 4rem 0 1rem; font-size: 2.4rem; }
.home-link-card p { max-width: 280px; color: var(--ink-soft); }
.home-link-card b { position: absolute; right: 2.5rem; bottom: 2rem; font-size: 1.4rem; }
.home-link-card:hover { background: var(--ink); color: white; }
.home-link-card:hover p, .home-link-card:hover > span { color: rgba(255, 255, 255, 0.75); }

.page-cta {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  color: white;
}

.page-cta.compact-cta { min-height: 70svh; }

.page-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 25, 37, 0.72), rgba(2, 25, 37, 0.06));
}

.page-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-cta h2 {
  margin-bottom: 2.2rem;
  font-size: clamp(4rem, 7vw, 7rem);
}

.page-cta h2 em { color: #c7f4f1; }

.pool-feature {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--paper);
}

.pool-feature-grid { grid-template-columns: 1.25fr 0.75fr; }
.pool-feature-copy .text-link { margin-top: 1rem; }

/* Rooms experience */
.rooms-experience {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 11vw, 11rem) 0 clamp(6rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 82% 14%, rgba(82, 196, 205, 0.18), transparent 26%),
    radial-gradient(circle at 8% 78%, rgba(179, 214, 205, 0.11), transparent 30%),
    #062d40;
  color: white;
}

.rooms-experience::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.rooms-experience-heading,
.room-collection-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.rooms-experience-heading h2,
.room-collection-heading h2 {
  margin: 0;
  font-size: clamp(3.6rem, 6.8vw, 7.4rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.rooms-experience-heading h2 em { color: #bcece8; }
.rooms-experience-heading > p {
  max-width: 440px;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.room-selector {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 27, 40, 0.58);
  backdrop-filter: blur(16px);
}

.room-select-tab {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 118px;
  align-content: center;
  padding: 1.3rem 1.5rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  text-align: left;
  transition: background 280ms ease, color 280ms ease, transform 280ms ease;
}

.room-select-tab:last-child { border-right: 0; }
.room-select-tab::after {
  position: absolute;
  right: 1.5rem;
  bottom: -1px;
  left: 1.5rem;
  height: 3px;
  background: white;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 280ms ease, transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.room-select-tab span {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.room-select-tab b {
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 400;
  text-overflow: ellipsis;
}

.room-select-tab small {
  margin-top: 0.25rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-select-tab:hover,
.room-select-tab.active {
  background: rgba(255, 255, 255, 0.09);
  color: white;
}

.room-select-tab.active::after { opacity: 1; transform: scaleX(1); }

.room-selector,
.room-photo-controls,
.room-switch,
.room-filmstrip {
  display: none;
}

.room-stage {
  --room-accent: #c89458;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(370px, 0.75fr);
  background: #f9fbf8;
  box-shadow: 0 48px 100px rgba(0, 12, 21, 0.36);
  color: var(--ink);
  isolation: isolate;
}

.room-stage::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 38%;
  height: 5px;
  background: var(--room-accent);
  content: "";
  transition: background 500ms ease;
}

.room-stage-media {
  position: relative;
  min-width: 0;
  min-height: 720px;
  overflow: hidden;
  background: #cbdcdb;
}

.room-stage-main {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.room-stage-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 57%, rgba(1, 23, 34, 0.6));
  content: "";
  pointer-events: none;
}

.room-stage-main > img,
.room-stage-secondary > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 320ms ease, filter 320ms ease;
}

.room-stage-main > img.changing,
.room-stage-secondary > img.changing {
  opacity: 0;
  filter: blur(4px);
}

.room-stage-main figcaption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-stage-secondary {
  position: absolute;
  z-index: 3;
  top: 2rem;
  right: 2rem;
  width: clamp(150px, 24%, 230px);
  aspect-ratio: 0.86;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(0, 22, 31, 0.3);
  transform: translateZ(30px) rotate(1.8deg);
}

.room-photo-controls {
  position: absolute;
  z-index: 4;
  right: 2rem;
  bottom: 4.6rem;
  display: flex;
  min-height: 46px;
  align-items: center;
  background: rgba(3, 35, 50, 0.84);
  color: white;
  backdrop-filter: blur(12px);
}

.room-photo-controls button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1rem;
  transition: background 220ms ease;
}

.room-photo-controls button:hover { background: rgba(255, 255, 255, 0.15); }
.room-photo-controls span { min-width: 72px; text-align: center; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; }

.room-stage-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5.5rem) clamp(2.5rem, 4.5vw, 4.8rem);
  overflow: hidden;
}

.room-stage-copy::after {
  position: absolute;
  right: -0.13em;
  bottom: -0.25em;
  color: var(--room-accent);
  content: attr(data-room-number);
  font-family: var(--serif);
  font-size: clamp(10rem, 16vw, 17rem);
  line-height: 1;
  opacity: 0.06;
  pointer-events: none;
  transition: color 500ms ease;
}

.room-type {
  margin: 0 0 0.5rem;
  color: var(--room-accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-stage-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(4rem, 6.6vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.room-stage-copy h4 {
  max-width: 430px;
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  font-weight: 400;
  line-height: 1.18;
}

.room-stage-copy > p:not(.eyebrow, .room-type) {
  max-width: 450px;
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.room-facts {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.room-facts li { padding: 1rem 0.7rem 1rem 0; }
.room-facts span,
.room-facts strong { display: block; }
.room-facts span { color: var(--ink-soft); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.room-facts strong { margin-top: 0.32rem; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.room-stage-copy .room-amenities { position: relative; z-index: 1; margin-bottom: 1.8rem; }
.room-stage-copy .room-amenities li { border-color: color-mix(in srgb, var(--room-accent) 35%, transparent); background: color-mix(in srgb, var(--room-accent) 7%, white); color: var(--ink); }
.room-stage-copy .button { position: relative; z-index: 2; }

.room-switch {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.room-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-switch button:hover { color: var(--room-accent); }
.room-switch span { margin-inline: 0.35rem; }

.room-filmstrip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 1px;
  background: #dce5e3;
}

.room-filmstrip button {
  position: relative;
  height: 138px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #cbd8d7;
}

.room-filmstrip button::after {
  position: absolute;
  inset: 0;
  border: 0 solid var(--room-accent);
  background: rgba(1, 28, 41, 0.25);
  content: "";
  transition: border-width 220ms ease, background 220ms ease;
}

.room-filmstrip img { width: 100%; height: 100%; object-fit: cover; }
.room-filmstrip button.active::after { border-width: 4px; background: transparent; }

.room-collection { position: relative; overflow: hidden; }
.room-collection-heading { margin-bottom: clamp(3rem, 6vw, 5rem); }
.room-collection-heading h2 em { color: var(--blue); }
.room-collection-heading > p { max-width: 430px; margin: 0 0 0.5rem; color: var(--ink-soft); }
.room-collection-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 270px;
  gap: 1rem;
  perspective: 1200px;
}

.room-collection-card {
  position: relative;
  grid-column: span 3;
  overflow: hidden;
  padding: 2rem;
  border: 0;
  background: var(--ink);
  color: white;
  text-align: left;
  box-shadow: 0 25px 55px rgba(9, 46, 66, 0.15);
}

.room-collection-card:nth-child(n + 3) { grid-column: span 2; }
.room-collection-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-collection-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 24, 36, 0.08) 28%, rgba(2, 24, 36, 0.88)); content: ""; }
.room-collection-card span,
.room-collection-card h3,
.room-collection-card p,
.room-collection-card b { position: absolute; z-index: 2; left: 2rem; }
.room-collection-card span { top: 1.7rem; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.room-collection-card h3 { bottom: 3.8rem; margin: 0; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1; }
.room-collection-card p { bottom: 1.5rem; margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 0.68rem; letter-spacing: 0.04em; }
.room-collection-card b { top: 1.5rem; right: 1.7rem; left: auto; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }

.rooms-page-section {
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: var(--paper);
}

.room-summary {
  background: var(--sand);
}

.room-summary-bg {
  position: relative;
  background-image: linear-gradient(rgba(242, 238, 228, 0.76), rgba(242, 238, 228, 0.88)), url("panoramic-room.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.room-summary-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.room-summary article {
  min-height: 300px;
  padding: 2.2rem;
  border-right: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.72);
  backdrop-filter: blur(10px);
}

.room-summary article:last-child { border-right: 0; }
.room-summary article > span { color: var(--blue); font-size: 0.62rem; }
.room-summary h3 { margin: 4rem 0 1rem; font-size: 2rem; }
.room-summary p { color: var(--ink-soft); font-size: 0.82rem; }

.gallery-page-section {
  padding-bottom: clamp(6rem, 10vw, 10rem);
  background: var(--paper);
}

.gallery-grid-expanded {
  grid-auto-rows: 330px;
}

.blog-section {
  padding-bottom: clamp(6rem, 10vw, 10rem);
  background: var(--paper);
}

.blog-depth-bg {
  position: relative;
  padding-top: clamp(2rem, 4vw, 4rem);
  background-image: linear-gradient(rgba(251, 250, 246, 0.84), rgba(251, 250, 246, 0.94)), url("terrace-egadi.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.blog-card {
  background: white;
  box-shadow: 0 20px 55px rgba(9, 46, 66, 0.1);
}

.blog-card > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.blog-card-body { padding: 2rem; }
.blog-meta { color: var(--blue); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.blog-card h2 { margin-bottom: 1.2rem; font-size: 2.25rem; line-height: 1.05; }
.blog-card-body > p:not(.blog-meta) { color: var(--ink-soft); font-size: 0.86rem; }
.blog-card-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-card-link span {
  font-size: 1rem;
  transition: transform 200ms ease;
}

.blog-card-link:hover span { transform: translateX(4px); }

.article-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #07334a;
  color: white;
}

.article-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 38, 54, 0.82), rgba(3, 38, 54, 0.28) 58%, rgba(3, 38, 54, 0.1)),
    linear-gradient(0deg, rgba(3, 38, 54, 0.82), transparent 58%);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 9rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.article-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 980px;
  margin: 0.4rem 0 1.4rem;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.article-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.article-meta-row span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(65, 184, 198, 0.12), transparent 32%),
    linear-gradient(180deg, var(--paper), #eef8f6);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.article-aside {
  order: 2;
  position: sticky;
  top: 120px;
}

.article-body {
  order: 1;
  padding: clamp(2.2rem, 5vw, 5rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(8, 51, 70, 0.11);
}

.article-body .lead {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.article-body p + p { margin-top: 1rem; }

.article-body h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.article-body h3 {
  margin: 2.2rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.15;
}

.article-body a:not(.button) {
  color: var(--blue);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.article-body ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.article-highlight {
  margin: 2rem 0;
  border-left: 4px solid var(--blue);
  padding: 1.4rem 1.6rem;
  background: #e7f8f6;
  color: var(--ink-soft);
  line-height: 1.7;
}

.article-highlight strong { color: var(--ink); }

.article-toc,
.article-cta-box {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(8, 51, 70, 0.09);
}

.article-toc {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-toc a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-decoration: none;
}

.article-toc a:hover { color: var(--blue); }

.article-cta-box {
  margin-top: 1rem;
  background: #07334a;
  color: white;
}

.article-cta-box h2 {
  margin: 0.6rem 0 1.2rem;
  font-size: 2rem;
  line-height: 1.05;
}

.article-cta-box .eyebrow { color: #9ee3e3; }

.article-faq {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.article-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.article-faq summary {
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

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

.article-faq summary::after {
  float: right;
  color: var(--blue);
  content: "+";
}

.article-faq details[open] summary::after { content: "−"; }

.article-faq details p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.contact-page { background: var(--paper); }

.contact-depth-bg {
  position: relative;
  background-image: linear-gradient(90deg, rgba(251, 250, 246, 0.95), rgba(223, 246, 244, 0.72)), url("olive-terrace.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.contact-depth-bg .contact-grid {
  position: relative;
  z-index: 1;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 3rem;
}

.contact-facts div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-facts span,
.contact-facts strong { display: block; }
.contact-facts span { color: var(--blue); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-facts strong { margin-top: 0.35rem; font-family: var(--serif); font-size: 1rem; font-weight: 400; }

.contact-panorama {
  position: relative;
  min-height: 760px;
  background: var(--sand);
}

.contact-panorama > img {
  width: 72%;
  height: 760px;
  object-fit: cover;
}

.contact-panorama-card {
  position: absolute;
  right: 7vw;
  bottom: 0;
  width: min(520px, 46vw);
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--sky);
  box-shadow: var(--shadow);
}

.contact-panorama-card p:last-child { margin: 2rem 0 0; color: var(--ink-soft); }

/* Tablet */
@media (max-width: 1050px) {
  :root { --page: min(920px, calc(100vw - 3rem)); }

  .site-header {
    grid-template-columns: 190px 1fr 150px;
    padding-inline: 1.5rem;
  }

  .desktop-nav { gap: 1.2rem; }
  .desktop-nav a { font-size: 0.61rem; }

  .availability-bar {
    right: 1.5rem;
    left: 1.5rem;
    grid-template-columns: 1.05fr 1fr 1fr 0.7fr 0.72fr;
  }

  .availability-intro p { font-size: 1rem; }

  .room-media { min-height: 560px; }
  .room-tabs { overflow-x: auto; grid-template-columns: repeat(5, minmax(160px, 1fr)); }

  .room-selector { overflow-x: auto; grid-template-columns: repeat(5, minmax(165px, 1fr)); }
  .rooms-intro-grid { grid-template-columns: 1fr; }
  .rooms-intro-copy { max-width: 720px; }
  .room-stage { grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr); }
  .room-stage-media { min-height: 650px; }
  .room-stage-copy { padding-inline: 2.5rem; }
  .room-stage-copy h3 { font-size: clamp(4rem, 7vw, 5.6rem); }
  .room-filmstrip button { height: 112px; }
  .room-collection-grid { grid-auto-rows: 250px; }

  .gallery-grid { grid-auto-rows: 250px; }

  .room-summary-grid { grid-template-columns: repeat(3, 1fr); }
  .room-summary article { border-bottom: 1px solid var(--line); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { order: 1; position: static; }
  .article-body { order: 2; }
  .article-toc,
  .article-cta-box { max-width: none; }
}

/* Compact tablet navigation and room layout */
@media (min-width: 781px) and (max-width: 1120px) {
  .site-header,
  .site-header.scrolled {
    height: 72px;
    grid-template-columns: 1fr auto;
    padding-inline: 1.5rem;
  }

  .desktop-nav,
  .header-cta { display: none; }

  .site-header:not(.scrolled) .brand {
    width: 120px;
    height: 60px;
    padding: 0.2rem 0.4rem;
  }

  .site-header.scrolled .brand { width: 112px; height: 58px; }
  .site-header .brand img { width: 104px; max-height: 56px; }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

  .mobile-menu {
    position: fixed;
    z-index: 1;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(100dvh - 72px);
    height: calc(100svh - 72px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.7rem;
    overflow-y: auto;
    padding: 2.6rem 3rem 3rem;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

  .mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu > a:not(.button) { font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3.2rem); line-height: 1; }
  .mobile-menu .button { margin-top: 1rem; }

  .room-stage { grid-template-columns: 1fr; }
  .room-stage::before { width: 100%; }
  .room-stage-media { min-height: 620px; }
  .room-stage-copy { padding: 4rem clamp(3rem, 8vw, 5rem); }
  .room-stage-copy h3 { font-size: clamp(4.6rem, 10vw, 6rem); }
  .room-filmstrip button { height: 105px; }
}

/* Mobile */
@media (max-width: 780px) {
  :root { --page: calc(100vw - 2rem); }

  .section-space { padding-block: 4.75rem; }

  .eyebrow { gap: 0.55rem; margin-bottom: 1.35rem; font-size: 0.62rem; letter-spacing: 0.16em; }
  .eyebrow::before { width: 1.8rem; }
  .text-link { min-height: 44px; align-items: center; padding-block: 0.6rem; }

  .site-header,
  .site-header.scrolled {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding-inline: 1rem;
  }

  .site-header:not(.scrolled) .brand {
    width: 112px;
    padding: 0.2rem 0.35rem;
  }

  .site-header.scrolled .brand {
    width: 104px;
    height: 54px;
  }

  .site-header.scrolled .brand img {
    width: 96px;
    max-height: 52px;
  }

  .brand {
    z-index: 2;
    width: 112px;
    height: 58px;
  }

  .brand img {
    width: 102px;
    height: auto;
    max-height: 56px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

  .mobile-menu {
    position: fixed;
    z-index: 1;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(100dvh - 68px);
    height: calc(100svh - 68px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    overflow-y: auto;
    padding: max(2rem, env(safe-area-inset-top)) 2rem 2rem;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a:not(.button) {
    display: flex;
    min-height: 44px;
    align-items: center;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 9.5vw, 3.3rem);
    line-height: 1;
  }

  .mobile-menu .button { margin-top: 1rem; }

  .hero { min-height: 860px; }
  .hero-image { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2, 25, 37, 0.72), rgba(2, 25, 37, 0.18)), linear-gradient(0deg, rgba(2, 25, 37, 0.55), transparent); }

  .hero-content {
    min-height: 650px;
    justify-content: flex-end;
    padding-top: 6rem;
    padding-bottom: 4.2rem;
  }

  .hero h1 { font-size: clamp(3.8rem, 17vw, 6rem); line-height: 0.92; }
  .hero h1 em { margin-left: 1rem; }
  .hero-copy { max-width: 92%; font-size: 0.95rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .hero-side-label { display: none; }

  .availability-bar {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    min-height: 184px;
    grid-template-columns: 1fr 1fr;
  }

  .availability-intro { display: none; }
  .availability-bar label { min-height: 82px; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); }
  .availability-bar label:nth-of-type(2) { border-right: 0; }
  .availability-bar label:nth-of-type(3) { border-bottom: 0; }
  .availability-bar button { min-height: 82px; }
  .availability-bar input,
  .availability-bar select { min-height: 44px; font-size: 1rem; }

  .intro-grid,
  .split-heading,
  .services-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-grid { margin-bottom: 3.5rem; }
  .intro-heading h2,
  .section-heading h2,
  .services-title h2,
  .contact-intro h2 { font-size: clamp(2.9rem, 14vw, 4.5rem); }

  .visual-story { min-height: 620px; }
  .visual-main { right: 0; width: 93%; height: 66%; }
  .visual-float { left: 0; width: 54%; height: 37%; border-width: 7px; }
  .visual-note { right: 0; bottom: 5%; width: 40%; padding-left: 1rem; }
  .visual-note .note-number { margin-bottom: 1.5rem; }
  .circle-stamp { top: 50%; left: auto; right: 0.4rem; width: 92px; height: 92px; }

  .values-grid { grid-template-columns: 1fr; }
  .photo-values { padding-block: 2rem; background-attachment: scroll; }
  .value-card { min-height: auto; padding: 3rem 1rem; border-right: 0; border-bottom: 1px solid rgba(9, 46, 66, 0.12); }
  .value-card:last-child { border-bottom: 0; }
  .value-icon { margin-bottom: 2rem; }

  .split-heading { margin-bottom: 3rem; }

  .room-explorer { grid-template-columns: 1fr; box-shadow: 0 20px 50px rgba(10, 55, 70, 0.13); }
  .room-media { min-height: 420px; }
  .room-detail { padding: 2.4rem 1.4rem 2.8rem; }
  .room-detail h3 { font-size: 3.7rem; }
  .room-tag { right: 1rem; bottom: 1.2rem; }
  .room-index { left: 1rem; bottom: 1.2rem; }
  .room-tabs { grid-column: auto; grid-row: 2; grid-template-columns: repeat(5, minmax(135px, 1fr)); }
  .room-tab { min-height: 78px; padding: 1rem; font-size: 1rem; }

  .rooms-experience { padding-block: 5rem; }
  .rooms-experience-heading,
  .room-collection-heading { grid-template-columns: 1fr; gap: 1.7rem; }
  .rooms-experience-heading h2,
  .room-collection-heading h2 { font-size: clamp(3.4rem, 15vw, 5.2rem); }
  .rooms-experience-heading > p,
  .room-collection-heading > p { max-width: 94%; }

  .room-selector {
    width: 100%;
    margin-bottom: 0.8rem;
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    scroll-snap-type: x proximity;
  }

  .room-select-tab { min-height: 98px; padding: 1.1rem; scroll-snap-align: start; }
  .room-select-tab span { top: 0.8rem; right: 0.8rem; }
  .room-select-tab b { font-size: 1.25rem; }
  .room-stage { grid-template-columns: 1fr; box-shadow: 0 28px 60px rgba(0, 12, 21, 0.32); }
  .room-stage::before { width: 100%; }
  .room-stage-media { min-height: 520px; }
  .room-stage-secondary { top: 1rem; right: 1rem; width: 28%; min-width: 112px; border-width: 5px; }
  .room-stage-main figcaption { right: 1rem; bottom: 1.3rem; left: 1rem; }
  .room-stage-main figcaption span:last-child { max-width: 58%; text-align: right; }
  .room-photo-controls { right: 1rem; bottom: 3.3rem; }
  .room-stage-copy { padding: 3rem 1.25rem 2.5rem; }
  .room-stage-copy h3 { font-size: clamp(3.7rem, 16vw, 5.5rem); }
  .room-stage-copy h4 { font-size: 1.55rem; }
  .room-stage-copy > p:not(.eyebrow, .room-type) { font-size: 0.88rem; }
  .room-facts { grid-template-columns: 1fr; }
  .room-facts li {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: baseline;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }
  .room-facts li:last-child { border-bottom: 0; }
  .room-facts strong { margin-top: 0; font-size: 0.95rem; text-align: right; }
  .room-switch { margin-top: 2rem; }
  .room-switch span { display: none; }
  .room-switch button {
    display: grid;
    width: 48px;
    min-width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1rem;
  }
  .room-filmstrip { overflow-x: auto; grid-template-columns: repeat(5, minmax(112px, 1fr)); }
  .room-filmstrip button { height: 92px; }

  .room-collection-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .room-collection-card,
  .room-collection-card:nth-child(n + 3) { grid-column: auto; }
  .room-collection-card { min-height: 360px; padding: 1.4rem; }
  .room-collection-card span,
  .room-collection-card h3,
  .room-collection-card p { left: 1.4rem; }
  .room-collection-card h3 { font-size: 3.2rem; }
  .room-collection-card b { right: 1.4rem; }

  .water-section,
  .water-content { min-height: 760px; }
  .summer-video-section,
  .summer-video-content { min-height: 760px; }
  .summer-video-content { justify-content: flex-end; padding-bottom: 4rem; }
  .summer-video-content h2 { font-size: clamp(3.5rem, 15vw, 5.4rem); }
  .summer-video-section video,
  .summer-video-section > .hosting-poster { object-position: 62% center; }
  .water-content h2,
  .territory-content h2 { font-size: clamp(3.6rem, 15vw, 5.5rem); }
  .water-content { justify-content: flex-start; padding-top: 7rem; }
  .round-link { right: 1rem; bottom: 3rem; width: 120px; height: 120px; }

  .services-title { position: static; }
  .service-row { grid-template-columns: 35px 1fr; padding-block: 1.4rem; }
  .service-row p { grid-column: 2; }

  .gallery-grid { grid-auto-rows: 250px; grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-tall { grid-row: auto; }

  .territory-section,
  .territory-content { min-height: 760px; }
  .territory-section > img { object-position: 62% center; }

  .form-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .full-field { grid-column: auto; }
  .contact-form { padding: 2rem 1.2rem; }
  .contact-form input:not([type="checkbox"]),
  .contact-form select,
  .contact-form textarea { min-height: 48px; font-size: 1rem; }
  .contact-form textarea { min-height: 120px; }
  .privacy-check input { width: 20px; height: 20px; flex: 0 0 auto; }
  .contact-intro address a { display: flex; min-height: 44px; align-items: center; }

  .sub-hero,
  .sub-hero-content { min-height: 700px; }
  .sub-hero { background-position: center; }
  .sub-hero-rooms { background-position: 38% center; }
  .sub-hero-rooms,
  .sub-hero-rooms .sub-hero-content { min-height: 760px; }
  .sub-hero-rooms { background-position: 47% center; }
  .sub-hero-rooms .sub-hero-content { padding-top: 8rem; padding-bottom: 5rem; }
  .sub-hero-content { padding-bottom: 4.5rem; }
  .sub-hero h1 { font-size: clamp(3.8rem, 17vw, 6rem); line-height: 0.92; }
  .sub-hero-content > p:last-child { max-width: 92%; font-size: 0.94rem; }

  .page-intro-grid,
  .editorial-grid,
  .pool-feature-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .editorial-copy,
  .pool-feature-copy { order: -1; }
  .page-intro h2,
  .editorial-copy h2,
  .pool-feature-copy h2,
  .contact-panorama-card h2 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .rooms-intro-section { padding-block: 4.25rem; }
  .rooms-intro-title h2 { font-size: clamp(3.2rem, 15vw, 5.2rem); line-height: 0.94; }
  .rooms-intro-copy { padding: 1.55rem; }
  .rooms-intro-copy .lead { font-size: 1.32rem; }
  .rooms-intro-facts { grid-template-columns: 1fr; margin-top: 1.45rem; }
  .rooms-intro-facts span { padding: 1rem; }
  .editorial-grid figure,
  .pool-feature-grid figure { min-height: 450px; }

  .stay-preview-grid,
  .home-links-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .stay-preview { min-height: 470px; }
  .home-link-card { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-link-card h3 { margin-top: 3rem; }

  .page-cta,
  .page-cta.compact-cta,
  .page-cta-content { min-height: 700px; }
  .page-cta h2 { font-size: clamp(3.8rem, 16vw, 5.5rem); }
  .page-cta > img { object-position: 58% center; }

  .room-summary-grid { grid-template-columns: 1fr; }
  .room-summary article { min-height: auto; padding: 2.2rem 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .room-summary h3 { margin-top: 2rem; }

  .gallery-grid-expanded { grid-auto-rows: 280px; }
  .blog-card > img { height: 280px; }
  .blog-card h2 { font-size: 2rem; }
  .blog-card-link { min-height: 48px; }
  .article-hero { min-height: 760px; }
  .article-hero > img { object-position: 58% center; }
  .article-hero-content { padding-bottom: 4.5rem; }
  .article-hero h1 { font-size: clamp(3.3rem, 14vw, 5.2rem); line-height: 0.94; }
  .article-meta-row span { width: 100%; }
  .article-body { padding: 2.2rem 1.2rem; }
  .article-body .lead { font-size: 1.12rem; }
  .article-body p,
  .article-body li { font-size: 0.96rem; line-height: 1.75; }
  .article-body h2 { margin-top: 2.5rem; font-size: clamp(2rem, 10vw, 3rem); }
  .article-body h3 { font-size: 1.4rem; }
  .article-highlight { padding: 1.2rem; }
  .article-toc,
  .article-cta-box { padding: 1.35rem; }
  .article-toc a,
  .article-faq summary { display: flex; min-height: 44px; align-items: center; }

  .contact-facts { grid-template-columns: 1fr; }
  .contact-panorama { min-height: auto; padding-bottom: 3rem; }
  .contact-panorama > img { width: 100%; height: 500px; }
  .contact-panorama-card { position: relative; right: auto; bottom: auto; width: calc(100% - 2rem); margin: -4rem auto 0; padding: 2.5rem 1.5rem; }

  .photo-links,
  .services-depth-bg,
  .room-summary-bg,
  .blog-depth-bg,
  .contact-depth-bg { background-attachment: scroll; }

  .site-footer { padding-top: 4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 3rem; }
  .footer-brand { grid-column: auto; }
  .footer-grid > div:not(.footer-brand) { gap: 0; }
  .footer-grid > div:not(.footer-brand) a { display: flex; min-width: 44px; min-height: 44px; align-items: center; }
  .footer-label { margin-bottom: 0.35rem; }
  .footer-top { position: static; justify-self: start; margin-top: 0.5rem; }
  .footer-bottom { gap: 1rem; align-items: flex-start; flex-direction: column; }
  .footer-legal { justify-content: flex-start; }

  .legal-hero { min-height: 640px; background-position: 58% center; }
  .legal-hero.cookie-hero { background-position: 62% center; }
  .legal-hero-content { padding-bottom: 4.8rem; }
  .legal-hero h1 { font-size: clamp(3.8rem, 17vw, 6rem); line-height: 0.92; }
  .legal-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal-aside { position: static; padding: 1.4rem; }
  .legal-copy { padding: 2rem 1.2rem; }
  .legal-copy h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .legal-table,
  .legal-table thead,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td { display: block; }
  .legal-table thead { display: none; }
  .legal-table td { border-bottom: 0; }
  .legal-table td:last-child { border-bottom: 1px solid var(--line); }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .button { width: 100%; }

  .toast { right: 1rem; bottom: 1rem; left: 1rem; max-width: none; }

  .cinematic-meta {
    top: 5.25rem;
    right: 1rem;
    left: 1rem;
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }

  .cinematic-section { --cinema-bar: 12px; }
  .relax-feature-section,
  .relax-feature-content { min-height: 800px; }
  .relax-feature-content { justify-content: flex-end; padding-bottom: 4.5rem; }
  .relax-feature-content h2 { font-size: clamp(3.6rem, 16vw, 5.6rem); }
  .relax-feature-content > p:not(.eyebrow) { max-width: 92%; font-size: 0.96rem; }
  .relax-feature-section video,
  .relax-feature-section > .hosting-poster { object-position: 69% center; }
  .relax-breath { right: -0.08em; bottom: 0.03em; font-size: 9rem; }
  .pool-color-grade { opacity: 0.58; }
  .film-grain { opacity: 0.022; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-image { opacity: 1; transform: none; }
  .film-grain { display: none; }
  .hero-content,
  .cinematic-section video,
  .cinematic-section > .hosting-poster,
  .summer-video-content,
  .relax-feature-content,
  .water-content { transform: none !important; }
  .magnetic { translate: none; }
  .cinematic-section::before,
  .cinematic-section::after { height: 0; }
}

.nav-toggle-checkbox:checked ~ .mobile-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.nav-toggle-checkbox:checked + .menu-toggle > span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle-checkbox:checked + .menu-toggle > span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.reveal,
.reveal-image {
  --reveal-y: 0px;
  --reveal-scale: 1;
  --reveal-rotate-x: 0deg;
  opacity: 1;
  filter: none;
  transform: none;
  clip-path: none;
}
