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

:root {
  /* Baltia approved palette from logo_final.pdf */
  --baltic-blue: #293649;
  --sand: #f2f2f2;
  --graphite: #1a1a1a;
  --stone: #5f6f73;
  --gold: #1792a2;
  --paper: var(--sand);
  --white: #ffffff;
  --ink: var(--graphite);
  --navy: var(--baltic-blue);
  --cta: #0e5573;
  --teal-dark: #0e5573;
  --teal-light: #1792a2;
  --green: #145c52;
  --muted: #5f6f73;
  --line: rgba(41, 54, 73, 0.16);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --gutter: clamp(20px, 4vw, 48px);
  --max: 1200px;
  --radius-pill: 999px;
  --radius-img: 8px;
  --radius-card: 12px;
  --space-section: clamp(80px, 10vw, 160px);
  --control-height: 48px;
  --shadow-soft: 0 4px 20px rgba(41, 54, 73, 0.06);
  --shadow-card: 0 8px 28px rgba(41, 54, 73, 0.08);
  --shadow-elevated: 0 16px 48px rgba(41, 54, 73, 0.1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

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

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

button,
input,
select {
  font: inherit;
}

.section-title {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-align: center;
  text-transform: none;
  color: var(--navy);
}

.section-title--left {
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--control-height);
  padding: 0 32px;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.btn:hover {
  opacity: 1;
}

.btn--cta {
  background: var(--navy);
  color: var(--sand);
  font-size: 13px;
  font-weight: 600;
}

.btn--cta:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn--cta:active {
  transform: translateY(1px);
}

.btn--outline-light:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.btn--outline:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.btn--light {
  background: var(--white);
  color: var(--navy);
}

.btn--light:hover {
  background: var(--teal-light);
  color: var(--navy);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px var(--gutter);
  color: var(--white);
  background: linear-gradient(180deg, rgba(41, 54, 73, 0.72) 0%, rgba(41, 54, 73, 0) 100%);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(41, 54, 73, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(41, 54, 73, 0.14);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header__logo img {
  width: 64px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-header__nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header__nav a {
  padding: 8px 0;
  transition: color 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--teal-light);
}

.site-header__nav a:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 4px;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}

.site-header__phone:hover {
  border-color: var(--teal-light);
  background: rgba(23, 146, 162, 0.18);
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header__burger:hover,
.site-header__burger:focus-visible {
  border-color: var(--teal-light);
  background: rgba(23, 146, 162, 0.18);
  outline: none;
}

.site-header__burger:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 2px;
}

.site-header__burger-bar {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .site-header__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__burger-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.is-nav-open {
  overflow: hidden;
}

.site-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
}

.site-nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.site-nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(41, 54, 73, 0.58);
  cursor: pointer;
}

.site-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  padding: 88px 24px 32px;
  background: rgba(41, 54, 73, 0.98);
  box-shadow: -12px 0 40px rgba(41, 54, 73, 0.24);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.site-nav-drawer.is-open .site-nav-drawer__panel {
  transform: translateX(0);
}

.site-nav-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-nav-drawer__nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s ease;
}

.site-nav-drawer__nav a:hover,
.site-nav-drawer__nav a:focus-visible {
  color: var(--teal-light);
}

.site-nav-drawer__nav a:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 4px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 132px var(--gutter) 56px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(41, 54, 73, 0.78) 0%,
      rgba(41, 54, 73, 0.38) 38%,
      rgba(14, 85, 115, 0.22) 68%,
      rgba(37, 38, 43, 0.88) 100%
    ),
    rgba(41, 54, 73, 0.18);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto 0;
}

.hero__logo {
  width: 56px;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.hero__brand {
  margin: 0 0 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__booking {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 28px 32px;
  width: min(100%, 960px);
  margin-top: auto;
  padding: 36px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.hero__field span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__field input,
.hero__field select {
  width: 100%;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  appearance: none;
}

.hero__field input:focus,
.hero__field select:focus {
  outline: none;
  border-bottom-color: var(--teal-light);
}

.hero__field select option {
  color: var(--ink);
}

.hero__field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
}

.hero__cta {
  min-height: 52px;
  padding: 0 36px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.hero__cta:hover {
  background: var(--teal-dark);
}

/* About */
.about {
  padding: clamp(72px, 10vw, 112px) var(--gutter);
  background: var(--white);
}

.about__hero-img {
  width: min(100%, var(--max));
  margin: 0 auto 48px;
}

.about__hero-img img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.about__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.about__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 56px;
  margin-bottom: 56px;
}

.about__col {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about__columns p,
.about__col p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  max-width: none;
}

.about__columns .about__closing,
.about__col .about__closing {
  margin-top: 8px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  max-width: none;
}

.about--tz .section-title--left {
  max-width: none;
  margin: 0 0 36px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: none;
}

.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(200px, 240px) minmax(160px, 200px) minmax(160px, 200px);
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 56px;
  padding-right: 36px;
}

.about__gallery-item {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-img);
  min-height: 0;
}

.about__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__gallery-item--wide {
  grid-column: 1 / 9;
  grid-row: 1;
}

.about__gallery-item--top {
  grid-column: 9 / 13;
  grid-row: 1;
}

.about__gallery-item--tall {
  grid-column: 1 / 5;
  grid-row: 2 / 4;
}

.about__gallery-item--mid {
  grid-column: 5 / 9;
  grid-row: 2 / 4;
}

.about__gallery-item--stack-a {
  grid-column: 9 / 13;
  grid-row: 2;
}

.about__gallery-item--stack-b {
  grid-column: 9 / 13;
  grid-row: 3;
}

.about__gallery-more {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(41, 54, 73, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.about__gallery-more:hover,
.about__gallery-more:focus-visible {
  background: var(--teal-dark);
  transform: translateY(calc(-50% - 2px));
}

.about__gallery-more:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 3px;
}

.section-title--rooms {
  margin-bottom: 12px;
}

/* Rooms */
.rooms {
  padding: 100px var(--gutter);
}

.rooms__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px clamp(24px, 4vw, 56px);
  background: var(--white);
  border-radius: calc(var(--radius-img) * 2);
  box-shadow: 0 24px 70px rgba(41, 54, 73, 0.08);
}

.rooms__lead {
  margin: 0 auto 36px;
  max-width: 520px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.rooms__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  max-width: 100%;
}

.rooms__tab {
  flex: 0 1 auto;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rooms__tab:hover {
  border-color: var(--cta);
  color: var(--cta);
}

.rooms__tab.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.rooms__panels {
  min-height: 420px;
}

.rooms__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.rooms__panel[hidden] {
  display: none;
}

.rooms__media {
  min-width: 0;
}

.rooms__slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
  background: var(--paper);
}

.rooms__main {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rooms__main.is-active {
  display: block;
}

.rooms__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(41, 54, 73, 0.14);
  transition: background 0.2s;
}

.rooms__arrow:hover {
  background: var(--teal-light);
}

.rooms__arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 1.5px solid var(--navy);
  border-right: 1.5px solid var(--navy);
}

.rooms__arrow--prev {
  left: 16px;
}

.rooms__arrow--prev::before {
  transform: rotate(-135deg);
}

.rooms__arrow--next {
  right: 16px;
}

.rooms__arrow--next::before {
  transform: rotate(45deg);
}

.rooms__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.rooms__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-img);
  overflow: hidden;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s;
}

.rooms__thumb.is-active {
  border-color: var(--cta);
}

.rooms__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.rooms__info {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 4px;
}

.rooms__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
}

.rooms__info h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.rooms__area {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.rooms__included-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.rooms__amenities {
  margin: 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.rooms__amenities li {
  position: relative;
  padding-left: 14px;
}

.rooms__amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
}

.rooms__amenities li + li {
  margin-top: 10px;
}

.rooms__info .btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: min(100%, 300px);
}

.rooms__all {
  margin: 48px 0 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rooms__all a {
  color: var(--teal-dark);
  transition: color 0.2s;
}

.rooms__all a:hover {
  color: var(--cta);
}

/* Services */
.services {
  padding: 100px var(--gutter);
  background: var(--white);
}

.services > .section-title {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid var(--line);
}

.services__column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.service-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-card:last-child {
  border-bottom: 0;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 32px;
}

.service-card__body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.service-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-card--text-top .service-card__body {
  flex: 0 0 auto;
}

.service-card--text-top img {
  flex: 1;
  height: auto;
  min-height: 220px;
}

/* Location */
.location {
  padding: 100px var(--gutter) 120px;
}

.location__address {
  margin: -24px auto 40px;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.location__map {
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-img);
  border: 1px solid var(--line);
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.85) sepia(0.12) contrast(0.95);
}

/* WhatsApp CTA */
.whatsapp-cta {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.whatsapp-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(41, 54, 73, 0.88) 0%, rgba(14, 85, 115, 0.72) 100%);
}

.whatsapp-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  min-height: 340px;
  margin: 0 auto;
  padding: 72px var(--gutter);
  color: var(--white);
}

.whatsapp-cta__text {
  margin: 0;
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Footer — 1:1 Star Hotel bento reference (black / white / charcoal) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 0;
  background: #050505;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer--star {
  padding: 72px var(--gutter) 28px;
}

.star-footer {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.star-footer__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
  margin-bottom: 44px;
}

.star-footer__eyebrow {
  margin: 0 0 12px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.star-footer__intro h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.star-footer__intro > p {
  max-width: 440px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.star-footer__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: 18px;
  align-items: stretch;
  min-height: 560px;
  margin-bottom: 30px;
}

.star-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

/* ——— left: availability + L-map ——— */
.star-locus {
  --avail-w: 180px;
  --avail-h: 190px;
  --locus-gap: 12px;
  --notch-w: calc(var(--avail-w) + var(--locus-gap));
  --notch-h: calc(var(--avail-h) + var(--locus-gap));
  position: relative;
  min-height: 560px;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  border-radius: 32px;
}

.star-card--availability {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  box-sizing: border-box;
  width: var(--avail-w);
  height: var(--avail-h);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: #1b1b1b;
  color: #fff;
  border-radius: 28px;
}

.star-card__label {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.star-card__label--dark {
  color: #111;
}

.star-card__timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-left: 2px;
}

.star-card__timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.28) 0 4px,
    transparent 4px 8px
  );
}

