﻿@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

:root {
  --navy: #071b33;
  --deep-blue: #0b2745;
  --midnight: #04111f;
  --sea: #2f5f73;
  --teal: #6f9fa6;
  --mist: #eaf2f4;
  --pearl: #f7f8f5;
  --sand: #d8cab7;
  --white: #ffffff;
  --glass-navy: rgba(7, 27, 51, 0.68);
  --glass-light: rgba(255, 255, 255, 0.18);
  --toolbar-glass: rgba(72, 91, 109, 0.24);
  --toolbar-edge: rgba(214, 226, 232, 0.18);
  --text: #102238;
  --muted: #61707a;
  --heading-dark: #1c2f3d;
  --body-blue: #536d80;
  --body-deep: #263d4e;
  --accent: #4fa5c7;
  --accent-strong: #2f6f88;
  --accent-soft: #eff9fc;
  --accent-border: rgba(79, 165, 199, 0.32);
  --accent-muted: #a8d0e0;
  --success: #1f9f61;
  --error: #a33c3c;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --soft-shadow: 0 18px 44px rgba(47, 95, 115, 0.08);
  --card-shadow: 0 24px 58px rgba(47, 95, 115, 0.11);
  --border: rgba(7, 27, 51, 0.14);
  --shadow: 0 22px 70px rgba(4, 17, 31, 0.18);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--pearl);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--sea);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 740px;
  font-size: clamp(4rem, 11vw, 8.8rem);
}

h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

p {
  margin: 0;
}

.text-accent {
  color: var(--accent);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(78px, 10vw, 140px) 0;
}

.section--light {
  background: var(--mist);
}

.section--deep {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(111, 159, 166, 0.32), transparent 34%),
    linear-gradient(135deg, var(--midnight), var(--deep-blue));
}

.section--deep h2,
.section--deep .section-note {
  color: var(--white);
}

.section--map {
  background: linear-gradient(180deg, var(--pearl), var(--mist));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.section-note) {
  margin-top: 18px;
  color: var(--muted);
}

.section--deep .section-heading p:not(.section-note) {
  color: rgba(255, 255, 255, 0.76);
}

.section-note {
  margin-bottom: 12px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.nav-shell {
  width: min(100% - 32px, 1120px);
  min-height: 72px;
  margin-inline: auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(114, 132, 147, 0.3), rgba(47, 70, 91, 0.18)),
    var(--toolbar-glass);
  border: 1px solid var(--toolbar-edge);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 54px rgba(4, 17, 31, 0.22);
  backdrop-filter: blur(22px) saturate(128%);
  pointer-events: auto;
}

.brand {
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
}

.brand img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(4, 17, 31, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  font-size: 0.9rem;
}

.site-nav a,
.phone-link {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.site-nav a:hover,
.phone-link:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.nav-mobile-actions {
  display: none;
}

.nav-toggle {
  display: none;
  color: var(--white);
  background: transparent;
  border: 0;
}

.button {
  max-width: 100%;
  min-height: 44px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--navy);
  background: var(--white);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button--outline {
  color: var(--navy);
  border-color: var(--border);
  background: var(--white);
}

.button--text {
  color: var(--sea);
  border-color: transparent;
  background: transparent;
}

.button--whatsapp {
  color: var(--white);
  background: var(--success);
}

.button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

.button-row,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--midnight);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.18) saturate(1.04);
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  transition: none;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 31, 0.36), rgba(4, 17, 31, 0.1), rgba(4, 17, 31, 0)),
    linear-gradient(180deg, rgba(4, 17, 31, 0.06), rgba(4, 17, 31, 0.26));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1320px);
  margin-left: clamp(24px, 7vw, 96px);
  margin-right: auto;
  padding: 180px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  gap: 0;
}

.hero-title {
  color: var(--white);
  max-width: 720px;
  font-size: clamp(4.6rem, 8.6vw, 8rem);
  line-height: 0.86;
}