.star-card__stop {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.star-card__dot {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: #f2c94c;
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.15);
}

.star-card__dot--out {
  background: #9b6bff;
  box-shadow: 0 0 0 4px rgba(155, 107, 255, 0.18);
}

.star-card__stop-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.star-card__stop strong {
  font-size: 15px;
  font-weight: 600;
}

.star-card__meta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 10px;
  margin-top: auto;
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
}

.star-card__meta-row span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ff8a3d;
  vertical-align: middle;
}

.star-card__meta-row span:last-child::before {
  background: #ff4d4d;
}

.star-locus__map {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #dfe3e8;
  /* L: вырез строго = карточка + gap (в px, без SVG-stretch) */
  -webkit-mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  -webkit-mask-size: 100% calc(100% - var(--notch-h)), calc(100% - var(--notch-w)) var(--notch-h);
  mask-size: 100% calc(100% - var(--notch-h)), calc(100% - var(--notch-w)) var(--notch-h);
  -webkit-mask-position: 0 var(--notch-h), var(--notch-w) 0;
  mask-position: 0 var(--notch-h), var(--notch-w) 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

.star-locus__map-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #dfe3e8;
}

.star-locus__map .hotel-map {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
}

.star-locus__map .hotel-map__fallback {
  align-content: end;
  padding: 220px 28px 34px;
}

.star-locus__iframe {
  position: absolute;
  inset: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.star-card__walk {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}

.star-card__walk:hover {
  color: #fff;
}

.star-card__walk:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.star-locus__map-frame--static {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), transparent 42%),
    repeating-linear-gradient(
      -18deg,
      #e8e7e2 0 12px,
      #ecebe7 12px 24px
    );
}

/* ——— middle + right columns ——— */
.star-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.star-footer__about {
  flex: 0 0 auto;
  /* высота ≈ полка L-карты → «Удобства» на одной линии с горизонтальной частью карты */
  min-height: calc(var(--avail-h, 176px) + var(--locus-gap, 10px) - 16px);
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.star-col--mid {
  --avail-h: 176px;
  --locus-gap: 10px;
}

.star-card--amenities {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  background: #fff;
  color: #111;
}

.star-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
}

.star-card__more {
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(17, 17, 17, 0.4);
}

.star-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.star-card__features li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  flex: 1 1 0;
  min-height: 72px;
  padding: 14px;
  border-radius: 22px;
  background: #1b1b1b;
  color: #fff;
}

.star-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.star-card__features strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.star-card__features span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.star-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 220px;
  overflow: hidden;
  border-radius: 32px;
}

.star-media__shot {
  position: absolute;
  overflow: hidden;
  background: #222;
}

.star-media__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.star-media__shot--a {
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  border-radius: 999px;
}

.star-media__shot--b {
  top: 0;
  right: 28px;
  width: 48%;
  height: 100%;
  border-radius: 999px 999px 48px 999px;
}

.star-media__seal {
  position: absolute;
  left: 30%;
  bottom: 4px;
  z-index: 2;
  width: 120px;
  height: 120px;
  animation: star-seal-spin 18s linear infinite;
}

@keyframes star-seal-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .star-media__seal {
    animation: none;
  }
}

/* Faces-style service deck: one active card, a visible stack and a glass information panel. */
.services-grid__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
}

.services-grid__head {
  display: block;
  margin: 0;
  align-self: center;
}

.services-grid .section-title {
  max-width: 7ch;
  font-size: clamp(48px, 5.8vw, 78px);
}

.services-grid__intro {
  display: block;
  max-width: 34ch;
  margin-top: 32px;
}

.services-grid__controls {
  margin-top: 28px;
}

.services-grid__visual {
  position: relative;
  width: min(100%, 680px);
  min-width: 0;
  padding: 0 56px 0 0;
}

.services-grid__list {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(590px, 49vw, 700px);
  margin: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.services-grid .service-card,
.services-grid .service-card:first-child,
.services-grid .service-card:nth-child(n) {
  --service-depth: 7;
  position: absolute;
  inset: 0;
  z-index: calc(10 - var(--service-depth));
  display: block;
  width: 100%;
  min-height: 0;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--service-depth) * 13px), calc(var(--service-depth) * 17px), 0)
    scale(calc(1 - var(--service-depth) * 0.012));
  transform-origin: center bottom;
  border: 1px solid rgba(41, 54, 73, 0.12);
  border-radius: 14px;
  background: #d9d5d0;
  box-shadow: 0 18px 48px rgba(41, 54, 73, 0.12);
  transition: transform 0.58s cubic-bezier(0.22, 0.72, 0, 1), opacity 0.42s ease;
}

.services-grid .service-card.is-in-deck {
  opacity: calc(1 - var(--service-depth) * 0.13);
}

.services-grid .service-card.is-active {
  --service-depth: 0;
  z-index: 12;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 28px 70px rgba(41, 54, 73, 0.18);
}

.services-grid .service-card::after {
  display: none;
}

.services-grid .service-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.services-grid .service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 33, 46, 0.02), rgba(13, 33, 46, 0.16));
}

.services-grid .service-card__media img {
  object-position: center;
}