.hero-title__line {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero-title__line--accent {
  margin-top: 8px;
  margin-left: clamp(0px, 3.2vw, 42px);
}

.hero__brand-line {
  width: min(100%, 650px);
  margin: 22px 0 14px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero__brand-line img {
  width: clamp(86px, 9vw, 132px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(4, 17, 31, 0.32));
}

.hero__brand-line span {
  flex: 1;
  min-width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.hero__copy p {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero__copy {
  min-width: 0;
  max-width: 100%;
}

.hero__copy h1,
.hero__copy p,
.button-row,
.room-meta {
  max-width: 100%;
}

.contact-strip {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0%, rgba(111, 159, 166, 0.28), transparent 30%),
    linear-gradient(135deg, var(--midnight), var(--deep-blue));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-strip__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
}

.contact-strip__heading {
  display: grid;
  gap: 4px;
}

.contact-strip__heading .section-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-strip__heading h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.contact-strip__links {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 10px;
}

.contact-strip__link {
  min-height: 64px;
  min-width: 150px;
  padding: 11px 14px;
  display: grid;
  align-content: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-strip__link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-strip__link span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-strip__link strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.25;
}

.contact-strip__button {
  min-height: 64px;
  align-self: stretch;
  white-space: nowrap;
}

.hero-card {
  padding: 26px;
  display: grid;
  gap: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-card strong {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.lead-block {
  display: grid;
  gap: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-strip,
.rules-grid,
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-strip span,
.rules-grid span,
.amenity-grid span {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.about-luxury {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(86px, 8vw, 122px) 0 clamp(70px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(255, 255, 255, 0.62), transparent 30%),
    radial-gradient(circle at 18% 92%, rgba(111, 159, 166, 0.16), transparent 30%),
    linear-gradient(108deg, #f8fbfa 0%, #edf5f6 34%, rgba(237, 245, 246, 0.42) 58%, rgba(237, 245, 246, 0) 100%);
}

.about-luxury::before,
.about-luxury::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

.about-luxury::before {
  width: 44vw;
  height: 44vw;
  left: -18vw;
  bottom: -24vw;
  background: radial-gradient(circle, rgba(111, 159, 166, 0.24), transparent 68%);
}

.about-luxury::after {
  width: 34vw;
  height: 34vw;
  right: -12vw;
  top: 12%;
  background: radial-gradient(circle, rgba(7, 27, 51, 0.16), transparent 64%);
}

.about-luxury__image {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 auto;
  width: min(68vw, 1160px);
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.94) 0%, rgba(248, 251, 250, 0.58) 24%, rgba(248, 251, 250, 0.1) 48%, rgba(248, 251, 250, 0) 100%),
    url("../assets/images/about-sea-house.webp") center right / cover no-repeat;
  opacity: 1;
}

.about-luxury__mist {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 250, 0) 0%, rgba(248, 251, 250, 0.1) 86%, rgba(248, 251, 250, 0.36) 100%);
  pointer-events: none;
}

.about-luxury__grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(560px, 0.9fr);
  gap: clamp(24px, 3.5vw, 52px);
  align-items: stretch;
  min-height: clamp(610px, calc(100svh - 190px), 780px);
}

.about-luxury__intro {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-luxury__eyebrow {
  color: var(--sea);
}

.about-luxury__title {
  display: grid;
  gap: 0;
  max-width: 670px;
  font-size: clamp(4.45rem, 7.2vw, 7.8rem);
  letter-spacing: 0.01em;
  line-height: 0.82;
}

.about-luxury__title > span {
  display: block;
  white-space: nowrap;
}

.about-luxury__title .about-luxury__accent {
  display: inline;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.about-luxury__decor {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(47, 95, 115, 0.78);
}

.about-luxury__wave {
  flex: 0 0 auto;
  animation: waveDrift 4.8s ease-in-out infinite alternate;
}

.about-luxury__stamp {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(47, 95, 115, 0.78);
  border: 1px solid rgba(47, 95, 115, 0.36);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-align: center;
}

.about-luxury__content {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 0 clamp(24px, 5vh, 58px);
}

.about-luxury__copy {
  width: min(100%, 560px);
  margin-top: clamp(30px, 3.6vw, 48px);
  display: grid;
  gap: 18px;
  color: rgba(16, 34, 56, 0.74);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.72;
}

.about-luxury__lead {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 3.05vw, 3.15rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 0.98;
}

.about-luxury__features {
  width: min(100%, 620px);
  margin-top: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 24px 64px rgba(7, 27, 51, 0.14);
  backdrop-filter: blur(16px) saturate(126%);
}

.about-feature {
  position: relative;
  min-height: 136px;
  padding: 16px 16px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: rgba(16, 34, 56, 0.84);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 26px rgba(7, 27, 51, 0.08);
  backdrop-filter: blur(10px) saturate(116%);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.about-feature::before {
  content: "";
  width: 30px;
  height: 1px;
  margin: 8px 0 10px;
  order: 2;
  background: rgba(47, 95, 115, 0.68);
}

.about-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 95, 115, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 54px rgba(7, 27, 51, 0.15);
}

.about-feature--accent {
  border-color: rgba(47, 95, 115, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 0 1px rgba(111, 159, 166, 0.2),
    0 18px 42px rgba(47, 95, 115, 0.18),
    0 0 32px rgba(111, 159, 166, 0.2);
}

.about-feature__number {
  order: 1;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1;
}

.about-feature--accent .about-feature__number {
  color: var(--sea);
}

.about-feature h3 {
  order: 3;
  margin-bottom: 6px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.05;
}

.about-feature p {
  order: 4;
  font-size: 0.78rem;
  line-height: 1.34;
}

[data-reveal-section] [data-reveal-item] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-index, 0) * 95ms);
}

[data-reveal-section].is-visible [data-reveal-item] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes waveDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(10px);
  }
}

.review-grid blockquote {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.rooms-showcase {
  position: relative;
  padding: clamp(86px, 9vw, 138px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.95), transparent 34%),
    radial-gradient(circle at 78% 14%, rgba(170, 214, 228, 0.34), transparent 31%),
    linear-gradient(180deg, #edf6fa 0%, #f5fbfd 56%, #edf6fa 100%);
}

.rooms-showcase::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 50%;
  width: min(52vw, 760px);
  height: min(34vw, 480px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  filter: blur(42px);
  transform: translateX(-50%);
  pointer-events: none;
}

.rooms-showcase .container {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1420px);
}

.rooms-showcase__header {
  margin-bottom: clamp(46px, 5vw, 66px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
}

.rooms-showcase__note {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.rooms-showcase__note span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.rooms-showcase__title {
  margin-top: 24px;
  color: var(--heading-dark);
  font-family: var(--font-heading);
  font-size: clamp(4.6rem, 8vw, 7.4rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0;
}

.rooms-showcase__title span {
  display: block;
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}

.rooms-showcase__intro {
  max-width: 390px;
  color: var(--body-blue);
  font-size: 1.03rem;
  line-height: 1.8;
}

.room-slider {
  position: relative;
  max-width: 1340px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.room-slider__viewport {
  position: relative;
}

.room-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.room-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
  min-height: 520px;
}

.room-slide[hidden] {
  display: none;
}

.room-card__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--midnight);
}

.room-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 31, 0.06) 42%, rgba(4, 17, 31, 0.58) 100%);
  pointer-events: none;
}

.room-card__hero {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.room-card__tag,
.room-card__meta {
  position: absolute;
  z-index: 1;
  margin: 0;
  border-radius: var(--radius-md);
}

.room-card__tag {
  top: 30px;
  left: 30px;
  padding: 13px 20px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-card__meta {
  left: 30px;
  bottom: 30px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 27, 51, 0.82);
  backdrop-filter: blur(16px);
  font-size: 0.88rem;
  line-height: 1;
}

.room-card__meta strong {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 400;
}

.room-card__meta span {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.36);
}