.services-grid .service-card__body {
  position: absolute;
  inset: 70px auto auto 28px;
  z-index: 2;
  display: block;
  width: min(62%, 360px);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  background: rgba(247, 244, 238, 0.84);
  color: var(--navy);
  box-shadow: 0 16px 42px rgba(24, 34, 45, 0.11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.services-grid .service-card__index {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.services-grid .service-card__title {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 0.98;
}

.services-grid .service-card__text {
  color: rgba(41, 54, 73, 0.78);
  font-size: 14px;
  line-height: 1.48;
}

.services-grid .service-card__more {
  margin-top: 26px;
  padding-top: 16px;
  border-color: rgba(41, 54, 73, 0.24);
  color: var(--navy);
}

.services-grid .service-card:hover {
  transform: none;
}

.services-grid .service-card:hover .service-card__media img {
  transform: scale(1.025);
}

.services-grid__pagination {
  display: grid;
  grid-template-columns: repeat(6, minmax(24px, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.services-grid__pagination button {
  position: relative;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.services-grid__pagination button::before {
  position: absolute;
  inset: 9px 0 auto;
  height: 2px;
  content: "";
  background: rgba(41, 54, 73, 0.3);
  transform: scaleY(0.5);
  transform-origin: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.services-grid__pagination button.is-active::before,
.services-grid__pagination button:hover::before {
  transform: scaleY(1);
  background: var(--navy);
}

.services-grid__pagination button:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .services-grid__inner {
    grid-template-columns: minmax(220px, 0.62fr) minmax(420px, 1.38fr);
    gap: 48px;
  }

  .services-grid__visual {
    padding-right: 40px;
  }

  .services-grid__list {
    height: 590px;
  }

  .services-grid .service-card__body {
    width: min(72%, 340px);
    inset: 48px auto auto 24px;
  }
}

@media (max-width: 760px) {
  .services-grid__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-grid__intro {
    max-width: 38ch;
    margin-top: 22px;
  }

  .services-grid__visual {
    width: 100%;
    padding-right: 18px;
  }

  .services-grid__list {
    height: min(142vw, 590px);
  }

  .services-grid .service-card,
  .services-grid .service-card:first-child,
  .services-grid .service-card:nth-child(n) {
    flex-basis: auto;
    border-radius: 12px;
    transform: translate3d(calc(var(--service-depth) * 4px), calc(var(--service-depth) * 9px), 0)
      scale(calc(1 - var(--service-depth) * 0.008));
  }

  .services-grid .service-card__body {
    inset: auto 16px 16px;
    width: auto;
    padding: 24px;
  }

  .services-grid .service-card__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .services-grid .service-card__text {
    font-size: 13px;
  }

  .services-grid .service-card__more {
    margin-top: 18px;
    padding-top: 13px;
  }

  .services-grid__pagination {
    gap: 8px;
    margin-top: 24px;
  }
}

/* Measured Faces reference geometry and motion (adapted to Baltia content). */
.services-grid {
  padding: 160px 0 0;
  overflow: hidden;
  background: var(--white);
}

.services-grid__inner {
  position: relative;
  display: grid;
  grid-template-columns: 250px 700px;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
  width: min(100%, 1440px);
}

.services-grid__head {
  margin: 0;
}

.services-grid__eyebrow {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.services-grid .section-title {
  max-width: 250px;
  font-size: 48px;
  line-height: 1;
}

.services-grid__intro {
  max-width: 250px;
  margin-top: 28px;
}

.services-grid__intro > p {
  color: rgba(41, 54, 73, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.services-grid__visual {
  position: relative;
  width: 700px;
  max-width: 100%;
  padding: 0 50px;
}

.services-grid__list {
  position: relative;
  width: 600px;
  max-width: 100%;
  height: 700px;
  margin: 0 auto;
  overflow: visible;
  perspective: 1200px;
}

.services-grid .service-card,
.services-grid .service-card:first-child,
.services-grid .service-card:nth-child(n) {
  --service-depth: 6;
  position: absolute;
  inset: 0;
  z-index: calc(10 - var(--service-depth));
  width: 600px;
  max-width: 100%;
  height: 700px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  border: 0;
  border-radius: 12px;
  transform: translate3d(0, 0, -400px) scale(0.84);
  transform-origin: center center;
  box-shadow: none;
  transition: transform 800ms ease, opacity 300ms ease;
  will-change: transform, opacity;
}

.services-grid .service-card.is-in-deck {
  opacity: 0.5;
  transform:
    translate3d(calc(var(--service-depth) * 8%), 0, calc(var(--service-depth) * -100px))
    rotate(calc(var(--service-depth) * 2deg))
    scale(calc(1 - var(--service-depth) * 0.04));
}

.services-grid .service-card.is-previous {
  z-index: 9;
  opacity: 0.5;
  transform: translate3d(-7%, 0, -100px) rotate(-2deg) scale(0.96);
}

.services-grid .service-card.is-active {
  z-index: 12;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
  box-shadow: none;
}

.services-grid .service-card__media,
.services-grid .service-card__media img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.services-grid .service-card__media::after {
  display: none;
}

.services-grid .service-card__body {
  position: absolute;
  top: 10%;
  left: 50%;
  bottom: auto;
  width: 305px;
  min-height: 0;
  padding: 16px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  opacity: 0;
  box-shadow: none;
  transform: translateX(-50%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: opacity 300ms ease;
}

.services-grid .service-card.is-active .service-card__body {
  opacity: 0.72;
}

.services-grid .service-card__index,
.services-grid .service-card__more {
  display: none;
}

.services-grid .service-card__title {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-grid .service-card__text {
  margin-top: 16px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.1;
}

.services-grid .service-card__metric {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.services-grid .service-card__metric:not(.service-card__metric--single)::after {
  content: "—";
  order: 1;
}

.services-grid .service-card__metric:not(.service-card__metric--single) span:first-child {
  order: 0;
}

.services-grid .service-card__metric:not(.service-card__metric--single) span:last-child {
  order: 2;
  align-self: flex-end;
  margin-top: 44px;
}

.services-grid .service-card__metric--single {
  display: block;
  max-width: 100%;
  font-size: 38px;
}

.services-grid__controls {
  position: absolute;
  inset: 50% 70px auto;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  margin: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.services-grid__controls button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  pointer-events: auto;
  opacity: 1;
  transition: opacity 300ms ease;
}

.services-grid__controls button:hover:not(:disabled),
.services-grid__controls button:focus-visible {
  border: 0;
  background: transparent;
  color: var(--white);
  transform: none;
}

.services-grid__controls button:disabled {
  opacity: 0;
  pointer-events: none;
}

.services-grid__controls button i {
  font-size: 36px;
}

.services-grid__pagination {
  display: grid;
  grid-template-columns: repeat(6, 85px);
  justify-content: center;
  gap: 12px;
  width: 700px;
  max-width: 100%;
  margin: 32px auto 0;
}

.services-grid__pagination button {
  width: 85px;
  height: 12px;
}

.services-grid__pagination button::before {
  inset: 5px 0 auto;
  height: 2px;
  background: rgba(41, 54, 73, 0.28);
}

.services-grid__pagination button.is-active::before {
  height: 2px;
  background: var(--navy);
}

@media (max-width: 1440px) {
  .services-grid__inner {
    display: block;
  }

  .services-grid__head {
    margin-bottom: 32px;
  }

  .services-grid .section-title,
  .services-grid__intro {
    max-width: 520px;
  }

  .services-grid__visual {
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .services-grid__controls {
    display: none;
  }
}

@media (max-width: 767px) {
  .services-grid {
    padding-top: 80px;
  }

  .services-grid .section-title {
    max-width: none;
    font-size: 32px;
  }

  .services-grid__intro {
    margin-top: 18px;
  }

  .services-grid__visual {
    width: 320px;
    padding: 0;
  }

  .services-grid__list,
  .services-grid .service-card,
  .services-grid .service-card:first-child,
  .services-grid .service-card:nth-child(n) {
    width: 320px;
    height: 380px;
  }

  .services-grid .service-card__body {
    top: 10%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 266px;
    padding: 16px;
    transform: translateX(-50%);
  }

  .services-grid .service-card__title {
    font-size: 16px;
  }

  .services-grid .service-card__text {
    margin-top: 12px;
    font-size: 14px;
  }

  .services-grid .service-card__metric {
    margin-top: 24px;
    font-size: 32px;
  }

  .services-grid .service-card__metric:not(.service-card__metric--single) span:last-child {
    margin-top: 26px;
  }

  .services-grid .service-card__metric--single {
    font-size: 28px;
  }

  .services-grid__pagination {
    grid-template-columns: repeat(6, 44px);
    gap: 4px;
    width: 284px;
    margin-top: 28px;
  }

  .services-grid__pagination button {
    width: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-grid .service-card,
  .services-grid .service-card__body {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-grid .service-card,
  .services-grid__pagination button::before {
    transition: none;
  }
}

.star-media__next {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.star-footer__cta {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 12px;
  flex: 0 0 auto;
  align-items: stretch;
}

.star-card--book {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 104px;
  padding: 16px 22px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
}

.star-card__book-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.55);
}

.star-card__price-badge {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.star-card__book-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.star-card__book-main strong {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.star-card__book-main span {
  font-size: 1.5rem;
}

.star-card--book:hover {
  transform: translateY(-2px);
}

.star-card--suggest {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 104px;
  padding: 16px 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
}

.star-card__spark {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  color: #fff;
}

.star-card--suggest strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.star-card--suggest em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.55);
}

.star-card--book:focus-visible,
.star-card--suggest:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.star-footer__bar {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.star-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.star-footer__contacts a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.star-footer__contacts a:hover,
.star-footer__contacts a:focus-visible {
  color: #fff;
}

.star-footer__contacts a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #fff;
}

.site-footer__legal a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .star-footer__intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .star-footer__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .star-locus {
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .star-col--mid {
    grid-column: 1;
  }

  .star-col--side {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .site-footer--star {
    padding-top: 40px;
  }

  .star-footer__intro {
    margin-bottom: 30px;
  }

  .star-footer__intro h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .star-footer__grid {
    grid-template-columns: 1fr;
  }

  .star-locus {
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .star-card--availability {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 170px;
  }

  .star-locus__map {
    position: relative;
    inset: auto;
    height: 300px;
    border-radius: 28px;
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
    -webkit-mask-size: auto;
    mask-size: auto;
  }

  .star-locus__map .hotel-map {
    min-height: 300px;
  }

  .star-col--mid,
  .star-col--side {
    grid-column: auto;
  }

  .star-media {
    min-height: 200px;
  }

  .star-footer__cta {
    grid-template-columns: 1fr;
  }

  .star-card--book,
  .star-card--suggest {
    height: auto;
    min-height: 96px;
    border-radius: 28px;
  }
}

/* Main footer — deliberately separate from the booking showcase */
.site-footer--main {
  padding: 56px var(--gutter) calc(24px + var(--safe-bottom));
  background: var(--navy);
}

.site-footer--main .site-footer__grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: 32px clamp(28px, 4vw, 64px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.site-footer--main .site-footer__logo {
  display: block;
  width: min(220px, 100%);
}

.site-footer--main .site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-footer--main .site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.site-footer--main strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer--main p,
.site-footer--main a {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer--main a:hover,
.site-footer--main a:focus-visible {
  color: #fff;
}

.site-footer--main a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.site-footer--main .site-footer__legal {
  width: min(100%, var(--max));
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .site-footer--main .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer--main {
    padding-top: 40px;
  }

  .site-footer--main .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer--main .site-footer__logo {
    width: 180px;
  }

  .site-footer--main .site-footer__legal {
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
  }
}

/* Inner pages */
.page-inner {
  padding-top: 88px;
}

.page-rooms {
  padding-top: 0;
}

.inner-page--after-reel {
  padding-top: 72px;
}

.site-header--inner {
  color: var(--navy);
  background: rgba(242, 242, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.site-header--inner .site-header__logo img {
  filter: none;
}

.site-header--inner .site-header__nav a:hover {
  color: var(--cta);
  opacity: 1;
}

.site-header--inner .site-header__phone {
  border-color: var(--line);
  color: var(--navy);
}

.site-header--inner .site-header__phone:hover {
  border-color: var(--cta);
  background: rgba(23, 146, 162, 0.12);
}

.site-header--inner .site-header__burger {
  border-color: var(--line);
  color: var(--navy);
}

.site-header--inner .site-header__burger:hover,
.site-header--inner .site-header__burger:focus-visible {
  border-color: var(--cta);
  background: rgba(23, 146, 162, 0.12);
}

.site-header--inner.is-scrolled {
  background: rgba(242, 242, 242, 0.98);
  box-shadow: 0 8px 32px rgba(41, 54, 73, 0.08);
}

.inner-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 48px var(--gutter) 100px;
}

.inner-page__head {
  margin-bottom: 40px;
}

.inner-page__lead {
  margin: 12px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.booking-widget {
  width: 100%;
  min-height: 680px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: calc(var(--radius-img) * 2);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(41, 54, 73, 0.08);
}

.booking-widget > div {
  width: 100%;
  min-width: 100%;
}

/* TravelLine iframe-resizer uses width:1px + min-width:100%; do not force width:100% */
.booking-widget iframe {
  min-width: 100% !important;
  border: 0;
}

.booking-trust {
  margin-bottom: 28px;
}

.booking-faq {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.booking-faq__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--navy);
}

.booking-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
}

.booking-faq__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.booking-faq__grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.legal-page__content {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.legal-page__content h2,
.legal-page__content h3,
.legal-page__content h4 {
  margin: 32px 0 12px;
  font-family: var(--font-display);
  color: var(--navy);
}

.legal-page__content p,
.legal-page__content li {
  margin: 0 0 12px;
}

.legal-page__content ul,
.legal-page__content ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px max(18px, var(--gutter, 18px)) calc(8px + env(safe-area-inset-bottom, 0px));
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -8px 28px rgba(41, 54, 73, 0.12);
  border: 0;
  border-top: 1px solid var(--line);
}

.cookie-consent__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: min(920px, 100%);
  min-height: 38px;
  margin: 0 auto;
}

.cookie-consent__text {
  flex: 0 1 auto;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.cookie-consent__text a {
  color: var(--navy);
  text-decoration: underline;
}

.cookie-consent__btn {
  flex: 0 0 auto;
  min-height: 36px;
  padding-inline: 15px;
  font-size: 10px;
}

@media (max-width: 768px) {
  .booking-faq__grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-consent__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 48px;
  }

  .cookie-consent__text {
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }

  .cookie-consent__btn {
    min-height: 36px;
    padding-inline: 12px;
  }
}


.room-landing__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--muted);
}

.room-landing__breadcrumbs a {
  color: var(--navy);
}

.room-landing__breadcrumbs a:hover {
  color: var(--cta);
}

.room-landing__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}

.room-landing__hero-media {
  overflow: hidden;
  border-radius: calc(var(--radius-img) * 2);
  box-shadow: var(--shadow-card);
}

.room-landing__cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-landing__label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
}

.room-landing__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.room-landing__summary {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

.room-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.room-landing__section {
  margin-bottom: 48px;
}

.room-landing__section-title {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  color: var(--navy);
}

.room-landing__amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-landing__amenities li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.room-landing__amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
}

.room-landing__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.room-landing__gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.room-landing__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border-radius: calc(var(--radius-img) * 2);
  background: var(--paper);
}

.room-landing__cta-text {
  margin: 0;
  max-width: 52ch;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

.rooms-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius-img) * 2);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(41, 54, 73, 0.08);
}

.room-card__image {
  display: block;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.room-card:hover .room-card__image img {
  transform: scale(1.03);
}

.room-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.room-card__label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
}

.room-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.room-card__title a {
  color: var(--navy);
}

.room-card__title a:hover {
  color: var(--cta);
}

.room-card__area {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.room-card__cta {
  margin-top: auto;
  width: 100%;
  min-height: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
  .restaurant-home__scene,
  .excursions__head,
  .excursions__layout {
    grid-template-columns: 1fr;
  }

  .restaurant-home__feature {
    max-width: 720px;
    margin-inline: auto;
  }

  .restaurant-home__feature img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 100px 100px var(--radius-img) var(--radius-img);
  }

  .excursions__map {
    min-height: 520px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header__burger {
    display: inline-flex;
  }

  .site-header__nav {
    display: none;
  }

  .hero__booking {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .hero__cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .rooms__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
  }

  .about__columns,
  .rooms__panel {
    grid-template-columns: 1fr;
  }

  .rooms__info .btn {
    width: 100%;
    max-width: none;
  }

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

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

  .about__gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: minmax(180px, 220px) minmax(140px, 180px) minmax(140px, 180px);
    padding-right: 0;
  }

  .about__gallery-item--wide { grid-column: 1 / 5; grid-row: 1; }
  .about__gallery-item--top { grid-column: 5 / 7; grid-row: 1; }
  .about__gallery-item--tall { grid-column: 1 / 3; grid-row: 2 / 4; }
  .about__gallery-item--mid { grid-column: 3 / 5; grid-row: 2 / 4; }
  .about__gallery-item--stack-a { grid-column: 5 / 7; grid-row: 2; }
  .about__gallery-item--stack-b { grid-column: 5 / 7; grid-row: 3; }

  .about__gallery-more {
    right: 8px;
    width: 96px;
    height: 96px;
    font-size: 10px;
  }

  .rooms-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand-signature {
    gap: 10px;
    margin-bottom: 28px;
    font-size: 9px;
  }

  .brand-signature svg {
    width: 62px;
  }

  .restaurant-home__scene {
    gap: 32px;
    margin-bottom: 36px;
  }

  .restaurant-home__copy {
    padding-left: 0;
  }

  .restaurant-home__hours {
    grid-template-columns: 1fr;
  }

  .restaurant-home__feature img {
    aspect-ratio: 5 / 6;
    border-radius: 72px 72px var(--radius-img) var(--radius-img);
  }

  .restaurant-home__feature figcaption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .excursions__head {
    gap: 20px;
    margin-bottom: 32px;
  }

  .excursions__map {
    min-height: 440px;
  }

  .excursions__panel {
    padding: 20px;
  }

  .excursions__point::after {
    display: none;
  }

  .site-header__logo span {
    display: none;
  }

  .site-header__phone {
    padding: 0 14px;
    font-size: 0;
  }

  .site-header__phone .ti {
    margin: 0;
    font-size: 18px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero__booking {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__title {
    font-size: 36px;
  }

  .rooms__inner {
    padding: 40px 20px;
  }

  .inner-page {
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .whatsapp-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rooms-catalog {
    grid-template-columns: 1fr;
  }

  .room-landing__hero {
    grid-template-columns: 1fr;
  }

  .room-landing__gallery {
    grid-template-columns: 1fr;
  }

  .room-landing__amenities {
    grid-template-columns: 1fr;
  }

  .room-landing__actions .btn {
    width: 100%;
  }
}

/* Homepage room gallery: compact coverflow inspired by the approved reference. */
.rooms-home--showcase {
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 118px);
}

.rooms-home--showcase .rooms-home__heading {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}

.rooms-home--showcase .rooms-home__eyebrow {
  margin: 0 0 10px;
  color: var(--cta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rooms-home--showcase .section-title--rooms {
  margin: 0 0 12px;
  font-size: clamp(42px, 5vw, 64px);
}

.rooms-home--showcase .rooms-home__lead {
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
}

.rooms-home--showcase .rooms-home__filters {
  position: relative;
  z-index: 8;
  gap: 9px;
  margin: 0 auto 20px;
}

.rooms-home--showcase .rooms-home__filter,
.rooms-home--showcase .rooms-home__all {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid rgba(41, 54, 73, 0.28);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
}

.rooms-home--showcase .rooms-home__filter.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(41, 54, 73, 0.16);
}

.rooms-home--showcase .rooms-home__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rooms-home--showcase .rooms-home__all:hover {
  border-color: var(--cta);
  background: var(--cta);
  color: var(--white);
}

.rooms-home--showcase .rooms-home__all:focus-visible,
.rooms-home--showcase .rooms-home__filter:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

.rooms-home--showcase .rooms-showcase {
  display: block;
  width: 100%;
  outline: none;
}

.rooms-showcase__track {
  position: relative;
  height: clamp(390px, 42vw, 540px);
  margin-inline: calc(var(--gutter) * -1);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.rooms-showcase__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(250px, 27vw, 390px);
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: clamp(18px, 2vw, 28px);
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.65);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.rooms-showcase__card[data-position="0"] {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: none;
}

.rooms-showcase__card[data-position="-1"] {
  z-index: 4;
  opacity: 0.92;
  pointer-events: auto;
  transform: translate(calc(-50% - clamp(210px, 25vw, 340px)), -50%) scale(0.78);
}

.rooms-showcase__card[data-position="1"] {
  z-index: 4;
  opacity: 0.92;
  pointer-events: auto;
  transform: translate(calc(-50% + clamp(210px, 25vw, 340px)), -50%) scale(0.78);
}

.rooms-showcase__card[data-position="-2"] {
  z-index: 3;
  opacity: 0.58;
  pointer-events: auto;
  transform: translate(calc(-50% - clamp(390px, 44vw, 620px)), -50%) scale(0.62);
}

.rooms-showcase__card[data-position="2"] {
  z-index: 3;
  opacity: 0.58;
  pointer-events: auto;
  transform: translate(calc(-50% + clamp(390px, 44vw, 620px)), -50%) scale(0.62);
}

.rooms-showcase__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.rooms-showcase__card:hover img {
  transform: scale(1.025);
}

.rooms-showcase__card:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 5px;
}

.rooms-showcase__card-shade {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(16, 27, 39, 0.8));
  opacity: 0.82;
}

.rooms-showcase__card-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.08;
  text-align: left;
}

.rooms-showcase__card-caption > span,
.rooms-showcase__card-caption > small {
  display: block;
}

.rooms-showcase__card-caption > small {
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.rooms-showcase__card:not(.is-active) .rooms-showcase__card-caption {
  font-size: 18px;
}

.rooms-showcase__controls {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.rooms-home--showcase .rooms-showcase__nav {
  position: static;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(41, 54, 73, 0.5);
  background: var(--white);
  color: var(--navy);
  transform: none;
}

.rooms-home--showcase .rooms-showcase__nav:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.rooms-home--showcase .rooms-showcase__nav:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

.rooms-showcase__counter {
  min-width: 58px;
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  text-align: center;
}

.rooms-showcase__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 860px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.rooms-showcase__summary-copy {
  min-width: 0;
}

.rooms-home--showcase .rooms-showcase__title {
  margin: 0 0 9px;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: 0;
  text-transform: none;
}

.rooms-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.rooms-home--showcase .rooms-showcase__area,
.rooms-home--showcase .rooms-showcase__capacity {
  margin: 0;
  font-size: 13px;
}

.rooms-home--showcase .rooms-showcase__actions {
  flex: 0 0 auto;
  margin: 0;
}

.rooms-home--showcase .rooms-showcase__actions .btn {
  flex: none;
  min-width: 154px;
  min-height: 48px;
}

.rooms-home--showcase .rooms-showcase__book {
  min-height: 48px;
}

@media (max-width: 760px) {
  .rooms-home--showcase {
    padding-block: 64px;
  }

  .rooms-home--showcase .rooms-home__heading {
    margin-bottom: 26px;
  }

  .rooms-home--showcase .rooms-home__filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .rooms-home--showcase .rooms-home__filters::-webkit-scrollbar {
    display: none;
  }

  .rooms-showcase__track {
    height: 330px;
    margin-inline: calc(var(--gutter) * -1);
  }

  .rooms-showcase__card {
    width: min(66vw, 268px);
    border-radius: 20px;
  }

  .rooms-showcase__card[data-position="-1"] {
    transform: translate(calc(-50% - 62vw), -50%) scale(0.78);
  }

  .rooms-showcase__card[data-position="1"] {
    transform: translate(calc(-50% + 62vw), -50%) scale(0.78);
  }

  .rooms-showcase__card[data-position="-2"] {
    transform: translate(calc(-50% - 110vw), -50%) scale(0.62);
  }

  .rooms-showcase__card[data-position="2"] {
    transform: translate(calc(-50% + 110vw), -50%) scale(0.62);
  }

  .rooms-showcase__card-caption {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .rooms-showcase__summary {
    display: none;
  }

  .sticky-booking.is-suppressed {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }
}

@media (max-width: 420px) {
  .rooms-showcase__track {
    height: 320px;
  }

  .rooms-home--showcase .rooms-showcase__actions {
    flex-direction: column;
  }

  .rooms-home--showcase .rooms-showcase__actions .btn {
    flex: none;
    width: 100%;
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rooms-showcase__card,
  .rooms-showcase__card img {
    transition: none;
  }
}

/* Homepage TZ layout */
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  min-height: 48px;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(41, 54, 73, 0.35);
  min-height: var(--control-height);
}

.btn--outline:hover {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
  opacity: 1;
}

.btn--small {
  min-height: 44px;
  padding: 0 24px;
  font-size: 11px;
}

.btn--large {
  min-height: 52px;
  padding: 0 40px;
}

.hero--tz {
  position: relative;
  min-height: min(100vh, 900px);
  min-height: min(100dvh, 900px);
  padding: 120px var(--gutter) 72px;
  overflow: hidden;
  color: var(--white);
}

.hero__rotator,
.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video,
.hero__fallback,
.hero__fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero__video--mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero__video--desktop {
    display: none;
  }

  .hero__video--mobile {
    display: block;
  }
}

.hero__fallback {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__fallback {
    display: block;
  }
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s ease;
}

.hero__slide > img,
img.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__content--tz {
  position: relative;
  z-index: 2;
  max-width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero__brand {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.hero__wave {
  margin: 0 0 20px;
  color: var(--gold);
}

.hero__wave svg {
  display: inline-block;
  vertical-align: middle;
}

.hero__concept {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__title--tz {
  margin: 0 auto 28px;
  max-width: 14em;
  font-family: var(--serif);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}

.hero__actions .btn {
  min-height: 48px;
  padding-inline: 28px;
}

.hero-reputation {
  width: min(100%, 980px);
  margin: clamp(24px, 4vh, 38px) auto 0;
}

.hero-reputation__label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-reputation__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.hero-rating {
  --rating-accent: rgba(255, 255, 255, 0.68);
  --rating-bg: rgba(250, 249, 246, 0.94);
  --rating-color: #243247;
  --rating-muted: rgba(36, 50, 71, 0.62);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
  min-width: 0;
  min-height: 82px;
  padding: 13px 14px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  background: var(--rating-bg);
  color: var(--rating-color);
  text-align: left;
  backdrop-filter: blur(14px) saturate(0.9);
  box-shadow: 0 8px 22px rgba(7, 25, 39, 0.14);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-rating::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--rating-accent);
  content: "";
}

a.hero-rating:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(7, 25, 39, 0.22);
}

.hero-rating:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero-rating__brand {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 22px;
  color: inherit;
}

.hero-rating__brand img {
  display: block;
  width: auto;
  max-width: 112px;
  height: 19px;
  object-fit: contain;
  object-position: left center;
}

.hero-rating__brand b {
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-rating__brand img + b {
  margin-left: 7px;
}

.hero-rating__score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.hero-rating__score strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
  white-space: nowrap;
}

.hero-rating__score strong small {
  font-family: var(--sans);
  margin-left: 2px;
  font-size: 9px;
  font-weight: 500;
  opacity: 0.7;
}

.hero-rating__score > small {
  overflow: hidden;
  color: var(--rating-muted);
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-rating--travelline {
  --rating-accent: #227bdd;
}

.hero-rating--travelline .hero-rating__brand img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.hero-rating--booking {
  --rating-accent: #003b95;
}

.hero-rating--booking .hero-rating__brand img {
  max-width: 118px;
}

.hero-rating--yandex {
  --rating-accent: #fc3f1d;
}

.hero-rating--yandex .hero-rating__brand img {
  max-width: 122px;
  height: 19px;
}

.hero-rating--onetwotrip {
  --rating-accent: #111;
}

.hero-rating--onetwotrip .hero-rating__brand img {
  width: 20px;
  height: 20px;
}

.hero-rating--ostrovok {
  --rating-accent: #0879bd;
}

.hero-rating--ostrovok .hero-rating__brand img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

#tl-reputation-widget {
  position: absolute !important;
  inset: 0 !important;
  width: 100%;
  height: 100% !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#tl-reputation-widget iframe {
  width: 100% !important;
  min-width: 100% !important;
  height: 39px !important;
  border: 0;
}

.hero-rating__fallback {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 55px;
  min-width: 0;
  padding: 0;
  color: inherit;
}

.hero-rating--travelline.is-ready .hero-rating__fallback {
  display: flex;
}

.quick-search {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 32px var(--gutter) clamp(32px, 5vw, 48px);
  background: var(--white);
}

.quick-search__form {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 32px 28px;
  border: 1px solid rgba(41, 54, 73, 0.12);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-elevated);
}

.quick-search__label {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--navy);
  font-weight: 600;
}

.quick-search__hint {
  grid-column: 1 / -1;
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.quick-search__fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
  align-items: end;
  width: 100%;
}

.quick-search__field {
  display: grid;
  gap: 8px;
}

.quick-search__field span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.quick-search__field input,
.quick-search__field select {
  min-height: var(--control-height);
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-search__field input:focus,
.quick-search__field select:focus,
.quick-search__field input:focus-visible,
.quick-search__field select:focus-visible {
  border-color: var(--cta);
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 146, 162, 0.16);
}

.quick-search__submit {
  align-self: end;
}

.quick-search__submit:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.about--tz .about__emotion {
  margin: 0 0 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.about__closing {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy);
}

.about__story {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin: clamp(40px, 6vw, 72px) 0;
  padding: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about__story-year {
  color: var(--cta);
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.about__story-copy {
  max-width: 680px;
}

.about__story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about__story-copy .about__story-kicker {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}

.stat-card__icon {
  color: var(--gold);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.services-grid {
  padding: var(--space-section) 0;
  background: var(--white);
}

.services-grid__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.services-grid .section-title {
  margin: 0 0 48px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: none;
}

.services-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.services-grid .service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--navy);
  background: var(--white);
  overflow: hidden;
}

.services-grid .service-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
}

.services-grid .service-card__link:hover .service-card__title {
  color: var(--cta);
}

.services-grid .service-card__link:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: -2px;
}

.services-grid .service-card--flip {
  flex-direction: column-reverse;
}

.services-grid .service-card--flip .service-card__link {
  flex-direction: column-reverse;
}

.services-grid .service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(41, 54, 73, 0.06);
}

.services-grid .service-card--tall .service-card__media {
  aspect-ratio: 4 / 3;
}

.services-grid .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-grid .service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: clamp(24px, 2.8vw, 36px);
}

.services-grid .service-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.services-grid .service-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.benefits {
  padding: var(--space-section) 0;
  background: var(--paper);
}

.benefits__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.benefits__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 600;
}

.benefits .section-head {
  margin-bottom: 36px;
}

.benefits .section-title {
  max-width: 18em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: none;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.benefit-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--navy);
}

.benefit-card__text {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.benefit-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.benefit-card .btn {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  min-height: 44px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 48px;
}

.faq-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(14, 85, 115, 0.28);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px 20px;
  list-style: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.faq-item__q::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__q::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.faq-item__q:hover,
.faq-item__q:focus-visible {
  background: rgba(14, 85, 115, 0.04);
  color: var(--teal-dark);
}

.faq-item__q:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: -2px;
}

.faq-item__a {
  padding: 0 20px 20px;
}

.faq-item__a p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: none;
}

.faq-item__a a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 196px;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.about__stats strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}

.about__stats span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 28ch;
}

.rooms-home {
  padding: var(--space-section) 0;
  background: var(--white);
}

.rooms-home__inner,
.restaurant-home__inner,
.offers__inner,
.excursions__inner,
.contacts-home__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rooms-home--showcase .section-title--rooms {
  margin: 0 0 36px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: none;
}

.rooms-home__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 48px;
}

.rooms-home__tab {
  min-height: var(--control-height);
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rooms-home__tab:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.rooms-home__tab.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.rooms-home__tab:hover:not(.is-active) {
  border-color: var(--navy);
}

.rooms-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.rooms-showcase__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.rooms-showcase__stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
  aspect-ratio: 4 / 3;
  background: rgba(41, 54, 73, 0.08);
}

.rooms-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rooms-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.rooms-showcase__nav:hover {
  background: var(--cta);
}

.rooms-showcase__nav:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.rooms-showcase__nav--prev {
  left: 16px;
}

.rooms-showcase__nav--next {
  right: 16px;
}

.rooms-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rooms-showcase__thumb {
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-img);
  background: transparent;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.rooms-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rooms-showcase__thumb.is-active {
  border-color: var(--navy);
}

.rooms-showcase__thumb:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.rooms-showcase__details {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 8px;
}

.rooms-showcase__title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.rooms-showcase__area {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.rooms-showcase__area strong {
  color: var(--navy);
  font-weight: 600;
}

.rooms-showcase__capacity {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--muted);
}

.rooms-showcase__capacity strong {
  color: var(--navy);
  font-weight: 600;
}

.rooms-showcase__included {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.rooms-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.rooms-showcase__actions .btn {
  flex: 1 1 160px;
  min-height: 56px;
  justify-content: center;
}

.rooms-showcase__amenities {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.rooms-showcase__amenities li {
  position: relative;
  padding: 0 0 10px 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.rooms-showcase__amenities li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}

.rooms-showcase__book {
  width: auto;
  margin-top: 0;
  min-height: 56px;
  background: var(--navy);
  box-shadow: none;
}

.rooms-showcase__book:hover {
  background: var(--cta);
}

.rooms-home__lead,
.restaurant-home__lead,
.offers__lead,
.excursions__lead {
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.rooms-home__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.rooms-home__filter {
  min-height: var(--control-height);
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.rooms-home__filter:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.rooms-home__filter.is-active {
  border-color: var(--cta);
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(23, 146, 162, 0.2);
}

.rooms-home__filter:hover:not(.is-active) {
  border-color: var(--cta);
  background: rgba(23, 146, 162, 0.08);
  color: var(--cta);
}

.rooms-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rooms-home__more {
  margin: 40px 0 0;
  text-align: center;
}

.rooms-home__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 8px;
  color: var(--cta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.rooms-home__more a:hover {
  color: var(--teal-dark);
}

.rooms-home__more a:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 4px;
  border-radius: 8px;
}

.room-card-tz {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.room-card-tz:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

@media (hover: hover) {
  .room-card-tz:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 146, 162, 0.22);
    box-shadow: var(--shadow-card);
  }

  .room-card-tz:hover .room-card-tz__img--main {
    opacity: 0;
  }

  .room-card-tz:hover .room-card-tz__img--hover {
    opacity: 1;
    transform: scale(1);
  }
}

.room-card-tz:focus-within {
  border-color: rgba(23, 146, 162, 0.35);
  box-shadow: 0 0 0 3px rgba(23, 146, 162, 0.12), var(--shadow-card);
}

.room-card-tz.is-hidden {
  display: none;
}

.room-card-tz__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-card-tz__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.room-card-tz__img--hover {
  opacity: 0;
  transform: scale(1.06);
}

.room-card-tz:focus-within .room-card-tz__img--hover {
  opacity: 1;
  transform: scale(1);
}

.room-card-tz:focus-within .room-card-tz__img--main {
  opacity: 0;
}

.room-card-tz__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.room-card-tz__label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 500;
}

.room-card-tz__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  min-height: calc(1.15em * 2);
}

.room-card-tz__meta,
.room-card-tz__text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.room-card-tz__text {
  flex: 1 1 auto;
  min-height: calc(1.55em * 2);
}

.room-card-tz__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.room-card-tz__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.restaurant-home {
  position: relative;
  overflow: hidden;
  padding: var(--space-section) 0;
  background: var(--paper);
}

.restaurant-home::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -120px;
  width: 420px;
  height: 220px;
  opacity: 0.12;
  background: repeating-radial-gradient(ellipse at center, transparent 0 18px, var(--stone) 19px 20px);
  transform: rotate(-12deg);
  pointer-events: none;
}

.brand-signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-signature svg {
  width: 96px;
  height: 16px;
}

.brand-signature--light {
  color: rgba(242, 242, 242, 0.64);
}

.restaurant-home__scene {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  margin-bottom: 56px;
}

.restaurant-home__copy {
  padding-left: clamp(0px, 3vw, 40px);
}

.restaurant-home__eyebrow,
.excursions__eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.restaurant-home__copy > p:not(.restaurant-home__eyebrow) {
  max-width: 54ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.restaurant-home__hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 30px;
}

.restaurant-home__hours div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.restaurant-home__hours dt {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.restaurant-home__hours dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.restaurant-home__feature {
  position: relative;
  margin: 0;
}

.restaurant-home__feature picture,
.restaurant-home__feature img {
  display: block;
  width: 100%;
}

.restaurant-home__feature img {
  min-height: 520px;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: 160px 160px var(--radius-img) var(--radius-img);
}

.restaurant-home__feature figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(41, 54, 73, 0.84);
  color: var(--sand);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.restaurant-home__dishes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 8px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dish-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 146, 162, 0.2);
  box-shadow: var(--shadow-card);
}

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

.dish-card__body {
  padding: 24px;
}

.dish-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--navy);
}

.dish-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.restaurant-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.restaurant-home__actions--left {
  justify-content: flex-start;
}

.offers {
  padding: var(--space-section) 0;
  background: var(--white);
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 146, 162, 0.22);
  box-shadow: var(--shadow-card);
}

.offer-card:focus-within {
  border-color: rgba(23, 146, 162, 0.35);
  box-shadow: 0 0 0 3px rgba(23, 146, 162, 0.12), var(--shadow-card);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offer-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.offer-card__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(14, 85, 115, 0.12);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  color: var(--navy);
}

.offer-card p {
  margin: 0 0 12px;
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.offer-card__period {
  margin: 0 0 8px !important;
  color: var(--teal-dark) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-card__bonuses {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.offer-card__bonuses li {
  position: relative;
  margin: 0 0 6px;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.offer-card__bonuses li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 700;
}

.offer-card__terms {
  margin-top: auto !important;
  padding-top: 8px;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.quick-search__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 4px;
}

.quick-search__actions .btn {
  width: 100%;
  min-height: var(--control-height);
  justify-content: center;
}

.quick-search__phone {
  flex: initial;
}

.page-landing .site-header--landing .site-header__nav {
  display: none;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: clamp(420px, 62vh, 620px);
  overflow: hidden;
}

.landing-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 45, 0.35) 0%, rgba(20, 30, 45, 0.72) 100%);
}