.room-card__body {
  padding: clamp(34px, 4.2vw, 54px) clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.room-card__body h3 {
  max-width: 620px;
  color: var(--heading-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 4vw, 4.3rem);
  font-weight: 600;
  line-height: 0.94;
}

.room-card__body h3 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.room-card__body > p:not(.price) {
  max-width: 500px;
  color: var(--body-blue);
  font-size: 1.01rem;
  line-height: 1.78;
}

.price {
  color: var(--accent);
  font-size: clamp(1.34rem, 2vw, 1.78rem);
  font-weight: 400;
  line-height: 1;
}

.price span {
  color: var(--body-blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.room-services {
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  list-style: none;
}

.room-services li {
  padding: 7px 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.2;
}

.room-services li::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  opacity: 0.68;
}

.room-card .card-actions {
  gap: 12px;
}

.button--room-primary,
.button--room-outline {
  min-height: 58px;
  border-radius: var(--radius-md);
  font-size: 0.96rem;
}

.button--room-primary {
  min-width: min(100%, 250px);
  color: var(--white);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button--room-outline {
  min-width: 150px;
  color: var(--accent);
  background: var(--white);
  border-color: var(--accent-border);
}

.room-slider__arrows {
  position: static;
  justify-self: center;
  margin-top: -4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-slider__arrow,
.room-slider__dots button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.room-slider__arrow {
  width: 44px;
  height: 44px;
  color: var(--accent);
  background: var(--white);
}

.room-slider__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-slider__arrow--next {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.room-slider__arrow:hover,
.room-slider__dots button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.room-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.room-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: var(--accent-muted);
  border-color: transparent;
  font-size: 0;
}

.room-slider__dots button.is-active {
  width: 34px;
  background: var(--accent);
  border-color: var(--accent);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.calculator-panel,
.call-form {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  color: inherit;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(111, 159, 166, 0.22);
}

.services-fieldset {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.services-fieldset label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 500;
}

.services-fieldset input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-error,
.form-message {
  margin-top: 16px;
  color: #ffd6d6;
  font-weight: 700;
}

.form-message {
  color: var(--teal);
}

.form-message.is-error {
  color: var(--error);
}

.calculator-result {
  margin: 22px 0;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.result-grid strong {
  text-align: right;
}

.amenities-strip {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 4.5vw, 58px) 0;
  scroll-margin-top: 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.92), transparent 35%),
    radial-gradient(circle at 88% 50%, rgba(111, 159, 166, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fbfb 0%, #eef7f9 100%);
  border-top: 1px solid rgba(7, 27, 51, 0.06);
  border-bottom: 1px solid rgba(7, 27, 51, 0.08);
}

.amenities-strip::before {
  content: "";
  position: absolute;
  inset: auto -8% -70px 42%;
  height: 150px;
  border-radius: 999px;
  background: rgba(79, 165, 199, 0.12);
  filter: blur(34px);
  pointer-events: none;
}

.amenities-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(0, 560px);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
}

.amenities-strip__heading h2 {
  max-width: 430px;
  font-size: clamp(2.55rem, 4.3vw, 4.8rem);
  line-height: 0.88;
}

.amenities-strip__heading h2 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.amenities-slider {
  width: min(100%, 520px);
  min-width: 0;
  justify-self: end;
  display: grid;
  grid-template-columns: 44px minmax(0, 400px) 44px;
  gap: 12px;
  align-items: center;
}

.amenities-slider__viewport {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(79, 165, 199, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.amenities-slider__track {
  display: flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.amenities-slider__track::-webkit-scrollbar {
  display: none;
}

.amenity-pill {
  flex: 0 0 clamp(170px, 16vw, 190px);
  min-height: 60px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  color: var(--heading-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 27, 51, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(47, 95, 115, 0.06);
  font-weight: 700;
  line-height: 1.25;
  scroll-snap-align: start;
  white-space: nowrap;
}

.faq-intro {
  display: grid;
  align-content: start;
  gap: 18px;
}

.faq-intro .section-note {
  margin-bottom: 0;
}

.faq-intro p {
  max-width: 420px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.button--faq-rules {
  width: fit-content;
  min-height: 52px;
  padding-inline: 22px;
  color: var(--white);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 16px 34px rgba(47, 95, 115, 0.18);
}

.button--faq-rules:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.amenities-slider__button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(79, 165, 199, 0.24);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(47, 95, 115, 0.1);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.amenities-slider__button:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 165, 199, 0.5);
  background: var(--white);
}

.amenities-slider__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editorial-gallery {
  --gallery-duration: 6000ms;
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--midnight);
  isolation: isolate;
}

.editorial-gallery__slides,
.editorial-gallery__slide,
.editorial-gallery__shade,
.editorial-gallery__grain,
.editorial-gallery__sweeper {
  position: absolute;
  inset: 0;
}

.editorial-gallery__slide {
  z-index: 0;
  overflow: hidden;
}

.editorial-gallery__slide[hidden] {
  display: none;
}

.editorial-gallery__slide.is-current {
  display: block;
  z-index: 1;
}

.editorial-gallery__slide.is-revealing {
  z-index: 2;
  animation: galleryRevealRight 1100ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.editorial-gallery__slide.is-revealing.is-prev {
  animation-name: galleryRevealLeft;
}

.editorial-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 6800ms ease;
}

.editorial-gallery__slide.is-current img {
  transform: scale(1);
}

.editorial-gallery__shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(3, 12, 22, 0.88) 0%, rgba(3, 12, 22, 0.48) 27%, rgba(3, 12, 22, 0.12) 58%, rgba(3, 12, 22, 0.82) 100%),
    linear-gradient(180deg, rgba(3, 12, 22, 0.44) 0%, rgba(3, 12, 22, 0.06) 45%, rgba(3, 12, 22, 0.84) 100%);
  pointer-events: none;
}

.editorial-gallery__grain {
  z-index: 4;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7) 0 0.5px, transparent 0.9px),
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.42) 0 0.5px, transparent 0.9px),
    radial-gradient(circle at 45% 80%, rgba(0, 0, 0, 0.7) 0 0.6px, transparent 1px);
  background-size: 4px 4px, 5px 5px, 6px 6px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.editorial-gallery__sweeper {
  z-index: 5;
  width: 1px;
  inset-inline: auto;
  left: -4px;
  opacity: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.9) 48%, transparent 100%);
  box-shadow: 0 0 34px rgba(119, 205, 236, 0.78);
  pointer-events: none;
}