.landing-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 48px var(--gutter) 56px;
}

.landing-hero__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero__title {
  max-width: 760px;
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
}

.landing-hero__lead {
  max-width: 640px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.75;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-benefits {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 40px var(--gutter) 0;
}

.landing-trust {
  margin-bottom: 24px;
}

.landing-benefits__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-benefits__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.landing-benefits__list i {
  margin-top: 2px;
  color: var(--cta);
}

.landing-rooms {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 48px var(--gutter) 100px;
}

.landing-rooms__head {
  margin-bottom: 28px;
}

.landing-rooms__lead {
  margin: 12px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.landing-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.landing-room {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.landing-room__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.landing-room__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.landing-room__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.landing-room__title a {
  color: var(--navy);
}

.landing-room__meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.landing-room__text {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.landing-rooms__more {
  margin: 24px 0 0;
}

.landing-rooms__more a {
  color: var(--navy);
  font-weight: 600;
}

.site-footer--landing {
  padding: 24px var(--gutter) calc(24px + env(safe-area-inset-bottom, 0px));
}

.site-footer--landing .site-footer__legal {
  justify-content: center;
}

@media (max-width: 1024px) {
  .landing-rooms__grid,
  .landing-benefits__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .landing-rooms__grid,
  .landing-benefits__list {
    grid-template-columns: 1fr;
  }

  .landing-hero__actions .btn {
    width: 100%;
  }
}

.offer-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.excursions {
  position: relative;
  overflow: hidden;
  padding: var(--space-section) 0;
  background: var(--navy);
  color: var(--sand);
}

.excursions::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -100px;
  width: 55%;
  height: 280px;
  opacity: 0.1;
  background: repeating-radial-gradient(ellipse at center, transparent 0 20px, var(--sand) 21px 22px);
  pointer-events: none;
}

.excursions__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: 48px;
}

.excursions__head .section-title {
  margin: 0;
  color: var(--sand);
}

.excursions__head > p {
  margin: 0;
  color: rgba(242, 242, 242, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.excursions__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: stretch;
  gap: 24px;
}

.excursions__map {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  min-height: 620px;
  margin-bottom: 0;
  border: 1px solid rgba(242, 242, 242, 0.18);
}

.excursions__map-bg {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(0.55) contrast(0.9) brightness(0.58);
}

.excursions__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #e8e6df;
  filter: saturate(0.82) contrast(0.96);
}

.excursions__route-line {
  position: absolute;
  inset: 13% 14% 17% 12%;
  border: 1px solid rgba(23, 146, 162, 0.65);
  border-width: 1px 0 0 1px;
  border-radius: 48% 0 0 0;
  transform: rotate(-8deg);
  pointer-events: none;
}

.excursions__map-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(41, 54, 73, 0.82);
  color: var(--sand);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.excursions__map-label,
.excursions__map-label i {
  display: inline-flex;
  align-items: center;
}

.excursions__map-label {
  gap: 8px;
}

.excursions__map-label i {
  flex: 0 0 auto;
  font-size: 15px;
}

.excursions__map-label:hover {
  background: var(--sand);
  color: var(--navy);
  transform: translateY(-2px);
}

.excursions__map-label:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

.excursions__points {
  position: absolute;
  inset: 0;
}

.excursions__point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(41, 54, 73, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.excursions__point:hover,
.excursions__point:focus-visible {
  z-index: 2;
  transform: scale(1.14);
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

.excursions__point::after {
  content: attr(data-title) " · " attr(data-distance);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 220px;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--sand);
  color: var(--navy);
  font-size: 11px;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.excursions__point:hover::after,
.excursions__point:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.excursions__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(242, 242, 242, 0.18);
  border-radius: var(--radius-card);
  background: rgba(242, 242, 242, 0.06);
}

.excursions__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.excursions__list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(242, 242, 242, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.excursions__list li:hover {
  border-color: rgba(23, 146, 162, 0.7);
  box-shadow: none;
  transform: translateX(4px);
}

.excursions__index {
  flex: 0 0 28px;
  color: var(--gold) !important;
  font-family: var(--serif);
  font-size: 18px !important;
}

.excursions__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sand);
  font-size: 15px;
  font-weight: 500;
}

.excursions__list span {
  color: rgba(242, 242, 242, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.excursions__cta {
  width: 100%;
  margin-top: auto;
}

.contacts-home {
  padding: var(--space-section) 0;
  background: var(--white);
}

.contacts-home__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contacts-home__address,
.contacts-home__hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contacts-home__address [class^="iconoir-"],
.contacts-home__hours [class^="iconoir-"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--cta);
  flex-shrink: 0;
}

.contacts-home__address,
.contacts-home__hours,
.contacts-home__parking {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.contacts-home .section-title {
  margin: 0 0 20px;
}

.contacts-home__lead {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contacts-home__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.contacts-home__links a:hover {
  color: var(--cta);
}

.contacts-home__route {
  grid-column: 1 / -1;
}

.contacts-home__map {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.contacts-home__map .hotel-map {
  max-width: 100%;
}

.contacts-home__map iframe {
  display: none;
}

.final-cta {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
}

.final-cta__media,
.final-cta__media img,
.final-cta__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__video {
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms ease;
}

.final-cta__video.is-ready {
  opacity: 1;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 28, 38, 0.72), rgba(20, 28, 38, 0.45));
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) var(--gutter);
  text-align: left;
}

.final-cta__text {
  margin: 0;
  max-width: 14em;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.final-cta__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 700px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-cta__trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
}

.final-cta__trust li i {
  margin-top: 3px;
  color: var(--gold);
  flex: 0 0 auto;
}

.final-cta__secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.final-cta__secondary a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta__whatsapp {
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--white) !important;
  color: var(--navy) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
}

.final-cta__whatsapp:hover {
  background: var(--cta) !important;
  color: var(--white) !important;
  opacity: 1;
}

.final-cta__whatsapp:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.concierge-fallback {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 40;
  width: min(280px, calc(100vw - 32px));
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: var(--navy);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.concierge-fallback.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.concierge-fallback.is-hiding {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
}

.concierge-fallback__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.concierge-fallback__close:hover,
.concierge-fallback__close:focus-visible {
  color: var(--navy);
  background: rgba(41, 54, 73, 0.06);
}

.concierge-fallback__close:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.concierge-fallback__title {
  margin: 0 28px 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.concierge-fallback__text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.concierge-fallback__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.concierge-fallback__actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .concierge-fallback {
    bottom: max(72px, calc(env(safe-area-inset-bottom) + 64px));
  }
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 720px);
  margin-top: 12px;
}

.trust-panel div {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.trust-panel strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 24px;
}

.trust-panel span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.sticky-booking {
  position: fixed;
  right: calc(24px + var(--safe-right));
  bottom: calc(24px + var(--safe-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(23, 146, 162, 0.35);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-booking.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Restaurant page */
.restaurant-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.restaurant-hero__media,
.restaurant-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 38, 0.28), rgba(20, 28, 38, 0.72));
}

.restaurant-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(120px, 16vw, 180px) var(--gutter) clamp(48px, 6vw, 72px);
}

.restaurant-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.restaurant-hero__title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.restaurant-hero__lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.restaurant-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.restaurant-hero__note {
  margin: 16px 0 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.restaurant-about {
  padding: var(--space-section) 0;
  background: var(--white);
}

.restaurant-about__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.restaurant-about__emotion {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.restaurant-about .section-title--left {
  margin: 0 0 36px;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.restaurant-about__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.restaurant-about__col p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.restaurant-about__closing {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
  max-width: 18ch;
}

.restaurant-menu {
  padding: 0 0 var(--space-section);
  background: var(--white);
}

.restaurant-menu__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.restaurant-menu .section-title {
  margin: 0 0 40px;
  font-size: clamp(40px, 5.5vw, 64px);
}

.restaurant-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.restaurant-format {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--navy);
  background: var(--white);
  overflow: hidden;
}

.restaurant-format--flip {
  flex-direction: column-reverse;
}

.restaurant-format__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(41, 54, 73, 0.06);
}

.restaurant-format__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.restaurant-format__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: clamp(24px, 2.8vw, 36px);
}

.restaurant-format__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.restaurant-format__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.restaurant-info {
  padding: var(--space-section) 0;
  background: var(--paper);
}

.restaurant-info__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.restaurant-info .section-title {
  margin: 0 0 36px;
  font-size: clamp(40px, 5.5vw, 64px);
}

.restaurant-info__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.restaurant-info__list li {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.restaurant-info__list strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.restaurant-info__list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.restaurant-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.restaurant-gallery {
  padding: var(--space-section) 0;
  background: var(--white);
}

.restaurant-gallery__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.restaurant-gallery .section-title {
  margin: 0 0 40px;
  font-size: clamp(40px, 5.5vw, 64px);
}

.restaurant-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.restaurant-gallery__item {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-img);
  aspect-ratio: 1 / 1;
}

.restaurant-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.restaurant-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sticky-booking:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 36px rgba(23, 146, 162, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .quick-search__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-search__actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

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

  .services-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .restaurant-menu__grid {
    grid-template-columns: 1fr;
  }

  .service-card--tall .service-card__media {
    aspect-ratio: 1 / 1;
  }

  .final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .rooms-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rooms-home__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .quick-search__fields,
  .rooms-home__grid,
  .restaurant-home__dishes,
  .offers__grid,
  .excursions__list,
  .trust-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contacts-home__grid {
    grid-template-columns: 1fr;
  }

  .about__story {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .about__story .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header__logo span {
    display: none;
  }

  .site-header__phone {
    padding: 0 14px;
    font-size: 0;
  }

  .site-header__phone .ti {
    margin: 0;
    font-size: 18px;
  }

  .site-header {
    padding: 18px var(--gutter);
  }

  .site-header__logo img {
    width: 52px;
  }

  .hero--tz {
    min-height: max(760px, 100svh);
    padding: 112px var(--gutter) 48px;
  }

  .hero__title--tz {
    margin-bottom: 32px;
    font-size: clamp(32px, 8vw, 40px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-reputation {
    width: calc(100vw - 2 * var(--gutter));
    margin-top: 24px;
  }

  .hero-reputation__label {
    text-align: left;
  }

  .hero-reputation__list {
    display: flex;
    gap: 8px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-reputation__list::-webkit-scrollbar {
    display: none;
  }

  .hero-rating {
    flex: 0 0 168px;
    scroll-snap-align: start;
  }

  .quick-search {
    margin-top: 0;
    padding: 28px var(--gutter) 24px;
  }

  .quick-search__form {
    padding: 24px 20px;
  }

  .quick-search__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quick-search__fields .quick-search__label {
    margin-bottom: 0;
  }

  .quick-search__submit {
    width: 100%;
  }

  .about__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 12px;
    padding-right: 0;
  }

  .about__gallery-item--wide,
  .about__gallery-item--top,
  .about__gallery-item--tall,
  .about__gallery-item--mid,
  .about__gallery-item--stack-a,
  .about__gallery-item--stack-b {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .about__gallery-item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .about__gallery-more {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 4px;
    padding: 18px;
    border-radius: var(--radius-pill);
    transform: none;
    grid-column: 1 / -1;
  }

  .about__gallery-more:hover,
  .about__gallery-more:focus-visible {
    transform: none;
  }

  .restaurant-menu__grid,
  .restaurant-info__list,
  .restaurant-about__columns {
    grid-template-columns: 1fr;
  }

  .restaurant-gallery__grid {
    grid-template-columns: 1fr;
  }

  .restaurant-gallery__item--wide {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }

  .restaurant-hero__actions .btn,
  .restaurant-info__actions .btn {
    width: 100%;
  }

  .about__stats,
  .rooms-home__grid,
  .restaurant-home__dishes,
  .offers__grid,
  .benefits__grid,
  .services-grid__list,
  .excursions__list,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .contacts-home__links {
    grid-template-columns: 1fr;
  }

  .about__story {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 0;
  }

  .about__story-year {
    font-size: 58px;
  }

  .about__story .btn,
  .contacts-home__route {
    width: 100%;
  }

  .final-cta__trust {
    grid-template-columns: 1fr;
  }

  .room-card-tz__actions {
    flex-direction: column;
  }

  .room-card-tz__actions .btn {
    width: 100%;
  }

  .restaurant-home__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .restaurant-home__actions .btn {
    width: 100%;
  }

  .final-cta__inner {
    padding: 64px var(--gutter);
    gap: 24px;
  }

  .sticky-booking {
    left: calc(16px + var(--safe-left));
    right: calc(16px + var(--safe-right));
    bottom: calc(16px + var(--safe-bottom));
    justify-content: center;
  }
}

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

  .hero__slide {
    transform: none;
    transition: opacity 0.2s ease;
  }

  .hero__slide.is-active {
    transform: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sticky-booking {
    transform: none;
    transition: opacity 0.15s ease;
  }

  .sticky-booking.is-visible {
    transform: none;
  }

  .site-nav-drawer__panel {
    transition: none;
  }
}

/* Normalized brandbook components: rendered at their intended size. */
.site-header__logo img {
  width: 156px;
  height: auto;
}

.stat-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 8px;
  place-items: center;
}

.stat-card__icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.excursions__helper {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(23, 146, 162, 0.34);
}

.excursions__helper img {
  width: 64px;
  height: 79px;
  object-fit: contain;
}

.excursions__helper p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.excursions__helper strong {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.excursions__helper span {
  color: rgba(242, 242, 242, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .site-header__logo img {
    width: 112px;
  }

  .stat-card__icon,
  .stat-card__icon img {
    width: 56px;
    height: 56px;
  }

  .excursions__helper {
    grid-template-columns: 58px 1fr;
  }

  .excursions__helper img {
    width: 58px;
    height: 72px;
  }
}

@media (max-width: 760px) {
  .sticky-booking.is-visible.is-suppressed {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }
}

/* Keep the guide map and copy stacked after the later desktop declarations. */
@media (max-width: 1024px) {
  .excursions__head,
  .excursions__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .excursions__map {
    width: 100%;
    min-height: 520px;
  }

  .excursions__panel {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .excursions__map {
    min-height: 420px;
  }
}

/* P1: a single hotel film replaces the temporary photo mosaic. */
.about__film {
  position: relative;
  min-height: 500px;
  margin: 8px 0 56px;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 36px);
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(41, 54, 73, 0.18);
  aspect-ratio: 16 / 8.5;
}

.about__film-video,
.about__film-shade {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.about__film-video {
  object-fit: cover;
  object-position: center;
}

.about__film-shade {
  background: linear-gradient(180deg, rgba(8, 31, 45, 0.03) 28%, rgba(8, 31, 45, 0.76) 100%);
  pointer-events: none;
}

.about__film-caption {
  position: absolute;
  left: clamp(24px, 5vw, 68px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: 1;
  display: flex;
  max-width: min(620px, calc(100% - 190px));
  flex-direction: column;
  gap: 8px;
  color: var(--white);
}

.about__film-caption span {
  color: var(--sand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about__film-caption strong {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}

.about__film-actions {
  position: absolute;
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(24px, 4vw, 54px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__film-control,
.about__film-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-pill);
  background: rgba(8, 31, 45, 0.5);
  color: var(--white);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.about__film-control {
  width: 46px;
  padding: 0;
  cursor: pointer;
}

.about__film-control svg {
  width: 18px;
  height: 18px;
}

.about__film-control span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.about__film-link {
  padding: 0 20px;
}

.about__film-control:hover,
.about__film-control:focus-visible,
.about__film-link:hover,
.about__film-link:focus-visible {
  border-color: var(--white);
  background: rgba(8, 31, 45, 0.82);
  transform: translateY(-2px);
}

.about__film-control:focus-visible,
.about__film-link:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

/* P1: make the restaurant read as a primary destination, not a service card. */
.restaurant-home {
  background: linear-gradient(135deg, var(--sand) 0%, var(--paper) 42%, var(--white) 100%);
}

.restaurant-home__scene {
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(41, 54, 73, 0.12);
  border-radius: clamp(24px, 3vw, 38px);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(41, 54, 73, 0.13);
}

.restaurant-home__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.restaurant-home__copy .section-title {
  max-width: 9.5ch;
  margin-bottom: 28px;
}

.restaurant-home__copy > .restaurant-home__lead {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.5;
}

.restaurant-home__feature,
.restaurant-home__feature picture {
  height: 100%;
}

.restaurant-home__feature img {
  height: 100%;
  min-height: 620px;
  border-radius: 0;
  aspect-ratio: auto;
}

@media (max-width: 1024px) {
  .about__film {
    min-height: 460px;
    aspect-ratio: 16 / 10;
  }

  .restaurant-home__scene {
    grid-template-columns: 1fr;
  }

  .restaurant-home__feature {
    max-width: none;
  }

  .restaurant-home__feature img {
    height: auto;
    min-height: 0;
    border-radius: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .about__film {
    min-height: 500px;
    margin-bottom: 40px;
    aspect-ratio: 4 / 5;
  }

  .about__film-video {
    object-position: center;
  }

  .about__film-caption {
    right: 22px;
    bottom: 94px;
    left: 22px;
    max-width: none;
  }

  .about__film-actions {
    right: 20px;
    bottom: 24px;
    left: 20px;
  }

  .about__film-link {
    flex: 1;
  }

  .restaurant-home__copy {
    padding: 34px 22px 38px;
  }

  .restaurant-home__copy .section-title {
    max-width: none;
  }

  .restaurant-home__feature img {
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__film-control,
  .about__film-link {
    transition: none;
  }
}

/* Editorial services carousel: inspired by the calm, image-led rhythm of boutique hotel sites. */
.services-grid {
  overflow: hidden;
  padding: clamp(80px, 9vw, 136px) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(23, 146, 162, 0.08), transparent 28%),
    var(--paper);
}

.services-grid__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.services-grid__eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-grid .section-title {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.96;
}

.services-grid__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 6px;
}

.services-grid__intro > p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.services-grid__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.services-grid__controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(41, 54, 73, 0.26);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.services-grid__controls button:hover:not(:disabled),
.services-grid__controls button:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.services-grid__controls button:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

.services-grid__controls button:disabled {
  cursor: default;
  opacity: 0.32;
}

.services-grid__list {
  display: flex;
  grid-template-columns: none;
  gap: clamp(16px, 2vw, 28px);
  margin-right: calc(var(--gutter) * -1);
  padding: 6px var(--gutter) 16px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: 0 var(--gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.services-grid__list::-webkit-scrollbar {
  display: none;
}

.services-grid__list:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 6px;
}

.services-grid .service-card,
.services-grid .service-card:nth-child(n) {
  position: relative;
  display: block;
  flex: 0 0 clamp(310px, 31vw, 420px);
  min-height: clamp(500px, 47vw, 640px);
  overflow: hidden;
  scroll-snap-align: start;
  border: 0;
  border-radius: clamp(20px, 2.4vw, 32px);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 22px 56px rgba(41, 54, 73, 0.14);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-grid .service-card:first-child {
  flex-basis: clamp(360px, 39vw, 540px);
}

.services-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 76px rgba(41, 54, 73, 0.22);
}

.services-grid .service-card:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 4px;
}

.services-grid .service-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(8, 31, 45, 0.02) 18%, rgba(8, 31, 45, 0.24) 48%, rgba(8, 31, 45, 0.94) 100%);
}

.services-grid .service-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  aspect-ratio: auto;
  background: var(--navy);
}

.services-grid .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0, 1);
}

.services-grid .service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.services-grid .service-card__body {
  position: absolute;
  inset: auto 0 0;
  display: block;
  padding: clamp(26px, 3vw, 42px);
  color: var(--white);
}

.services-grid .service-card__index {
  display: block;
  margin-bottom: 16px;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.services-grid .service-card__title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.services-grid .service-card__text {
  max-width: 36ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
  text-transform: none;
}

.services-grid .service-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.restaurant-home__formats-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin: clamp(58px, 7vw, 96px) 0 28px;
}

.restaurant-home__formats-head h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
}

.restaurant-home__formats-head > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.restaurant-home__dishes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
  margin: 0;
}

.restaurant-home .dish-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.restaurant-home .dish-card img {
  aspect-ratio: 4 / 5;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0, 1);
}

.restaurant-home .dish-card:hover img {
  transform: scale(1.025);
}

.restaurant-home .dish-card__body {
  min-height: 190px;
}

.restaurant-home .dish-card__body > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(23, 146, 162, 0.1);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .services-grid__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid__intro {
    align-items: center;
  }

  .services-grid__list {
    grid-template-columns: none;
  }

  .restaurant-home__dishes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    padding: 72px 0;
  }

  .services-grid .section-title {
    max-width: none;
    font-size: clamp(42px, 14vw, 60px);
  }

  .services-grid__intro {
    display: grid;
    gap: 22px;
  }

  .services-grid__controls {
    justify-self: start;
  }

  .services-grid__list {
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
  }

  .services-grid .service-card,
  .services-grid .service-card:first-child,
  .services-grid .service-card:nth-child(n) {
    flex-basis: min(84vw, 340px);
    min-height: 470px;
    border-radius: 22px;
  }

  .services-grid .service-card__title {
    font-size: 34px;
  }

  .restaurant-home__formats-head {
    display: grid;
    gap: 18px;
    margin-top: 56px;
  }

  .restaurant-home__dishes {
    grid-template-columns: 1fr;
  }

  .restaurant-home .dish-card img {
    aspect-ratio: 4 / 3;
  }

  .restaurant-home .dish-card__body {
    min-height: 0;
  }
}

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

  .services-grid .service-card,
  .services-grid .service-card__media img,
  .restaurant-home .dish-card img {
    transition: none;
  }
}

/* Final cascade for the stacked Faces-style service deck. */
.services-grid__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
}

.services-grid__head {
  display: block;
  margin: 0;
  align-self: center;
}

.services-grid .section-title {
  max-width: 7ch;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 78px);
}

.services-grid__intro {
  display: block;
  max-width: 34ch;
  margin-top: 32px;
  padding: 0;
}

.services-grid__intro > p {
  max-width: none;
}

.services-grid__controls {
  margin-top: 28px;
}

.services-grid__visual {
  position: relative;
  width: min(100%, 680px);
  min-width: 0;
  padding-right: 58px;
}

.services-grid__list {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(590px, 49vw, 700px);
  margin: 0;
  padding: 0;
  overflow: visible;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.services-grid .service-card,
.services-grid .service-card:first-child,
.services-grid .service-card:nth-child(n) {
  --service-depth: 7;
  position: absolute;
  inset: 0;
  z-index: calc(10 - var(--service-depth));
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--service-depth) * 13px), calc(var(--service-depth) * 17px), 0)
    scale(calc(1 - var(--service-depth) * 0.012));
  transform-origin: center bottom;
  scroll-snap-align: none;
  border: 1px solid rgba(41, 54, 73, 0.12);
  border-radius: 14px;
  background: #d9d5d0;
  color: var(--navy);
  box-shadow: 0 18px 48px rgba(41, 54, 73, 0.12);
  isolation: isolate;
  transition: transform 0.58s cubic-bezier(0.22, 0.72, 0, 1), opacity 0.42s ease;
}