.editorial-gallery.is-sweeping-next .editorial-gallery__sweeper {
  animation: gallerySweeperNext 1100ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.editorial-gallery.is-sweeping-prev .editorial-gallery__sweeper {
  animation: gallerySweeperPrev 1100ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.editorial-gallery__kicker,
.editorial-gallery__floating-label,
.editorial-gallery__copy,
.editorial-gallery__title,
.editorial-gallery__counter,
.editorial-gallery__controls,
.editorial-gallery__progress {
  position: absolute;
  z-index: 6;
}

.editorial-gallery__kicker {
  top: clamp(82px, 9vw, 118px);
  left: clamp(24px, 5vw, 70px);
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1.15;
  text-transform: uppercase;
}

.editorial-gallery__kicker span {
  color: rgba(255, 255, 255, 0.66);
}

.editorial-gallery__kicker strong {
  color: var(--white);
  font-size: 0.68rem;
}

.editorial-gallery__floating-label {
  top: clamp(76px, 8vw, 118px);
  right: clamp(20px, 5vw, 70px);
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.editorial-gallery__floating-label i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #86c8df;
  box-shadow: 0 0 18px rgba(134, 200, 223, 0.78);
}

.editorial-gallery__title {
  left: clamp(24px, 5vw, 72px);
  bottom: clamp(160px, 20vh, 250px);
  width: min(72vw, 1130px);
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 11.4rem);
  font-weight: 600;
  line-height: 0.76;
  letter-spacing: -0.02em;
}

.editorial-gallery__title span {
  display: block;
  overflow: hidden;
  transform-origin: left bottom;
}

.editorial-gallery__title span:nth-child(2) {
  padding-bottom: 0.06em;
  font-style: italic;
  font-weight: 400;
}

.editorial-gallery.is-title-entering .editorial-gallery__title span {
  animation: galleryTitleRise 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.editorial-gallery.is-title-entering .editorial-gallery__title span:nth-child(2) {
  animation-delay: 90ms;
}

.editorial-gallery__copy {
  left: clamp(24px, 5vw, 70px);
  bottom: clamp(52px, 8vw, 92px);
  max-width: 470px;
  display: grid;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.editorial-gallery__copy span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #8cd0e6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.editorial-gallery__copy span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.editorial-gallery__counter {
  right: clamp(28px, 5vw, 70px);
  bottom: clamp(112px, 12vw, 150px);
  display: flex;
  align-items: baseline;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
}

.editorial-gallery__counter span {
  min-width: 1.38em;
  font-size: clamp(4.4rem, 5.2vw, 6.2rem);
  font-weight: 500;
}

.editorial-gallery.is-counting .editorial-gallery__counter span {
  animation: galleryCounterFlip 540ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.editorial-gallery__counter small {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 400;
}

.editorial-gallery__controls {
  right: clamp(28px, 5vw, 70px);
  bottom: clamp(44px, 6vw, 74px);
  display: flex;
  gap: 14px;
}

.editorial-gallery__controls button {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.editorial-gallery__controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.16);
}

.editorial-gallery__controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editorial-gallery__progress {
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.editorial-gallery__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(140, 208, 230, 0.25), rgba(255, 255, 255, 0.86));
  transform-origin: left center;
  animation: galleryProgress var(--gallery-duration) linear forwards;
}

@keyframes galleryRevealRight {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes galleryRevealLeft {
  from {
    clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes gallerySweeperNext {
  0% {
    left: 0;
    opacity: 0;
  }

  12%,
  84% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes gallerySweeperPrev {
  0% {
    left: 100%;
    opacity: 0;
  }

  12%,
  84% {
    opacity: 1;
  }

  100% {
    left: 0;
    opacity: 0;
  }
}

@keyframes galleryTitleRise {
  from {
    transform: translateY(110%);
    opacity: 0.02;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes galleryCounterFlip {
  from {
    transform: translateY(14px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes galleryProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
}

.map-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
  text-align: left;
}

.map-copy h2 {
  display: grid;
  gap: 0.04em;
  max-width: min(100%, 980px);
  font-size: clamp(3.4rem, 5.4vw, 5.6rem);
  line-height: 0.92;
}

.map-copy h2 span {
  display: block;
}

.map-copy__address {
  max-width: min(100%, 980px);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  font-weight: 600;
  line-height: 0.98;
}

.map-copy__region {
  max-width: min(100%, 760px);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: clamp(1.38rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.08;
}

.map-copy > p:not(.section-note):not(.map-copy__address):not(.map-copy__region) {
  max-width: min(100%, 680px);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.map-embed {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 38vw, 560px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(7, 27, 51, 0.92), rgba(47, 95, 115, 0.78));
  border: 1px solid rgba(47, 95, 115, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 38vw, 560px);
  border: 0;
}

.map-embed__link {
  position: absolute;
  left: 12px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1;
}

.map-embed__link--primary {
  top: 12px;
}

.map-embed__link--secondary {
  top: 28px;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.96), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(111, 159, 166, 0.16), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, #edf6f7 100%);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: auto auto 12% -8%;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  border-radius: 999px;
  background: rgba(79, 165, 199, 0.1);
  filter: blur(46px);
  pointer-events: none;
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.reviews-summary {
  position: static;
  max-width: 980px;
  display: grid;
  gap: 18px;
}

.reviews-summary h2 {
  max-width: none;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 0.9;
}

.reviews-summary h2 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.reviews-summary > p {
  max-width: 660px;
  color: var(--body-blue);
  font-size: 0.98rem;
  line-height: 1.65;
}

.reviews-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reviews-highlights span {
  min-height: 50px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--body-deep);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 27, 51, 0.09);
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
}

.reviews-highlights strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.review-sources {
  grid-column: 1 / -1;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(79, 165, 199, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.review-sources p {
  max-width: 560px;
  color: var(--body-blue);
  font-size: 0.92rem;
  line-height: 1.55;
}

.review-sources__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.button--source {
  min-height: 44px;
  padding-inline: 16px;
  color: var(--heading-dark);
  background: var(--white);
  border-color: rgba(79, 165, 199, 0.28);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(47, 95, 115, 0.08);
  font-size: 0.84rem;
}

.button--source:hover {
  color: var(--white);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-card {
  min-height: 0;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--body-deep);
  background: var(--surface);
  border: 1px solid rgba(7, 27, 51, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.review-card__top {
  display: grid;
  gap: 8px;
}

.review-card__top span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.review-card__top strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 0.98;
}

.review-card p {
  color: var(--body-blue);
  font-size: 0.94rem;
  line-height: 1.6;
}

.review-card__tags {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.review-card__tags span {
  padding: 6px 10px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
}

.review-card cite {
  color: var(--sea);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(111, 159, 166, 0.34), transparent 30%),
    var(--midnight);
}

.contact-section h2,
.contact-section .section-note {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section .button--whatsapp {
  margin-top: 26px;
}

.call-form {
  display: grid;
  gap: 16px;
}

.contact-request-card {
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: 18px;
  align-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(4, 17, 31, 0.2);
  backdrop-filter: blur(16px);
}

.contact-request-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--midnight);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr 1fr;
  gap: 26px;
}

.footer-brand {
  width: min(100%, 210px);
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 8px 22px rgba(255, 255, 255, 0.06));
}

.site-footer address {
  font-style: normal;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-link-button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  text-align: left;
  transition: color 180ms ease;
}

.footer-link-button:hover {
  color: var(--white);
}

body.is-modal-open {
  overflow: hidden;
}

.callback-sticky {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 72px;
  width: 58px;
  height: 58px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(79, 165, 199, 0.22), rgba(255, 255, 255, 0.08)),
    var(--accent-strong);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 16px 44px rgba(4, 17, 31, 0.22);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.callback-sticky svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callback-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(4, 17, 31, 0.26);
}

.callback-modal[hidden],
.rules-modal[hidden] {
  display: none;
}

.callback-modal,
.rules-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 24px;
  display: grid;
  align-items: end;
  justify-items: center;
}

.callback-modal__backdrop,
.rules-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(111, 159, 166, 0.18), transparent 34%),
    rgba(4, 17, 31, 0.58);
  backdrop-filter: blur(12px);
}

.callback-modal__panel,
.rules-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: calc(100svh - 48px);
  padding: clamp(30px, 5vw, 58px);
  overflow: auto;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(180deg, #fbfdfd 0%, #edf6f7 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px 28px 18px 18px;
  box-shadow: 0 -24px 80px rgba(4, 17, 31, 0.28);
  animation: rulesModalIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.callback-modal__panel {
  width: min(100%, 560px);
  margin-left: auto;
  padding: clamp(26px, 4vw, 42px);
}

.callback-modal__panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.callback-modal__lead {
  max-width: 420px;
  margin-bottom: 24px;
  color: var(--body-blue);
}

.callback-form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.callback-form .button--primary {
  color: var(--white);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.callback-form .form-message {
  min-height: 1.4em;
  color: var(--success);
}

.callback-form .form-message.is-error {
  color: var(--error);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rules-modal__panel h2 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.88;
}

.rules-modal__panel h2 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.callback-modal__close,
.rules-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 27, 51, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.callback-modal__close:hover,
.rules-modal__close:hover {
  transform: translateY(-1px);
  border-color: var(--accent-border);
  background: var(--white);
}

.callback-modal__close svg,
.rules-modal__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.rules-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rules-modal__grid span {
  min-height: 64px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--body-deep);
  background: var(--surface);
  border: 1px solid rgba(7, 27, 51, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
}

.rules-modal__grid strong {
  color: var(--accent-strong);
  font-weight: 800;
  white-space: nowrap;
}

@keyframes rulesModalIn {
  from {
    transform: translateY(42px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.room-detail-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(111, 159, 166, 0.16), transparent 28%),
    linear-gradient(180deg, #eef7fb 0%, var(--mist) 48%, #f7fbfb 100%);
}

.room-detail {
  padding-top: 112px;
}

.room-detail__hero {
  padding: clamp(34px, 5vw, 72px) 0 clamp(48px, 7vw, 86px);
}

.room-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(24px, 3vw, 42px) clamp(34px, 6vw, 70px);
  align-items: start;
}

.room-detail__main {
  min-width: 0;
  display: contents;
}

.room-detail__eyebrow {
  margin-bottom: 30px;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.room-detail__eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.room-detail h1 {
  grid-column: 1 / -1;
  max-width: none;
  min-height: clamp(86px, 7vw, 104px);
  color: var(--heading-dark);
  font-family: var(--font-ui);
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.room-detail__meta {
  grid-column: 1 / -1;
  margin: 4px 0 18px;
  min-height: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  color: var(--body-blue);
}

.room-detail__meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.room-detail__meta span:first-child::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 2px solid var(--accent);
  border-radius: 999px 999px 999px 2px;
  transform: rotate(-45deg);
  opacity: 0.78;
}

.room-stars {
  color: #f2bd52;
  letter-spacing: 0.06em;
}

.room-gallery {
  grid-column: 1;
  display: grid;
  gap: 16px;
  outline: none;
}

.room-gallery__stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  background: var(--midnight);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
}

.room-gallery__slide {
  margin: 0;
  width: 100%;
  height: 100%;
}

.room-gallery__slide[hidden] {
  display: none;
}

.room-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery__stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(4, 17, 31, 0.48));
  pointer-events: none;
}

.room-gallery__counter,
.room-gallery__caption,
.room-gallery__arrow {
  position: absolute;
  z-index: 2;
}

.room-gallery__counter {
  top: 20px;
  right: 20px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(4, 17, 31, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
}

.room-gallery__caption {
  left: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.room-gallery__caption i {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.room-gallery__arrow {
  top: 50%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.room-gallery__arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.04);
}

.room-gallery__arrow--prev {
  left: 18px;
}

.room-gallery__arrow--next {
  right: 18px;
}

.room-gallery__arrow svg,
.button--room-booking svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.room-gallery__thumb {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.64;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.room-gallery__thumb:hover,
.room-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.room-gallery__thumb:hover {
  transform: translateY(-2px);
}

.room-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.room-detail__aside {
  grid-column: 2;
  grid-row: 4;
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.room-booking-card,
.room-booking-panel,
.room-location-card,
.room-info-card,
.room-equipment-card,
.room-review-list blockquote {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(79, 165, 199, 0.32);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.room-booking-card {
  overflow: hidden;
  border-radius: 24px;
}

.room-booking-card__price {
  padding: 34px 34px 24px;
  color: var(--accent);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.room-booking-card__price span {
  color: var(--body-blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.room-booking-card__rating {
  padding: 0 34px 30px;
  color: var(--body-blue);
  font-size: 0.92rem;
}

.room-facts {
  margin: 0;
  padding: 26px 34px;
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(79, 165, 199, 0.3);
  border-bottom: 1px solid rgba(79, 165, 199, 0.22);
}

.room-facts div {
  min-height: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(7, 27, 51, 0.08);
}

.room-facts div:last-child {
  border-bottom: 0;
}

.room-facts dt {
  color: var(--body-blue);
}

.room-facts dd {
  margin: 0;
  color: var(--heading-dark);
  font-weight: 800;
  text-align: right;
}

.button--room-booking,
.button--room-phone {
  width: calc(100% - 68px);
  min-height: 62px;
  margin: 28px 34px 0;
  border-radius: 14px;
  font-size: 1rem;
}

.button--room-booking {
  color: var(--white);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button--room-phone {
  margin-top: 12px;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(79, 165, 199, 0.34);
}

.room-booking-card__note {
  padding: 22px 34px 30px;
  color: rgba(79, 165, 199, 0.72);
  font-size: 0.82rem;
  text-align: center;
}

@media (min-width: 1041px) {
  .room-gallery {
    height: 100%;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .room-gallery__stage {
    min-height: 0;
    aspect-ratio: auto;
  }

}

.room-booking-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 46px);
  margin-top: 4px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 24px;
}

.room-booking-panel > [data-hotel-booking-widget] {  grid-column: 1 / -1;  width: 100%;  min-width: 0;}.room-booking-panel__header {
  align-self: start;
}

.room-booking-panel__eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.room-detail .room-booking-panel h2 {
  margin: 0 0 14px;
  color: var(--heading-dark);
  font-family: var(--font-ui);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.room-booking-panel__header > p:last-child,
.room-booking-panel__note {
  color: var(--body-blue);
  line-height: 1.65;
}

.room-booking-panel__note {
  grid-column: 2;
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.76;
}

.room-booking-form {
  display: grid;
  gap: 14px;
}

.room-booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.room-booking-form label {
  display: grid;
  gap: 6px;
  color: var(--body-blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.room-booking-form input,
.room-booking-form select,
.room-booking-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--heading-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(79, 165, 199, 0.38);
  border-radius: 12px;
  font: inherit;
}

.room-booking-form textarea {
  min-height: 92px;
  resize: vertical;
}

.room-booking-form input:focus,
.room-booking-form select:focus,
.room-booking-form textarea:focus {
  outline: 3px solid rgba(79, 165, 199, 0.16);
  border-color: var(--accent-strong);
}

.room-booking-form .button {
  width: 100%;
  min-height: 52px;
  margin: 0;
  border-radius: 13px;
}

.booking-availability-result,
.booking-form-message {
  margin: 0;
  padding: 12px 14px;
  color: #176b50;
  background: #e8f7ef;
  border-radius: 11px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.booking-availability-result.is-error,
.booking-form-message.is-error {
  color: #94394b;
  background: #f9e8eb;
}

.booking-details {
  display: grid;
  gap: 14px;
  padding-top: 5px;
}

.booking-details[hidden] {
  display: none;
}

.booking-consent {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 9px !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.booking-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.booking-date-button {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(7, 27, 51, 0.58);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(79, 165, 199, 0.38);
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.booking-date-button.has-value {
  color: var(--heading-dark);
}

.booking-date-button:hover,
.booking-date-button:focus-visible {
  border-color: var(--accent-strong);
  outline: 3px solid rgba(79, 165, 199, 0.16);
}

.has-booking-calendar {
  overflow: hidden;
}

.booking-calendar-overlay {
  position: fixed;
  z-index: 120;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(4, 17, 31, 0.58);
  backdrop-filter: blur(8px);
}

.booking-calendar-overlay[hidden] {
  display: none;
}

.booking-calendar-dialog {
  width: min(100%, 1040px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  color: var(--heading-dark);
  background: #fff;
  border: 1px solid rgba(79, 165, 199, 0.28);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(4, 17, 31, 0.34);
}

.booking-calendar-toolbar {
  position: sticky;
  z-index: 3;
  top: 0;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 46px 1fr 46px 38px;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(79, 165, 199, 0.22);
  backdrop-filter: blur(12px);
}

.booking-calendar-toolbar > div {
  display: grid;
  text-align: center;
}

.booking-calendar-toolbar strong {
  font-size: 1.08rem;
}

.booking-calendar-toolbar span {
  color: var(--body-blue);
  font-size: 0.76rem;
}

.booking-calendar-nav,
.booking-calendar-close {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--heading-dark);
  background: #eef7fb;
  border: 0;
  border-radius: 999px;
  font-size: 1.25rem;
  cursor: pointer;
}

.booking-calendar-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.booking-calendar-months {
  min-height: 430px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.booking-calendar-loading {
  grid-column: 1 / -1;
  margin: auto;
  color: var(--body-blue);
}

.booking-calendar-loading.is-error,
.booking-calendar-footer p.is-error {
  color: #94394b;
}

.booking-calendar-month h3 {
  margin: 0 0 18px;
  color: var(--heading-dark);
  font-family: var(--font-ui);
  font-size: 1.45rem;
  font-weight: 500;
  text-align: center;
}

.booking-calendar-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-calendar-weekdays span {
  padding: 8px 2px;
  color: var(--body-blue);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.booking-calendar-weekdays span:nth-last-child(-n + 2) {
  color: #bd5365;
}

.booking-calendar-day {
  min-width: 0;
  min-height: 62px;
  margin: -1px 0 0 -1px;
  padding: 7px 3px;
  display: grid;
  place-content: center;
  gap: 3px;
  color: var(--heading-dark);
  background: #fff;
  border: 1px solid rgba(7, 27, 51, 0.15);
  border-radius: 0;
  font: inherit;
  cursor: pointer;
}

.booking-calendar-day strong {
  font-size: 0.88rem;
}

.booking-calendar-day small {
  color: var(--body-blue);
  font-size: 0.61rem;
  white-space: nowrap;
}

.booking-calendar-day:hover:not(:disabled) {
  z-index: 1;
  background: #edf9f2;
  border-color: #5ba579;
}

.booking-calendar-day:disabled,
.booking-calendar-day.is-closed,
.booking-calendar-day.is-sold {
  color: rgba(7, 27, 51, 0.28);
  background: #f3f5f6;
  cursor: not-allowed;
}

.booking-calendar-day:disabled small,
.booking-calendar-day.is-closed small,
.booking-calendar-day.is-sold small {
  color: rgba(7, 27, 51, 0.24);
}

.booking-calendar-day.is-range {
  color: var(--heading-dark);
  background: #dff4e7;
  border-color: #8cc5a2;
}

.booking-calendar-day.is-start,
.booking-calendar-day.is-end {
  color: #fff;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.booking-calendar-day.is-start small,
.booking-calendar-day.is-end small {
  color: rgba(255, 255, 255, 0.84);
}

.booking-calendar-footer {
  padding: 20px 30px 24px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(79, 165, 199, 0.24);
}

.booking-calendar-footer p {
  margin: 0;
  font-weight: 700;
}

.booking-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--body-blue);
  font-size: 0.68rem;
}

.booking-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.booking-calendar-legend i {
  width: 11px;
  height: 11px;
  background: #fff;
  border: 1px solid rgba(7, 27, 51, 0.22);
}

.booking-calendar-legend span:nth-child(2) i {
  background: #dff4e7;
  border-color: #8cc5a2;
}

.booking-calendar-legend span:nth-child(3) i {
  background: #f3f5f6;
}

.booking-calendar-footer .button {
  width: auto;
  min-width: 130px;
  min-height: 46px;
  margin: 0;
}

.room-booking-sticky {
  position: fixed;
  z-index: 32;
  right: 18px;
  bottom: 82px;
  min-height: 50px;
  padding: 0 18px;
  color: var(--white);
  background: var(--accent-strong);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(4, 17, 31, 0.24);
  font-weight: 800;
}

@media (min-width: 900px) {
  .room-booking-sticky { display: none; }
}

@media (max-width: 640px) {
  .room-booking-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .room-booking-panel__note { grid-column: 1; }
  .room-booking-form__grid { grid-template-columns: 1fr; }
  .room-booking-sticky { right: 14px; left: 14px; width: calc(100% - 28px); }

  .booking-calendar-overlay { padding: 0; }
  .booking-calendar-dialog { width: 100%; max-height: 100vh; min-height: 100vh; border: 0; border-radius: 0; }
  .booking-calendar-toolbar { padding: 16px 12px; grid-template-columns: 40px 1fr 40px 36px; gap: 6px; }
  .booking-calendar-nav, .booking-calendar-close { width: 36px; height: 36px; }
  .booking-calendar-months { min-height: 0; padding: 20px 12px; grid-template-columns: 1fr; gap: 18px; }
  .booking-calendar-day { min-height: 58px; }
  .booking-calendar-day small { font-size: 0.56rem; }
  .booking-calendar-footer { position: sticky; bottom: 0; padding: 14px 16px; grid-template-columns: 1fr auto; gap: 10px; background: #fff; }
  .booking-calendar-legend { display: none; }
  .booking-calendar-footer .button { min-width: 104px; }
}

.room-location-card {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 18px;
}

.room-location-card > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--accent);
  background: rgba(79, 165, 199, 0.12);
  border-radius: 18px;
  font-size: 1.55rem;
}

.room-location-card strong {
  color: var(--heading-dark);
  font-size: 1.05rem;
}

.room-location-card p {
  margin-top: 2px;
  color: var(--body-blue);
  font-size: 0.9rem;
}

.room-info-section {
  padding: 0 0 clamp(34px, 5vw, 64px);
}

.room-info-card,
.room-equipment-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
}

.room-info-card h2,
.room-equipment-card h2,
.room-reviews h2 {
  margin-bottom: 20px;
  color: var(--heading-dark);
  font-family: var(--font-ui);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.room-info-card p {
  max-width: 780px;
  color: var(--body-blue);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.85;
}

.room-chips {
  margin-top: 30px;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(7, 27, 51, 0.08);
}

.room-chips span {
  padding: 9px 16px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.room-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
}

.room-equipment-grid h3 {
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.room-equipment-grid ul {
  display: grid;
  gap: 12px;
  padding: 0;
  color: var(--body-blue);
  list-style: none;
}

.room-equipment-grid li {
  position: relative;
  padding-left: 26px;
}

.room-equipment-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.room-reviews h2 {
  margin-bottom: 26px;
}

.room-review-list {
  display: grid;
  gap: 18px;
}

.room-review-list blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 18px;
}

.room-review-list blockquote div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--heading-dark);
}

.room-review-list time {
  display: block;
  margin-top: 4px;
  color: rgba(79, 165, 199, 0.76);
  font-size: 0.88rem;
}

.room-review-list p {
  margin-top: 22px;
  color: var(--body-blue);
  font-size: 1.02rem;
  line-height: 1.7;
}

.room-hero {
  min-height: 72vh;
}

.room-hero .hero__content {
  grid-template-columns: minmax(0, 1fr);
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 34px;
}

.room-meta span {
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.spec-grid div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.spec-grid strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.other-rooms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.other-room-card {
  padding: 22px;
  display: grid;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

@media (max-width: 1040px) {
  .nav-shell {
    position: relative;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 44px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0;
    flex: 0 0 auto;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition:
      transform 180ms ease,
      top 180ms ease,
      box-shadow 180ms ease;
  }

  .nav-toggle::before {
    top: 13px;
    box-shadow: 0 6px 0 currentColor;
  }

  .nav-toggle::after {
    top: 25px;
  }

  .nav-toggle[aria-expanded="true"]::before {
    top: 19px;
    transform: rotate(45deg);
    box-shadow: none;
  }

  .nav-toggle[aria-expanded="true"]::after {
    top: 19px;
    transform: rotate(-45deg);
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    width: auto;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background:
      linear-gradient(135deg, rgba(88, 106, 122, 0.86), rgba(38, 58, 77, 0.78)),
      rgba(47, 70, 91, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(4, 17, 31, 0.26);
    backdrop-filter: blur(18px) saturate(124%);
  }

  .site-nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-mobile-actions {
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    display: grid;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-mobile-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .phone-link {
    display: none;
  }

  .hero__content,
  .two-column,
  .about-luxury__grid,
  .room-detail__grid,
  .contact-strip__inner,
  .calculator-layout,
  .map-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .contact-strip__links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .about-luxury {
    min-height: 100svh;
    padding-top: 118px;
  }

  .about-luxury__grid {
    min-height: auto;
  }

  .about-luxury__image {
    width: 100%;
    opacity: 0.9;
    background:
      linear-gradient(90deg, rgba(248, 251, 250, 0.92) 0%, rgba(248, 251, 250, 0.54) 42%, rgba(248, 251, 250, 0.12) 100%),
      url("../assets/images/about-sea-house.webp") center top / cover no-repeat;
  }

  .about-luxury__intro {
    max-width: 650px;
    justify-content: flex-start;
  }

  .about-luxury__content {
    padding: 0;
    justify-content: flex-start;
  }

  .about-luxury__features {
    width: min(100%, 560px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 430px;
  }

  .room-detail {
    padding-top: 108px;
  }

  .room-gallery,
  .room-detail__aside {
    grid-column: 1;
  }

  .room-detail__aside {
    grid-row: auto;
    order: 2;
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    align-items: stretch;
  }

  .room-booking-card,
  .room-location-card {
    height: 100%;
  }

  .room-equipment-grid {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    position: static;
  }

  .reviews-summary h2,
  .reviews-summary > p {
    max-width: 650px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-sources {
    flex-direction: column;
    align-items: stretch;
  }

  .review-sources__buttons {
    justify-content: flex-start;
  }

  .rooms-showcase__header {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .rooms-showcase__intro {
    max-width: 620px;
  }

  .room-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .room-card__media {
    min-height: clamp(320px, 52vw, 470px);
  }

  .room-slider__arrows {
    position: static;
    justify-content: flex-end;
    margin-top: 12px;
  }

  .amenities-strip__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .amenities-strip__heading h2 {
    max-width: 620px;
  }

  .amenities-slider {
    justify-self: start;
  }

  .spec-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: min(100% - 20px, 1120px);
    gap: 10px;
  }

  .brand {
    min-width: 98px;
    padding-left: 8px;
  }

  .brand img {
    width: 96px;
  }

  .nav-toggle {
    order: 3;
    margin-left: auto;
    padding-inline: 6px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    width: min(100% - 24px, var(--container));
    margin-inline: auto;
    padding-top: 128px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
    line-height: 1;
  }

  h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .hero__copy p {
    max-width: 28rem;
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__brand-line {
    margin: 18px 0 12px;
    gap: 12px;
  }

  .hero__brand-line img {
    width: 86px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3.05rem, 14vw, 4.05rem);
    line-height: 0.9;
  }

  .hero-title__line--accent {
    margin-top: 6px;
    margin-left: 8px;
  }

  .room-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 1.02;
  }

  .room-detail {
    padding-top: 92px;
  }

  .room-detail__hero {
    padding: 28px 0 42px;
  }

  .room-detail__grid {
    gap: 26px;
  }

  .room-detail__eyebrow {
    margin-bottom: 18px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .room-detail__eyebrow span {
    width: 24px;
  }

  .room-detail h1 {
    min-height: 104px;
    font-size: clamp(2.55rem, 12vw, 3.55rem);
    line-height: 1.04;
  }

  .room-booking-panel {
    order: 3;
  }

  .room-detail__meta {
    margin: 16px 0 26px;
    min-height: 24px;
    gap: 8px 12px;
    font-size: 0.9rem;
  }

  .room-gallery {
    gap: 10px;
  }

  .room-gallery__stage {
    aspect-ratio: 1.1 / 1;
    border-radius: 14px;
  }

  .room-gallery__slide {
    height: 100%;
  }

  .room-gallery__counter {
    top: 12px;
    right: 12px;
    padding: 8px 11px;
    font-size: 0.68rem;
  }

  .room-gallery__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .room-gallery__caption i {
    width: 20px;
  }

  .room-gallery__arrow {
    width: 40px;
    height: 40px;
  }

  .room-gallery__arrow--prev {
    left: 10px;
  }

  .room-gallery__arrow--next {
    right: 10px;
  }

  .room-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .room-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }

  .room-gallery__thumb {
    flex: 0 0 132px;
    border-radius: 10px;
  }

  .room-detail__aside {
    grid-template-columns: 1fr;
  }

  .room-booking-card {
    border-radius: 18px;
  }

  .room-booking-card__price,
  .room-booking-card__rating,
  .room-facts,
  .room-booking-card__note {
    padding-left: 20px;
    padding-right: 20px;
  }

  .room-booking-card__price {
    padding-top: 24px;
  }

  .room-facts div {
    min-height: 58px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .room-facts dd {
    text-align: left;
  }

  .button--room-booking,
  .button--room-phone {
    width: calc(100% - 40px);
    min-height: 54px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .room-location-card {
    padding: 18px;
  }

  .room-info-section {
    padding-bottom: 30px;
  }

  .room-info-card,
  .room-equipment-card,
  .room-review-list blockquote {
    padding: 22px;
    border-radius: 16px;
  }

  .room-info-card p,
  .room-review-list p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .room-chips {
    margin-top: 22px;
    padding-top: 20px;
  }

  .room-chips span {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .room-equipment-grid {
    gap: 22px;
  }

  .room-review-list blockquote div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-card {
    width: 100%;
    padding: 20px;
  }

  .hero-card strong {
    font-size: 1.35rem;
  }

  .section {
    padding: 62px 0;
  }

  .map-copy {
    gap: 14px;
  }

  .map-copy h2 {
    max-width: 360px;
    font-size: clamp(2.85rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .map-copy__region {
    font-size: clamp(1.12rem, 5.8vw, 1.5rem);
  }

  .map-copy__address {
    font-size: clamp(1.72rem, 8.5vw, 2.35rem);
  }

  .map-copy > p:not(.section-note):not(.map-copy__address):not(.map-copy__region) {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 320px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .rooms-showcase {
    padding: 62px 0;
  }

  .rooms-showcase__header {
    margin-bottom: 30px;
  }

  .rooms-showcase__note {
    gap: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .rooms-showcase__note span {
    width: 24px;
  }

  .rooms-showcase__title {
    margin-top: 18px;
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .rooms-showcase__intro {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .amenities-strip {
    padding: 28px 0;
    scroll-margin-top: 86px;
  }

  .amenities-strip__heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.35rem);
  }

  .amenities-slider {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .amenities-slider__button {
    width: 38px;
    height: 38px;
  }

  .amenities-slider__viewport {
    border-radius: 14px;
  }

  .amenities-slider__track {
    gap: 8px;
    padding: 8px;
  }

  .amenity-pill {
    flex-basis: 126px;
    min-height: 50px;
    padding: 9px 12px;
    border-radius: 11px;
    font-size: 0.82rem;
  }

  .button-row,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .button-row .button,
  .card-actions .button {
    width: 100%;
    min-width: 0;
  }

  .feature-strip,
  .contact-strip__links,
  .rules-grid,
  .amenity-grid,
  .form-grid,
  .spec-grid,
  .other-rooms,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    padding: 24px 0;
  }

  .contact-strip__links {
    display: grid;
  }

  .contact-strip__link,
  .contact-strip__button {
    width: 100%;
    min-width: 0;
  }

  .about-luxury {
    min-height: auto;
    display: block;
    padding: 78px 0 60px;
  }

  .about-luxury__grid {
    gap: 36px;
  }

  .about-luxury__title {
    font-size: clamp(3.1rem, 15vw, 4.55rem);
  }

  .about-luxury__decor {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .about-luxury__stamp {
    width: 98px;
    height: 98px;
    font-size: 0.52rem;
  }

  .about-luxury__lead {
    font-size: clamp(1.72rem, 9vw, 2.38rem);
  }

  .about-luxury__features {
    width: min(100%, 340px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-feature {
    min-height: 0;
    padding: 11px 10px 10px;
  }

  .about-feature__number {
    font-size: 1.08rem;
  }

  .about-feature::before {
    width: 26px;
    margin: 7px 0 8px;
  }

  .about-feature h3 {
    margin-bottom: 5px;
    font-size: 0.86rem;
  }

  .about-feature p {
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .faq-intro {
    gap: 14px;
  }

  .faq-intro p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .button--faq-rules {
    width: 100%;
  }

  .editorial-gallery {
    min-height: max(760px, 100svh);
  }

  .editorial-gallery__shade {
    background:
      linear-gradient(90deg, rgba(3, 12, 22, 0.86) 0%, rgba(3, 12, 22, 0.32) 54%, rgba(3, 12, 22, 0.72) 100%),
      linear-gradient(180deg, rgba(3, 12, 22, 0.5) 0%, rgba(3, 12, 22, 0.08) 42%, rgba(3, 12, 22, 0.9) 100%);
  }

  .editorial-gallery__kicker {
    top: 118px;
    left: 24px;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }

  .editorial-gallery__floating-label {
    top: 118px;
    right: 18px;
    padding: 8px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .editorial-gallery__title {
    left: 20px;
    right: 20px;
    bottom: 236px;
    width: auto;
    font-size: clamp(3.5rem, 15.2vw, 4.7rem);
    line-height: 0.86;
  }

  .editorial-gallery__copy {
    left: 22px;
    right: 22px;
    bottom: 98px;
    max-width: none;
    gap: 16px;
    font-size: 0.9rem;
  }

  .editorial-gallery__counter {
    right: 22px;
    bottom: 148px;
  }

  .editorial-gallery__counter span {
    font-size: 3.2rem;
  }

  .editorial-gallery__counter small {
    font-size: 1.35rem;
  }

  .editorial-gallery__controls {
    right: 22px;
    bottom: 42px;
    gap: 10px;
  }

  .editorial-gallery__controls button {
    width: 48px;
    height: 48px;
  }

  .calculator-panel,
  .call-form {
    padding: 18px;
  }

  .callback-sticky {
    right: 14px;
    bottom: 78px;
    width: 52px;
    height: 52px;
  }

  .callback-modal__panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    padding: 28px 18px 20px;
    border-radius: 22px 22px 14px 14px;
  }

  .callback-modal__panel h2 {
    padding-right: 42px;
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .callback-modal__lead {
    margin-bottom: 20px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .callback-form {
    padding: 0;
  }

  .room-card__body {
    padding: 24px 18px 22px;
    gap: 18px;
  }

  .reviews-summary {
    gap: 18px;
  }

  .reviews-summary h2 {
    font-size: clamp(2.7rem, 13vw, 4.05rem);
  }

  .reviews-summary > p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .reviews-highlights span {
    min-height: 52px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .review-sources {
    padding: 14px;
    border-radius: 14px;
  }

  .review-sources__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button--source {
    width: 100%;
  }

  .review-card {
    min-height: 0;
    padding: 20px;
  }

  .room-card__media {
    min-height: min(84vw, 330px);
  }

  .room-card__tag {
    top: 16px;
    left: 16px;
    padding: 10px 14px;
    font-size: 0.66rem;
    border-radius: 12px;
  }

  .room-card__meta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: max-content;
    max-width: calc(100% - 32px);
    padding: 12px 14px;
    gap: 10px;
    font-size: 0.78rem;
  }

  .room-card__meta strong {
    font-size: 1.1rem;
  }

  .room-card__body h3 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .room-card__body > p:not(.price) {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .price {
    font-size: 1.35rem;
  }

  .room-services li {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .button--room-primary,
  .button--room-outline {
    width: 100%;
    min-height: 52px;
  }

  .room-slider__arrows {
    justify-content: center;
    margin-top: 4px;
  }

  .editorial-gallery__copy p {
    max-width: calc(100% - 96px);
  }

  .rules-modal {
    padding: 10px;
  }

  .rules-modal__panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    padding: 28px 18px 20px;
    border-radius: 22px 22px 14px 14px;
  }

  .rules-modal__panel h2 {
    margin-bottom: 22px;
    padding-right: 42px;
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .rules-modal__grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .rules-modal__grid span {
    min-height: 54px;
    padding: 14px;
    font-size: 0.94rem;
  }
}

@media (max-width: 360px) {
  .container,
  .hero__content {
    width: min(100% - 20px, var(--container));
  }

  .nav-shell {
    width: min(100% - 16px, 1120px);
    min-height: 66px;
    padding: 8px 10px;
  }

  .brand {
    min-width: 88px;
    padding-left: 6px;
  }

  .brand img {
    width: 86px;
  }

  .nav-toggle {
    width: 40px;
    height: 38px;
  }

  h1 {
    font-size: clamp(2.75rem, 14.5vw, 3.35rem);
  }

  .hero__content {
    padding-top: 112px;
  }

  .hero__copy p {
    font-size: 0.95rem;
  }

  .button {
    padding-inline: 14px;
    font-size: 0.88rem;
  }

  .editorial-gallery__title {
    font-size: clamp(3.35rem, 15vw, 4.1rem);
  }

  .editorial-gallery__floating-label {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .amenities-slider {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .amenities-slider__button {
    width: 34px;
    height: 34px;
  }

  .amenity-pill {
    flex-basis: 112px;
    min-height: 46px;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-luxury__wave {
    animation: none;
  }

  .about-feature,
  [data-reveal-section] [data-reveal-item] {
    transition: none;
  }

  .about-feature:hover {
    transform: none;
  }

  .editorial-gallery__slide,
  .editorial-gallery__slide img,
  .editorial-gallery__sweeper,
  .editorial-gallery__title span,
  .editorial-gallery__counter span,
  .editorial-gallery__progress span,
  .amenities-slider__track,
  .rules-modal__panel {
    animation: none;
    transition: none;
  }
}