.services-grid .service-card.is-in-deck {
  opacity: calc(1 - var(--service-depth) * 0.13);
}

.services-grid .service-card.is-active {
  --service-depth: 0;
  z-index: 12;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 28px 70px rgba(41, 54, 73, 0.18);
}

.services-grid .service-card::after {
  display: none;
}

.services-grid .service-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  aspect-ratio: auto;
}

.services-grid .service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 33, 46, 0.02), rgba(13, 33, 46, 0.14));
}

.services-grid .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid .service-card__body {
  position: absolute;
  inset: 70px auto auto 28px;
  z-index: 2;
  display: block;
  width: min(62%, 360px);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  background: rgba(247, 244, 238, 0.86);
  color: var(--navy);
  box-shadow: 0 16px 42px rgba(24, 34, 45, 0.11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.services-grid .service-card__index {
  display: block;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.services-grid .service-card__title {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 0.98;
  text-transform: none;
}

.services-grid .service-card__text {
  max-width: 36ch;
  margin: 0;
  color: rgba(41, 54, 73, 0.78);
  font-size: 14px;
  line-height: 1.48;
  text-transform: none;
}

.services-grid .service-card__more {
  display: flex;
  margin-top: 26px;
  padding-top: 16px;
  border-color: rgba(41, 54, 73, 0.24);
  color: var(--navy);
}

.services-grid .service-card:hover,
.services-grid .service-card.is-active:hover {
  transform: none;
}

.services-grid__pagination {
  display: grid;
  grid-template-columns: repeat(6, minmax(24px, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.services-grid__pagination button {
  position: relative;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.services-grid__pagination button::before {
  position: absolute;
  inset: 9px 0 auto;
  height: 2px;
  content: "";
  background: rgba(41, 54, 73, 0.3);
  transform: scaleY(0.5);
  transform-origin: center;
}

.services-grid__pagination button.is-active::before {
  transform: scaleY(1);
  background: var(--navy);
}

@media (max-width: 1024px) {
  .services-grid__inner {
    grid-template-columns: minmax(220px, 0.62fr) minmax(420px, 1.38fr);
    gap: 48px;
  }

  .services-grid__visual {
    padding-right: 40px;
  }

  .services-grid__list {
    grid-template-columns: none;
    height: 590px;
  }

  .services-grid .service-card__body {
    inset: 48px auto auto 24px;
    width: min(72%, 340px);
  }
}

@media (max-width: 760px) {
  .services-grid__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-grid .section-title {
    max-width: 7ch;
  }

  .services-grid__intro {
    max-width: 38ch;
    margin-top: 22px;
  }

  .services-grid__visual {
    width: 100%;
    padding-right: 18px;
  }

  .services-grid__list {
    height: min(142vw, 590px);
    margin: 0;
    padding: 0;
  }

  .services-grid .service-card,
  .services-grid .service-card:first-child,
  .services-grid .service-card:nth-child(n) {
    flex-basis: auto;
    border-radius: 12px;
    transform: translate3d(calc(var(--service-depth) * 4px), calc(var(--service-depth) * 9px), 0)
      scale(calc(1 - var(--service-depth) * 0.008));
  }

  .services-grid .service-card__body {
    inset: auto 16px 16px;
    width: auto;
    padding: 24px;
  }

  .services-grid .service-card__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .services-grid .service-card__text {
    font-size: 13px;
  }

  .services-grid .service-card__more {
    margin-top: 18px;
    padding-top: 13px;
  }

  .services-grid__pagination {
    gap: 8px;
    margin-top: 24px;
  }
}
