:root {
  --bg: #f6f2e9;
  --paper: #fffaf1;
  --ink: #24332e;
  --muted: #66726d;
  --line: #ded6c7;
  --green: #1f684d;
  --green-dark: #174936;
  --blue: #326f8d;
  --gold: #b98236;
  --shadow: 0 18px 46px rgba(36, 51, 46, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(222, 214, 199, 0.8);
  background: rgba(255, 250, 241, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.phone-link {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav .is-active,
.phone-link:hover {
  color: var(--green-dark);
  background: #edf3ec;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 70px clamp(18px, 6vw, 82px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 35, 29, 0.72), rgba(18, 35, 29, 0.18) 58%, rgba(18, 35, 29, 0.08)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

.hero__content {
  position: relative;
  max-width: 680px;
  color: #fff;
}

.hero h1,
.page-intro h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
}

.hero p {
  max-width: 580px;
  font-size: 19px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.room-card .btn-secondary {
  color: var(--green-dark);
  border-color: var(--line);
  background: #fffdf8;
}

.section,
.page-intro,
.booking-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding-top: 18px;
}

.page-intro {
  padding: 76px 0 34px;
}

.page-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.section__head {
  margin-bottom: 26px;
}

.section__head h2 {
  margin: 0;
  font-size: 34px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.toolbar button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.toolbar button.is-active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

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

.room-card,
.room-row,
.booking-form,
.calc-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.room-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
}

.room-card__image {
  aspect-ratio: 16 / 10;
  margin: -24px -24px 18px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #eef5f7;
}

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

.room-card h3,
.room-row h3,
.form-section h2 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.2;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.room-card__meta li {
  padding: 6px 9px;
  border: 1px solid #e7decd;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  background: #fffdf8;
}

.room-card__price {
  margin: auto 0 6px;
  font-size: 28px;
  font-weight: 800;
}

.room-card__period {
  color: var(--muted);
  font-size: 16px;
}

.room-card__rooms,
.room-row p,
.form-note {
  color: var(--muted);
}

.room-list {
  display: grid;
  gap: 10px;
}

.room-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
  padding: 18px 0 80px;
}

.booking-form,
.calc-panel {
  padding: 24px;
}

.form-section + .form-section {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfc5b5;
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.room-summary {
  margin: 0 0 18px;
  padding: 14px;
  border-left: 4px solid var(--blue);
  color: var(--muted);
  background: #f1f6f7;
}

.calc-panel {
  position: sticky;
  top: 96px;
}

.calc-panel.is-error {
  border-color: #b65645;
}

.calc-panel__total {
  margin: 4px 0 14px;
  font-size: 42px;
  font-weight: 800;
}

.calc-panel__text {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #efe8da;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #ece3d4;
}

@media (max-width: 920px) {
  .site-header,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .calc-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 560px;
    padding-top: 48px;
  }

  .room-grid,
  .field-grid,
  .room-row {
    grid-template-columns: 1fr;
  }

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

.hero--home {
  min-height: 680px;
  align-items: end;
  padding-bottom: 118px;
}

.hero--home .hero__content {
  max-width: 760px;
}

.hero--home h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.94;
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 6vw, 82px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(560px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.16);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 14px;
  color: #fff;
  background: rgba(19, 42, 35, 0.28);
}

.hero-facts b {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: end;
  padding-bottom: 42px;
}

.intro-band h2,
.booking-strip h2,
.stay-section h2,
.contact-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

.intro-band > p,
.booking-strip p,
.stay-section__content,
.contact-cta {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.feature-item {
  min-height: 220px;
  padding: 24px;
  border-top: 3px solid var(--green);
  background: #fffdf8;
}

.feature-item span {
  color: var(--gold);
  font-weight: 700;
}

.feature-item h3 {
  margin: 34px 0 10px;
  font-size: 25px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.section__head--split {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.text-link {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.booking-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--blue));
}

.booking-strip .eyebrow,
.booking-strip p {
  color: rgba(255, 255, 255, 0.78);
}

.stay-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.stay-section__media {
  min-height: 440px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(31, 104, 77, 0.05), rgba(31, 104, 77, 0.18)),
    url("../img/hero-facade.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.stay-section__content {
  display: grid;
  align-content: center;
  padding: 28px 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list p {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  background: #fffdf8;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding-top: 18px;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.btn-plain {
  color: var(--green-dark);
  border-color: var(--line);
  background: transparent;
}

@media (max-width: 920px) {
  .hero--home {
    min-height: 720px;
  }

  .hero-facts {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .intro-band,
  .feature-grid,
  .booking-strip,
  .stay-section,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .contact-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero--home {
    min-height: 700px;
    padding-bottom: 170px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 12px 14px;
  }

  .section__head--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-strip {
    padding: 24px;
  }
}


.rooms-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 34px;
  align-items: end;
  padding: 76px 0 34px;
}

.rooms-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.rooms-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.rooms-hero__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.rooms-hero__panel div {
  padding: 13px 18px;
  background: var(--paper);
}

.rooms-hero__panel b {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.rooms-hero__panel span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.rooms-control {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 18px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.control-label,
.result-counter {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rooms-control .toolbar {
  margin-bottom: 0;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.filter-panel label {
  margin-bottom: 0;
}

.filter-panel .btn {
  min-height: 44px;
  width: 100%;
}

.room-grid--catalog {
  align-items: stretch;
}

.room-card--catalog {
  min-height: 420px;
}

.room-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.room-details-section {
  padding-top: 30px;
}

.room-list--detailed {
  gap: 14px;
}

.room-row--detailed {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.room-row__main {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
}

.room-row__number {
  display: grid;
  place-items: center;
  min-height: 82px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 24px;
  font-weight: 800;
}

.room-row__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.room-row__features li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  background: #fffdf8;
}

.room-row__side {
  padding: 22px;
}

.rooms-booking-strip {
  margin-bottom: 72px;
}

@media (max-width: 980px) {
  .rooms-hero,
  .rooms-control {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .filter-panel,
  .room-row--detailed,
  .room-row__main {
    grid-template-columns: 1fr;
  }

  .room-row__number {
    min-height: 58px;
    place-items: center start;
    padding-left: 18px;
  }

  .room-row__side {
    padding-top: 0;
  }
}

/* Blue-gold theme */
:root {
  --bg: #f7fafb;
  --paper: #ffffff;
  --ink: #1e2b32;
  --muted: #60727d;
  --line: #d8e3e8;
  --green: #236b91;
  --green-dark: #123a5a;
  --blue: #2d7fa8;
  --gold: #c79a45;
  --gold-soft: #e8d29a;
  --shadow: 0 18px 42px rgba(18, 58, 90, 0.12);
}

body {
  background:
    linear-gradient(180deg, rgba(234, 244, 248, 0.72), rgba(247, 250, 251, 0) 360px),
    var(--bg);
  color: var(--ink);
}

.site-header {
  border-bottom-color: rgba(216, 227, 232, 0.92);
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  color: var(--green-dark);
  font-weight: 800;
}

.main-nav a:hover,
.main-nav .is-active,
.phone-link:hover {
  color: var(--green-dark);
  background: #eaf4f8;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(10, 38, 62, 0.78), rgba(18, 58, 90, 0.34) 56%, rgba(18, 58, 90, 0.12)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

.hero h1,
.page-intro h1,
.rooms-hero h1 {
  font-size: clamp(36px, 5.1vw, 66px);
  font-weight: 750;
  line-height: 1.04;
}

.hero--home h1 {
  font-size: clamp(48px, 7.2vw, 92px);
  font-weight: 800;
  line-height: 0.98;
}

.intro-band h2,
.booking-strip h2,
.stay-section h2,
.contact-cta h2 {
  font-size: clamp(28px, 3.25vw, 44px);
  font-weight: 750;
  line-height: 1.08;
}

.section__head h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 750;
}

.room-card h3,
.room-row h3,
.form-section h2,
.feature-item h3 {
  font-weight: 750;
}

.eyebrow,
.room-card__topline,
.feature-item span {
  color: var(--gold);
}

.btn-primary,
.toolbar button.is-active,
.room-row__number {
  background: var(--green-dark);
}

.btn-primary:hover {
  background: #0d2f49;
}

.btn-secondary {
  border-color: rgba(232, 210, 154, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

.room-card .btn-secondary,
.btn-plain {
  color: var(--green-dark);
  border-color: var(--line);
  background: #f8fbfc;
}

.toolbar button,
.room-card,
.room-row,
.booking-form,
.calc-panel,
.rooms-hero__panel div,
.rooms-control,
.feature-item,
.check-list p {
  background: var(--paper);
}

.room-card__meta li,
.room-row__features li,
input,
select,
textarea {
  border-color: var(--line);
  background: #f8fbfc;
}

.feature-item {
  border-top-color: var(--gold);
}

.booking-strip {
  background:
    linear-gradient(135deg, rgba(18, 58, 90, 0.98), rgba(35, 107, 145, 0.94)),
    var(--green-dark);
}

.stay-section__media {
  background:
    linear-gradient(180deg, rgba(18, 58, 90, 0.04), rgba(35, 107, 145, 0.22)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

.check-list p {
  border-left-color: var(--gold);
}

.room-summary {
  border-left-color: var(--gold);
  background: #eef7fa;
}

.site-footer {
  border-top-color: var(--line);
  background: #eaf4f8;
}

code {
  background: #eaf4f8;
}

/* Terracotta-blue theme */
:root {
  --bg: #f8f6f4;
  --paper: #ffffff;
  --ink: #4b4345;
  --muted: #756d6f;
  --line: #e2d8d4;
  --green: #102a49;
  --green-dark: #102a49;
  --blue: #102a49;
  --gold: #f79b77;
  --gold-soft: #f7c6b2;
  --accent-dark: #755248;
  --shadow: 0 18px 42px rgba(16, 42, 73, 0.11);
}

body {
  background:
    linear-gradient(180deg, rgba(247, 155, 119, 0.1), rgba(248, 246, 244, 0) 340px),
    var(--bg);
  color: var(--ink);
}

.site-header {
  border-bottom-color: rgba(226, 216, 212, 0.95);
  background: rgba(255, 255, 255, 0.94);
}

.brand,
.main-nav a:hover,
.main-nav .is-active,
.phone-link:hover,
.text-link,
.btn-plain,
.room-card .btn-secondary {
  color: var(--green-dark);
}

.main-nav a:hover,
.main-nav .is-active,
.phone-link:hover {
  background: #f8ece7;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(16, 42, 73, 0.82), rgba(117, 82, 72, 0.36) 58%, rgba(16, 42, 73, 0.14)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

.eyebrow,
.room-card__topline,
.feature-item span {
  color: var(--gold);
}

.btn-primary,
.toolbar button.is-active,
.room-row__number {
  background: var(--green-dark);
}

.btn-primary:hover {
  background: #0a1f38;
}

.btn-secondary {
  border-color: rgba(247, 155, 119, 0.78);
  background: rgba(247, 155, 119, 0.12);
}

.room-card .btn-secondary,
.btn-plain {
  border-color: var(--line);
  background: #fbf8f7;
}

.room-card,
.room-row,
.booking-form,
.calc-panel,
.rooms-hero__panel div,
.rooms-control,
.feature-item,
.check-list p,
.toolbar button {
  background: var(--paper);
}

.room-card__meta li,
.room-row__features li,
input,
select,
textarea {
  border-color: var(--line);
  background: #fbf8f7;
}

.feature-item {
  border-top-color: var(--gold);
}

.booking-strip {
  background:
    linear-gradient(135deg, #102a49, #755248);
}

.stay-section__media {
  background:
    linear-gradient(180deg, rgba(16, 42, 73, 0.04), rgba(117, 82, 72, 0.2)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

.check-list p,
.room-summary {
  border-left-color: var(--gold);
}

.room-summary {
  background: #fff1eb;
}

.hero-facts {
  border-color: rgba(247, 155, 119, 0.38);
  background: rgba(16, 42, 73, 0.22);
}

.hero-facts div {
  background: rgba(16, 42, 73, 0.34);
}

.site-footer,
code {
  background: #f1ebe8;
}

/* Display typography and low-gradient surfaces */
:root {
  --display-font: "Oswald", Arial, Helvetica, sans-serif;
}

.hero h1,
.page-intro h1,
.rooms-hero h1,
.intro-band h2,
.booking-strip h2,
.stay-section h2,
.contact-cta h2,
.section__head h2 {
  font-family: var(--display-font);
  font-weight: 200;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-intro h1,
.rooms-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
}

.hero--home h1 {
  font-size: clamp(68px, 10vw, 136px);
  font-weight: 200;
  line-height: 0.9;
}

.intro-band h2,
.booking-strip h2,
.stay-section h2,
.contact-cta h2,
.section__head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
}

body {
  background: var(--bg);
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(16, 42, 73, 0.74), rgba(16, 42, 73, 0.18)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

.booking-strip {
  background: #102a49;
}

.stay-section__media {
  background:
    linear-gradient(180deg, rgba(16, 42, 73, 0.08), rgba(16, 42, 73, 0.08)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

.hero-facts {
  background: rgba(16, 42, 73, 0.2);
}

.hero-facts div {
  background: rgba(16, 42, 73, 0.24);
}


/* Header contacts */
.header-contacts {
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: 220px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.header-contacts a {
  text-decoration: none;
}

.header-contacts .phone-link {
  padding: 0;
  border-radius: 0;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 800;
  background: transparent;
}

.header-contacts .email-link:hover,
.header-contacts .phone-link:hover {
  color: var(--gold);
  background: transparent;
}

.address-line {
  text-align: right;
}

@media (max-width: 920px) {
  .header-contacts {
    justify-items: start;
    min-width: 0;
  }

  .address-line {
    text-align: left;
  }
}

/* Mobile burger menu */
.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  margin-left: auto;
  padding: 8px 6px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--green-dark);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  margin-left: auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, width .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
  width: 22px;
}

.menu-toggle span:nth-child(2) {
  width: 34px;
}

.menu-toggle span:nth-child(3) {
  width: 15px;
}

.menu-open .menu-toggle span:nth-child(1) {
  width: 32px;
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  width: 32px;
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .site-header .main-nav,
  .site-header .header-contacts {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 auto;
    z-index: 9;
    display: block;
    max-height: 0;
    overflow: hidden;
    color: #fff;
    background: #102a49;
    box-shadow: 0 24px 48px rgba(16, 42, 73, 0.22);
    transition: max-height .28s ease;
  }

  .menu-open .mobile-menu {
    max-height: calc(100vh - 72px);
  }

  .mobile-menu__inner {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 28px 18px 34px;
  }

  .mobile-nav {
    display: grid;
    gap: 4px;
  }

  .mobile-nav a {
    padding: 10px 0;
    color: #fff;
    font-family: var(--display-font);
    font-size: 42px;
    font-weight: 200;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav a.is-active {
    color: #f79b77;
  }

  .mobile-menu__contacts {
    display: grid;
    gap: 7px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(247, 155, 119, 0.35);
    color: rgba(255, 255, 255, 0.78);
  }

  .mobile-menu__contacts a {
    color: #fff;
    text-decoration: none;
  }

  .mobile-menu__cta {
    width: 100%;
    margin-top: 22px;
    color: #102a49;
    background: #f79b77;
  }

  .mobile-menu__cta:hover {
    background: #f7c6b2;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .mobile-nav a {
    font-size: 36px;
  }
}

/* Desktop-visible statement burger */
.site-header {
  grid-template-columns: auto 1fr auto auto;
}

.site-header .main-nav {
  display: none;
}

.menu-toggle {
  display: block;
  width: 66px;
  height: 56px;
  padding: 10px 8px;
}

.menu-toggle span {
  height: 3px;
  margin: 7px 0;
}

.menu-toggle span:nth-child(1) {
  width: 32px;
}

.menu-toggle span:nth-child(2) {
  width: 48px;
}

.menu-toggle span:nth-child(3) {
  width: 23px;
}

.menu-open .menu-toggle span:nth-child(1) {
  width: 44px;
  transform: translateY(10px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(3) {
  width: 44px;
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 9;
  display: block;
  max-height: 0;
  overflow: hidden;
  color: #fff;
  background: #102a49;
  box-shadow: 0 24px 48px rgba(16, 42, 73, 0.22);
  transition: max-height .28s ease;
}

.menu-open .mobile-menu {
  max-height: calc(100vh - 72px);
}

.mobile-menu__inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 44px;
  align-items: end;
  padding: 44px 0 52px;
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 200;
  line-height: 0.96;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav a.is-active,
.mobile-nav a:hover {
  color: #f79b77;
}

.mobile-menu__contacts {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.mobile-menu__contacts a {
  color: #fff;
  text-decoration: none;
}

.mobile-menu__cta {
  width: 100%;
  margin-top: 20px;
  color: #102a49;
  background: #f79b77;
}

.mobile-menu__cta:hover {
  background: #f7c6b2;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-header .header-contacts {
    display: none;
  }

  .menu-toggle {
    width: 54px;
    height: 48px;
  }

  .mobile-menu__inner {
    display: block;
    width: min(100%, 720px);
    padding: 28px 18px 34px;
  }

  .mobile-nav a {
    font-size: 42px;
    line-height: 1;
  }

  .mobile-menu__contacts {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(247, 155, 119, 0.35);
    font-size: 15px;
  }
}

/* Header contact emphasis */
.header-contacts {
  min-width: 310px;
  gap: 3px;
}

.header-contacts .phone-link {
  font-size: 21px;
  line-height: 1.05;
}

.hours-line {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
}

.address-line {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.18;
}

.menu-toggle {
  width: 82px;
  height: 64px;
  padding: 11px 9px;
}

.menu-toggle span {
  height: 3px;
  margin: 8px 0;
}

.menu-toggle span:nth-child(1) {
  width: 42px;
}

.menu-toggle span:nth-child(2) {
  width: 60px;
}

.menu-toggle span:nth-child(3) {
  width: 30px;
}

.menu-open .menu-toggle span:nth-child(1) {
  width: 54px;
  transform: translateY(11px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(3) {
  width: 54px;
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 920px) {
  .menu-toggle {
    width: 64px;
    height: 54px;
  }

  .menu-toggle span:nth-child(1) {
    width: 32px;
  }

  .menu-toggle span:nth-child(2) {
    width: 48px;
  }

  .menu-toggle span:nth-child(3) {
    width: 23px;
  }
}

/* Corner reveal menu and room subnav */
.mobile-menu {
  inset: 72px 0 0 0;
  max-height: none !important;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.06);
  transform-origin: calc(100% - 44px) 0;
  transition: transform .36s cubic-bezier(.2, .8, .2, 1), opacity .22s ease;
  will-change: transform, opacity;
}

.menu-open .mobile-menu {
  max-height: none !important;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.mobile-menu__inner {
  align-items: start;
}

.mobile-nav__group {
  display: grid;
  gap: 10px;
}

.mobile-subnav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  max-width: 760px;
  padding: 0 0 14px 4px;
}

.mobile-subnav a {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  text-transform: none;
}

.mobile-subnav a:hover {
  color: #f79b77;
}

.mobile-menu__contacts,
.mobile-menu__cta {
  display: none !important;
}

@media (max-width: 920px) {
  .menu-toggle {
    width: 76px;
    height: 62px;
    padding: 11px 9px;
  }

  .menu-toggle span {
    height: 3px;
    margin: 8px 0;
  }

  .menu-toggle span:nth-child(1) {
    width: 38px;
  }

  .menu-toggle span:nth-child(2) {
    width: 56px;
  }

  .menu-toggle span:nth-child(3) {
    width: 28px;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    width: 50px;
    transform: translateY(11px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(3) {
    width: 50px;
    transform: translateY(-11px) rotate(-45deg);
  }

  .mobile-menu {
    transform-origin: calc(100% - 38px) 0;
  }

  .mobile-nav a {
    font-size: 48px;
  }

  .mobile-subnav {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-bottom: 12px;
  }

  .mobile-subnav a {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .mobile-nav a {
    font-size: 42px;
  }

  .menu-toggle {
    width: 70px;
  }
}

/* Visible room categories in menu */
.mobile-nav__group {
  gap: 14px;
}

.mobile-subnav {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 8px 12px;
  max-width: 820px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(247, 155, 119, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.mobile-subnav__title {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #f79b77;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-nav .mobile-subnav a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  text-transform: none;
}

.mobile-nav .mobile-subnav a:hover {
  color: #f79b77;
}

@media (max-width: 920px) {
  .mobile-subnav {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .mobile-nav .mobile-subnav a {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .mobile-nav .mobile-subnav a {
    font-size: 14px;
  }
}

/* Collapsible room categories in menu */
.mobile-subnav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(520px, 100%);
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-family: var(--display-font);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 200;
  line-height: 0.96;
  text-align: left;
  text-transform: uppercase;
}

.mobile-subnav-toggle.is-active,
.mobile-subnav-toggle:hover {
  color: #f79b77;
}

.mobile-subnav-toggle__arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-6px);
  transition: transform .2s ease;
}

.mobile-subnav-toggle[aria-expanded="true"] .mobile-subnav-toggle__arrow {
  transform: rotate(225deg) translateY(-2px);
}

.mobile-subnav[hidden] {
  display: none !important;
}

.mobile-subnav__all {
  color: #f79b77 !important;
}

@media (max-width: 920px) {
  .mobile-subnav-toggle {
    font-size: 48px;
  }
}

@media (max-width: 420px) {
  .mobile-subnav-toggle {
    font-size: 42px;
  }
}

/* Robust category submenu visibility */
.mobile-subnav.is-open {
  display: grid !important;
}

.mobile-subnav__empty {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* Lightweight room submenu */
.mobile-subnav {
  margin: -2px 0 22px 42px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.mobile-nav .mobile-subnav a {
  padding: 6px 0;
  font-size: 17px;
  line-height: 1.18;
}

.mobile-subnav__all {
  font-size: 19px !important;
}

@media (max-width: 920px) {
  .mobile-subnav {
    margin-left: 28px;
  }

  .mobile-nav .mobile-subnav a {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .mobile-subnav {
    margin-left: 18px;
  }

  .mobile-nav .mobile-subnav a {
    font-size: 16px;
  }
}

/* Fullscreen menu overlay */
.mobile-menu {
  inset: 0 !important;
  z-index: 80;
  min-height: 100vh;
  padding-top: 86px;
}

.site-header {
  z-index: 90;
}

.menu-toggle {
  position: relative;
  z-index: 100;
}

.menu-open .menu-toggle {
  color: #fff;
}

.menu-open .brand,
.menu-open .header-contacts {
  color: #fff;
}

.menu-open .header-contacts .phone-link,
.menu-open .address-line,
.menu-open .hours-line {
  color: #fff;
}

.menu-open .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  backdrop-filter: none;
}

.mobile-menu__inner {
  padding-top: 34px;
}

@media (max-width: 920px) {
  .mobile-menu {
    padding-top: 74px;
  }
}

/* Slower menu reveal */
.mobile-menu {
  transition: transform .72s cubic-bezier(.16, .84, .22, 1), opacity .42s ease !important;
}

.menu-toggle span {
  transition: transform .34s ease, width .34s ease, opacity .24s ease;
}

/* Wider category submenu columns */
.mobile-subnav {
  grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 1fr) !important;
  column-gap: clamp(48px, 8vw, 120px) !important;
  row-gap: 10px !important;
  max-width: 980px !important;
}

@media (max-width: 920px) {
  .mobile-subnav {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }
}

/* Larger category submenu type */
.mobile-nav .mobile-subnav a {
  font-size: 22px !important;
  line-height: 1.18;
}

.mobile-subnav__all {
  font-size: 23px !important;
}

@media (max-width: 920px) {
  .mobile-nav .mobile-subnav a {
    font-size: 19px !important;
  }

  .mobile-subnav__all {
    font-size: 20px !important;
  }
}

@media (max-width: 420px) {
  .mobile-nav .mobile-subnav a {
    font-size: 17px !important;
  }

  .mobile-subnav__all {
    font-size: 18px !important;
  }
}

/* Burger pointer hover */
.menu-toggle {
  cursor: pointer;
}

.menu-toggle:hover {
  color: #f79b77;
}

.menu-open .menu-toggle:hover {
  color: #fff;
}

/* Home hero mosaic */
.home-hero {
  position: relative;
  width: min(1320px, calc(100% - 36px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) 0 76px;
  overflow: hidden;
}

.home-hero__watermark {
  position: absolute;
  left: -0.05em;
  bottom: 22px;
  z-index: 0;
  color: rgba(16, 42, 73, 0.045);
  font-family: var(--display-font);
  font-size: clamp(108px, 18vw, 270px);
  font-weight: 200;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.home-hero h1 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--display-font);
  font-size: clamp(54px, 7.4vw, 116px);
  font-weight: 200;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero__lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.35;
}

.home-hero__lead strong {
  color: var(--accent-dark);
}

.rating-widgets {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 180px));
  gap: 10px;
  margin: 30px 0;
}

.rating-widget {
  min-height: 116px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 42, 73, 0.07);
}

.rating-widget span,
.rating-widget small {
  display: block;
  color: var(--muted);
}

.rating-widget span {
  font-weight: 800;
}

.rating-widget b {
  display: block;
  margin: 2px 0;
  color: var(--green-dark);
  font-family: var(--display-font);
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
}

.rating-widget small {
  font-size: 12px;
}

.home-hero__button {
  min-height: 60px;
  padding: 16px 28px;
  font-size: 17px;
}

.hero-mosaic {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, 0.82fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.hero-mosaic::before {
  content: "";
  position: absolute;
  inset: 28px 34px -26px -22px;
  z-index: -1;
  border: 1px solid rgba(247, 155, 119, 0.28);
  border-radius: 8px;
  background: rgba(247, 155, 119, 0.055);
}

.hero-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-mosaic__facade {
  grid-row: 1 / span 2;
}

.hero-mosaic__walk {
  grid-column: 2;
  grid-row: 1;
}

.hero-mosaic__coffee {
  grid-column: 2;
  grid-row: 2;
  transform: translateY(28px);
}

.home-advantages {
  padding-top: 76px;
}

.stay-section__media {
  background:
    linear-gradient(180deg, rgba(16, 42, 73, 0.08), rgba(16, 42, 73, 0.08)),
    url("../img/hero-facade.png") center / cover no-repeat;
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .home-hero__content {
    max-width: 820px;
  }

  .home-hero h1 {
    font-size: clamp(52px, 12vw, 96px);
  }

  .hero-mosaic {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  }
}

@media (max-width: 620px) {
  .home-hero {
    width: min(100% - 28px, 1320px);
    padding: 38px 0 54px;
  }

  .home-hero__watermark {
    bottom: 0;
    font-size: clamp(74px, 27vw, 130px);
  }

  .rating-widgets {
    grid-template-columns: 1fr 1fr;
  }

  .rating-widget {
    min-height: 104px;
    padding: 12px;
  }

  .rating-widget b {
    font-size: 36px;
  }

  .home-hero__button {
    width: 100%;
  }

  .hero-mosaic {
    min-height: auto;
    grid-template-columns: 1fr 0.82fr;
    grid-template-rows: 220px 170px;
    gap: 10px;
  }

  .hero-mosaic::before {
    inset: 18px 18px -16px -12px;
  }

  .hero-mosaic__coffee {
    transform: translateY(16px);
  }

  .home-advantages {
    padding-top: 56px;
  }
}

@media (max-width: 420px) {
  .home-hero h1 {
    font-size: 48px;
  }

  .rating-widgets {
    grid-template-columns: 1fr;
  }

  .hero-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 170px 170px;
  }

  .hero-mosaic__facade,
  .hero-mosaic__walk,
  .hero-mosaic__coffee {
    grid-column: 1;
    grid-row: auto;
    transform: none;
  }
}



/* Full-width layered hero composition */
.home-hero {
  width: 100%;
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(340px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(20px, 4.5vw, 76px);
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5.5vw, 86px) 84px;
}

.home-hero__content {
  max-width: 720px;
  padding-left: clamp(0px, 2vw, 26px);
}

.home-hero__watermark {
  left: clamp(12px, 3vw, 48px);
  bottom: 6px;
  font-size: clamp(132px, 20vw, 330px);
}

.home-hero__infinity {
  position: absolute;
  left: 48.5%;
  top: 49%;
  z-index: 0;
  color: transparent;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(250px, 33vw, 560px);
  font-weight: 400;
  line-height: 0.72;
  opacity: 0.92;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-8deg);
  -webkit-text-stroke: 1px rgba(247, 155, 119, 0.42);
  text-shadow:
    10px -8px 0 rgba(16, 42, 73, 0.035),
    -8px 9px 0 rgba(117, 82, 72, 0.04);
}

.hero-mosaic {
  min-height: clamp(560px, 72vh, 760px);
  display: block;
}

.hero-mosaic::before {
  inset: 11% 5% 5% 8%;
  border-color: rgba(247, 155, 119, 0.24);
  background: rgba(255, 255, 255, 0.16);
}

.hero-mosaic img {
  position: absolute;
  height: auto;
}

.hero-mosaic__facade {
  left: 0;
  top: 9%;
  width: 58%;
  aspect-ratio: 0.78;
  z-index: 2;
}

.hero-mosaic__walk {
  right: 0;
  top: 0;
  width: 45%;
  aspect-ratio: 1.1;
  z-index: 3;
}

.hero-mosaic__coffee {
  right: 6%;
  bottom: 1%;
  width: 38%;
  aspect-ratio: 0.86;
  z-index: 4;
  transform: none;
}

@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding-right: clamp(14px, 4vw, 34px);
    padding-left: clamp(14px, 4vw, 34px);
  }

  .home-hero__infinity {
    left: 58%;
    top: 38%;
    font-size: clamp(190px, 48vw, 420px);
  }

  .hero-mosaic {
    min-height: 620px;
  }

  .hero-mosaic__facade {
    width: 56%;
  }

  .hero-mosaic__walk {
    width: 43%;
  }

  .hero-mosaic__coffee {
    width: 39%;
  }
}

@media (max-width: 620px) {
  .home-hero {
    width: 100%;
    padding: 38px 14px 56px;
  }

  .home-hero__infinity {
    left: 64%;
    top: 31%;
    font-size: clamp(160px, 62vw, 280px);
    -webkit-text-stroke-color: rgba(247, 155, 119, 0.3);
  }

  .home-hero__watermark {
    left: 8px;
    font-size: clamp(78px, 28vw, 150px);
  }

  .hero-mosaic {
    min-height: 510px;
  }

  .hero-mosaic__facade {
    left: 0;
    top: 10%;
    width: 67%;
  }

  .hero-mosaic__walk {
    right: 0;
    top: 0;
    width: 49%;
  }

  .hero-mosaic__coffee {
    right: 4%;
    bottom: 0;
    width: 54%;
  }
}

@media (max-width: 420px) {
  .hero-mosaic {
    min-height: 470px;
  }

  .hero-mosaic__facade,
  .hero-mosaic__walk,
  .hero-mosaic__coffee {
    position: absolute;
    grid-column: auto;
    grid-row: auto;
  }
}


/* Explicit mosaic photo proportions */
.hero-mosaic__facade {
  height: 82%;
}

.hero-mosaic__walk {
  height: 43%;
}

.hero-mosaic__coffee {
  height: 52%;
}

@media (max-width: 620px) {
  .hero-mosaic__facade {
    height: 72%;
  }

  .hero-mosaic__walk {
    height: 40%;
  }

  .hero-mosaic__coffee {
    height: 46%;
  }
}


/* Smaller first-screen photo mosaic */
.home-hero {
  grid-template-columns: minmax(360px, 0.95fr) minmax(460px, 0.9fr);
  align-items: center;
}

.hero-mosaic {
  max-width: 760px;
  min-height: clamp(440px, 58vh, 620px);
  justify-self: end;
}

.hero-mosaic__facade {
  width: 48%;
  height: 72%;
  top: 14%;
  left: 7%;
}

.hero-mosaic__walk {
  width: 37%;
  height: 34%;
  top: 4%;
  right: 8%;
}

.hero-mosaic__coffee {
  width: 34%;
  height: 42%;
  right: 12%;
  bottom: 7%;
}

.hero-mosaic::before {
  inset: 16% 11% 11% 15%;
}

@media (max-width: 980px) {
  .hero-mosaic {
    max-width: 820px;
    min-height: 520px;
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  .hero-mosaic {
    min-height: 390px;
  }

  .hero-mosaic__facade {
    width: 56%;
    height: 68%;
    left: 2%;
  }

  .hero-mosaic__walk {
    width: 40%;
    height: 34%;
    right: 3%;
  }

  .hero-mosaic__coffee {
    width: 43%;
    height: 40%;
    right: 7%;
    bottom: 4%;
  }
}


/* Hero photo visibility and heading scale fix */
.home-hero h1 {
  font-size: clamp(48px, 6.4vw, 98px);
  line-height: 0.92;
}

.hero-mosaic > img {
  display: block;
  position: absolute;
  max-width: none;
  opacity: 1;
  visibility: visible;
  object-fit: cover;
}

.hero-mosaic > .hero-mosaic__facade {
  width: 48%;
  height: 72%;
}

.hero-mosaic > .hero-mosaic__walk {
  width: 37%;
  height: 34%;
}

.hero-mosaic > .hero-mosaic__coffee {
  width: 34%;
  height: 42%;
}

@media (max-width: 980px) {
  .home-hero h1 {
    font-size: clamp(46px, 10vw, 82px);
  }
}

@media (max-width: 620px) {
  .home-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-mosaic > .hero-mosaic__facade {
    width: 56%;
    height: 68%;
  }

  .hero-mosaic > .hero-mosaic__walk {
    width: 40%;
    height: 34%;
  }

  .hero-mosaic > .hero-mosaic__coffee {
    width: 43%;
    height: 40%;
  }
}


/* Temporary remove infinity and force hero photos above decorative layers */
.home-hero__infinity {
  display: none !important;
}

.hero-mosaic {
  position: relative !important;
  z-index: 5 !important;
  width: min(100%, 760px) !important;
  min-height: 560px !important;
  overflow: visible !important;
  isolation: isolate;
}

.hero-mosaic > img {
  display: block !important;
  position: absolute !important;
  z-index: 2 !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-mosaic > .hero-mosaic__facade {
  left: 4% !important;
  top: 12% !important;
  width: 50% !important;
  height: 68% !important;
}

.hero-mosaic > .hero-mosaic__walk {
  right: 6% !important;
  top: 4% !important;
  width: 39% !important;
  height: 34% !important;
}

.hero-mosaic > .hero-mosaic__coffee {
  right: 10% !important;
  bottom: 8% !important;
  width: 36% !important;
  height: 40% !important;
}

@media (max-width: 620px) {
  .hero-mosaic {
    width: 100% !important;
    min-height: 390px !important;
  }

  .hero-mosaic > .hero-mosaic__facade {
    width: 58% !important;
    height: 66% !important;
  }

  .hero-mosaic > .hero-mosaic__walk {
    width: 42% !important;
    height: 32% !important;
  }

  .hero-mosaic > .hero-mosaic__coffee {
    width: 44% !important;
    height: 38% !important;
  }
}


/* Balanced 50/50 first-screen composition */
.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: clamp(28px, 4vw, 64px) !important;
  padding-right: clamp(18px, 5vw, 78px) !important;
  padding-left: clamp(18px, 5vw, 78px) !important;
}

.home-hero__content {
  width: 100% !important;
  max-width: 650px !important;
  justify-self: end;
  padding-left: 0 !important;
}

.home-hero h1 {
  max-width: 650px;
  font-size: clamp(44px, 5.2vw, 84px) !important;
  line-height: 0.95 !important;
}

.hero-title-accent {
  color: var(--gold);
}

.hero-mosaic {
  width: min(100%, 650px) !important;
  max-width: 650px !important;
  min-height: clamp(430px, 56vh, 580px) !important;
  justify-self: start !important;
}

.hero-mosaic > .hero-mosaic__facade {
  left: 2% !important;
  top: 15% !important;
  width: 46% !important;
  height: 66% !important;
}

.hero-mosaic > .hero-mosaic__walk {
  right: 5% !important;
  top: 2% !important;
  width: 38% !important;
  height: 32% !important;
}

.hero-mosaic > .hero-mosaic__coffee {
  right: 12% !important;
  bottom: 7% !important;
  width: 36% !important;
  height: 38% !important;
}

.hero-mosaic::before {
  inset: 17% 12% 13% 12% !important;
}

@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr !important;
  }

  .home-hero__content,
  .hero-mosaic {
    justify-self: stretch !important;
    max-width: 760px !important;
  }

  .home-hero h1 {
    font-size: clamp(44px, 9vw, 76px) !important;
  }
}

@media (max-width: 620px) {
  .home-hero {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .home-hero h1 {
    font-size: clamp(38px, 10.4vw, 54px) !important;
  }

  .hero-mosaic {
    min-height: 360px !important;
  }
}


/* 90vw hero: 45vw text and 45vw photo composition */
.home-hero {
  width: 90vw !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.home-hero__content {
  width: 45vw !important;
  max-width: none !important;
  justify-self: start !important;
  padding-right: clamp(22px, 3vw, 54px);
}

.home-hero h1 {
  max-width: 45vw !important;
}

.hero-mosaic {
  width: 45vw !important;
  max-width: none !important;
  min-height: clamp(430px, 57vh, 610px) !important;
  justify-self: end !important;
}

.hero-mosaic::before {
  inset: 15% 9% 10% 10% !important;
  border-color: rgba(247, 155, 119, 0.32) !important;
  background: rgba(255, 255, 255, 0.2) !important;
}

.hero-mosaic > .hero-mosaic__facade {
  left: 0 !important;
  top: 14% !important;
  width: 47% !important;
  height: 68% !important;
}

.hero-mosaic > .hero-mosaic__walk {
  right: 3% !important;
  top: 1% !important;
  width: 39% !important;
  height: 34% !important;
}

.hero-mosaic > .hero-mosaic__coffee {
  right: 10% !important;
  bottom: 5% !important;
  width: 37% !important;
  height: 40% !important;
}

@media (max-width: 980px) {
  .home-hero {
    width: min(90vw, 760px) !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .home-hero__content,
  .hero-mosaic {
    width: 100% !important;
    max-width: none !important;
  }

  .home-hero h1 {
    max-width: 100% !important;
  }
}

@media (max-width: 620px) {
  .home-hero {
    width: calc(100vw - 28px) !important;
  }

  .hero-mosaic {
    min-height: 360px !important;
  }
}


/* Layered photo overlap in hero mosaic */
.hero-mosaic > img {
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
}

.hero-mosaic > .hero-mosaic__facade {
  left: 3% !important;
  top: 15% !important;
  width: 50% !important;
  height: 68% !important;
  z-index: 2 !important;
  box-shadow: 0 20px 46px rgba(16, 42, 73, 0.18) !important;
}

.hero-mosaic > .hero-mosaic__walk {
  right: 6% !important;
  top: 3% !important;
  width: 42% !important;
  height: 36% !important;
  z-index: 4 !important;
  box-shadow: 0 24px 54px rgba(16, 42, 73, 0.24) !important;
}

.hero-mosaic > .hero-mosaic__coffee {
  right: 18% !important;
  bottom: 6% !important;
  width: 39% !important;
  height: 42% !important;
  z-index: 5 !important;
  box-shadow: 0 30px 70px rgba(16, 42, 73, 0.28) !important;
}

.hero-mosaic::before {
  z-index: 0 !important;
}

@media (max-width: 620px) {
  .hero-mosaic > .hero-mosaic__facade {
    left: 1% !important;
    width: 60% !important;
  }

  .hero-mosaic > .hero-mosaic__walk {
    right: 2% !important;
    width: 44% !important;
  }

  .hero-mosaic > .hero-mosaic__coffee {
    right: 16% !important;
    width: 46% !important;
  }
}


/* Viewport-based hero mosaic proportions */
.hero-mosaic {
  min-height: 72vh !important;
}

.hero-mosaic > .hero-mosaic__facade {
  top: 1vh !important;
  left: 2% !important;
  width: auto !important;
  height: 70vh !important;
  aspect-ratio: 0.72 !important;
  z-index: 2 !important;
}

.hero-mosaic > .hero-mosaic__walk {
  top: 4vh !important;
  right: 3% !important;
  width: 40vh !important;
  height: 40vh !important;
  aspect-ratio: 1 !important;
  z-index: 4 !important;
}

.hero-mosaic > .hero-mosaic__coffee {
  right: 7% !important;
  bottom: 6vh !important;
  width: 46vh !important;
  height: 30vh !important;
  aspect-ratio: 1.53 !important;
  z-index: 5 !important;
}

@media (max-width: 980px) {
  .hero-mosaic {
    min-height: 58vh !important;
  }

  .hero-mosaic > .hero-mosaic__facade {
    height: 56vh !important;
  }

  .hero-mosaic > .hero-mosaic__walk {
    width: 32vh !important;
    height: 32vh !important;
  }

  .hero-mosaic > .hero-mosaic__coffee {
    width: 38vh !important;
    height: 25vh !important;
  }
}

@media (max-width: 620px) {
  .hero-mosaic {
    min-height: 430px !important;
  }

  .hero-mosaic > .hero-mosaic__facade {
    height: 410px !important;
    max-width: 62vw !important;
  }

  .hero-mosaic > .hero-mosaic__walk {
    width: 42vw !important;
    height: 42vw !important;
  }

  .hero-mosaic > .hero-mosaic__coffee {
    width: 54vw !important;
    height: 35vw !important;
    bottom: 24px !important;
  }
}


/* Center frame and selective photo shadows */
.hero-mosaic::before {
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: min(32vw, 44vh) !important;
  height: min(32vw, 44vh) !important;
  border: 1px solid rgba(247, 155, 119, 0.42) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
  transform: translate(-50%, -50%) !important;
}

.hero-mosaic > .hero-mosaic__facade {
  box-shadow: none !important;
}

.hero-mosaic > .hero-mosaic__walk {
  box-shadow: 0 22px 48px rgba(16, 42, 73, 0.22) !important;
}

.hero-mosaic > .hero-mosaic__coffee {
  box-shadow: 0 30px 70px rgba(16, 42, 73, 0.28) !important;
}

@media (max-width: 620px) {
  .hero-mosaic::before {
    width: 58vw !important;
    height: 58vw !important;
  }
}


/* Blue outline frame above the whole mosaic */
.hero-mosaic::before {
  z-index: 10 !important;
  border-color: rgba(16, 42, 73, 0.82) !important;
  background: transparent !important;
  pointer-events: none !important;
}

.hero-mosaic > img {
  z-index: 2 !important;
}

.hero-mosaic > .hero-mosaic__facade {
  z-index: 2 !important;
}

.hero-mosaic > .hero-mosaic__walk {
  z-index: 4 !important;
}

.hero-mosaic > .hero-mosaic__coffee {
  z-index: 5 !important;
}


/* White outline frame variant */
.hero-mosaic::before {
  border-color: rgba(255, 255, 255, 0.86) !important;
}


/* Compact hero amenity icons */
.hero-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: -12px 0 24px;
  color: var(--green-dark);
}

.hero-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-amenity svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

@media (max-width: 620px) {
  .hero-amenities {
    gap: 9px 12px;
    margin-top: -8px;
  }

  .hero-amenity {
    font-size: 11px;
  }

  .hero-amenity svg {
    width: 18px;
    height: 18px;
  }
}


/* Circular amenity icons: five equal parts of the left hero column */
.hero-amenities {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(6px, 0.8vw, 12px);
  width: 100%;
  max-width: 45vw;
  margin: -8px 0 26px;
}

.hero-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  aspect-ratio: 1;
  min-height: 0;
  padding: clamp(8px, 0.9vw, 14px);
  border-radius: 50%;
  color: #fff;
  background: var(--green-dark);
  text-align: center;
  box-shadow: 0 14px 32px rgba(16, 42, 73, 0.13);
}

.hero-amenity svg {
  width: clamp(19px, 2.1vw, 30px);
  height: clamp(19px, 2.1vw, 30px);
  color: #fff;
  stroke-width: 1.55;
}

.hero-amenity span {
  display: block;
  max-width: 100%;
  color: var(--gold);
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero-amenities {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .hero-amenities {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    max-width: 100%;
    margin: 0 0 22px;
  }

  .hero-amenity {
    padding: 7px;
  }

  .hero-amenity svg {
    width: 18px;
    height: 18px;
  }

  .hero-amenity span {
    font-size: 8px;
  }
}


/* Outline amenity circles */
.hero-amenities {
  width: 80%;
  max-width: calc(45vw * 0.8);
  gap: clamp(6px, 0.7vw, 10px);
}

.hero-amenity {
  padding: clamp(6px, 0.75vw, 12px);
  border: 1px solid rgba(16, 42, 73, 0.34);
  color: var(--green-dark);
  background: transparent;
  box-shadow: none;
}

.hero-amenity svg {
  width: clamp(24px, 2.6vw, 38px);
  height: clamp(24px, 2.6vw, 38px);
  color: var(--green-dark);
  stroke-width: 1.65;
}

.hero-amenity span {
  color: var(--accent-dark);
  font-size: clamp(10px, 0.86vw, 14px);
  line-height: 1.02;
}

@media (max-width: 980px) {
  .hero-amenities {
    width: min(100%, 520px);
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .hero-amenities {
    width: 100%;
    max-width: 100%;
  }

  .hero-amenity svg {
    width: 22px;
    height: 22px;
  }

  .hero-amenity span {
    font-size: 9px;
  }
}


/* Rounded square amenity tiles */
.hero-amenities {
  width: 92%;
  max-width: calc(45vw * 0.92);
  gap: clamp(7px, 0.85vw, 12px);
  margin: -6px 0 26px;
}

.hero-amenity {
  aspect-ratio: 1;
  padding: clamp(7px, 0.75vw, 11px);
  border: 1px solid rgba(16, 42, 73, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.hero-amenity svg {
  width: clamp(42px, 5vw, 72px);
  height: clamp(42px, 5vw, 72px);
  color: var(--green-dark);
  stroke-width: 1.05;
}

.hero-amenity span {
  color: var(--accent-dark);
  font-size: clamp(10px, 0.86vw, 14px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: none;
}

@media (max-width: 980px) {
  .hero-amenities {
    width: min(100%, 620px);
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .hero-amenities {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 6px;
  }

  .hero-amenity {
    padding: 5px;
  }

  .hero-amenity svg {
    width: 30px;
    height: 30px;
  }

  .hero-amenity span {
    font-size: 8px;
  }
}


/* Viewport height fit for the home hero */
@media (min-width: 981px) {
  .home-hero {
    height: calc(100svh - 72px) !important;
    min-height: calc(100svh - 72px) !important;
    max-height: calc(100svh - 72px) !important;
    align-items: center !important;
    padding-top: clamp(18px, 3.2vh, 46px) !important;
    padding-bottom: clamp(18px, 3.2vh, 46px) !important;
    overflow: hidden !important;
  }

  .home-hero__content {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
  }

  .home-hero .eyebrow {
    margin-bottom: clamp(6px, 1.1vh, 10px);
    font-size: clamp(11px, 1.25vh, 13px);
  }

  .home-hero h1 {
    margin: 0 !important;
    font-size: clamp(40px, min(5.2vw, 7.8vh), 94px) !important;
    line-height: 0.9 !important;
  }

  .home-hero__lead {
    max-width: 500px;
    margin: clamp(10px, 2vh, 20px) 0 0 !important;
    font-size: clamp(15px, 1.75vh, 20px) !important;
    line-height: 1.28 !important;
  }

  .rating-widgets {
    grid-template-columns: repeat(2, minmax(132px, 170px)) !important;
    gap: clamp(8px, 1.2vh, 12px) !important;
    margin: clamp(12px, 2.2vh, 24px) 0 !important;
  }

  .rating-widget {
    min-height: clamp(76px, 11.5vh, 108px) !important;
    padding: clamp(9px, 1.35vh, 14px) clamp(11px, 1.45vh, 16px) !important;
  }

  .rating-widget b {
    font-size: clamp(28px, 4.8vh, 42px) !important;
  }

  .rating-widget small {
    font-size: clamp(10px, 1.2vh, 12px) !important;
    line-height: 1.2;
  }

  .hero-amenities {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 45vw !important;
    gap: clamp(6px, 1.05vh, 10px) !important;
    margin: 0 0 clamp(12px, 2vh, 22px) !important;
  }


  .hero-amenities:has(.hero-amenity:nth-child(6)) {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .hero-amenity {
    min-width: 0;
    padding: clamp(5px, 1.05vh, 10px) !important;
  }

  .hero-amenity svg {
    width: clamp(34px, min(4.6vw, 7.4vh), 72px) !important;
    height: clamp(34px, min(4.6vw, 7.4vh), 72px) !important;
  }

  .hero-amenity span {
    font-size: clamp(8px, min(0.72vw, 1.45vh), 12px) !important;
    line-height: 1.04 !important;
  }

  .home-hero__button {
    align-self: flex-start;
    min-height: clamp(44px, 5.8vh, 58px) !important;
    padding: clamp(12px, 1.7vh, 16px) clamp(20px, 2.8vh, 28px) !important;
    font-size: clamp(15px, 1.7vh, 17px) !important;
  }

  .hero-mosaic {
    height: clamp(420px, calc(100svh - 132px), 760px) !important;
    min-height: 0 !important;
  }

  .hero-mosaic > .hero-mosaic__facade {
    height: clamp(390px, calc(100svh - 156px), 720px) !important;
  }

  .hero-mosaic > .hero-mosaic__walk {
    width: clamp(210px, 34vh, 390px) !important;
    height: clamp(210px, 34vh, 390px) !important;
  }

  .hero-mosaic > .hero-mosaic__coffee {
    width: clamp(260px, 42vh, 490px) !important;
    height: clamp(170px, 27vh, 320px) !important;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .home-hero {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .home-hero h1 {
    font-size: clamp(36px, min(4.7vw, 7vh), 70px) !important;
  }

  .home-hero__lead {
    margin-top: 8px !important;
    font-size: 14px !important;
  }

  .rating-widgets {
    margin: 10px 0 !important;
  }

  .rating-widget {
    min-height: 70px !important;
  }

  .rating-widget b {
    font-size: 28px !important;
  }

  .hero-amenities {
    gap: 6px !important;
    margin-bottom: 10px !important;
  }

  .hero-amenity svg {
    width: clamp(28px, 5.8vh, 48px) !important;
    height: clamp(28px, 5.8vh, 48px) !important;
  }

  .hero-amenity span {
    font-size: clamp(7px, 1.25vh, 10px) !important;
  }

  .home-hero__button {
    min-height: 42px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .hero-mosaic {
    height: calc(100svh - 104px) !important;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto !important;
    max-height: none !important;
  }
}

@media (max-width: 620px) {
  .hero-amenities {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}



/* Stronger detailed hero amenity icon rendering */
.hero-amenity svg {
  stroke-width: 2.25 !important;
}

.hero-amenity svg path {
  vector-effect: non-scaling-stroke;
}

@media (min-width: 981px) {
  .hero-amenity {
    gap: clamp(5px, 0.9vh, 9px) !important;
  }
}

@media (max-width: 620px) {
  .hero-amenity svg {
    width: 34px !important;
    height: 34px !important;
    stroke-width: 2.1 !important;
  }
}
/* Home hero title and lead inset */
@media (min-width: 981px) {
  .home-hero h1,
  .home-hero__lead {
    margin-left: clamp(20px, 2.35vw, 46px) !important;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .home-hero h1,
  .home-hero__lead {
    margin-left: clamp(16px, 1.8vw, 34px) !important;
  }
}

@media (max-width: 980px) {
  .home-hero h1,
  .home-hero__lead {
    margin-left: 0 !important;
  }
}
/* Solid silhouette hero amenity icons */
.hero-amenity svg {
  fill: currentColor !important;
  stroke: none !important;
}

.hero-amenity svg * {
  stroke: none !important;
}
/* Photo moodboard variant for home hero amenities */
.hero-amenities--photo {
  display: block !important;
  width: min(100%, 440px) !important;
  max-width: min(45vw, 440px) !important;
  margin: 0 0 clamp(12px, 2vh, 22px) !important;
}

.hero-amenities--photo img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  border: 1px solid rgba(16, 42, 73, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 42, 73, 0.12);
}

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

.hero-amenities__labels span {
  color: var(--accent-dark);
  font-size: clamp(8px, min(0.68vw, 1.25vh), 11px);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-amenities--photo {
    width: min(100%, 390px) !important;
    max-width: min(45vw, 390px) !important;
    margin-bottom: 10px !important;
  }

  .hero-amenities__labels {
    margin-top: 6px;
  }

  .hero-amenities__labels span {
    font-size: 8px;
  }
}

@media (max-width: 980px) {
  .hero-amenities--photo {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
  }
}

@media (max-width: 620px) {
  .hero-amenities--photo {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-amenities--photo img {
    aspect-ratio: 5 / 2.4;
  }

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

  .hero-amenities__labels span {
    font-size: 9px;
  }
}
/* Sprite-tile version of the photo moodboard */
.hero-amenities--photo {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  width: min(100%, 460px) !important;
  max-width: min(45vw, 460px) !important;
  gap: clamp(7px, 0.85vw, 12px) !important;
  margin: 0 0 clamp(12px, 2vh, 22px) !important;
}

.hero-photo-amenity {
  position: relative;
  display: block;
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 73, 0.18);
  border-radius: 8px;
  background-image: url("../img/hero-amenities-moodboard.png");
  background-repeat: no-repeat;
  background-size: 315% 315%;
  box-shadow: 0 12px 26px rgba(16, 42, 73, 0.12);
}

.hero-photo-amenity::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 42, 73, 0) 42%, rgba(16, 42, 73, 0.7));
}

.hero-photo-amenity > span {
  position: absolute;
  right: 5px;
  bottom: 6px;
  left: 5px;
  z-index: 1;
  color: #fff;
  font-size: clamp(8px, min(0.68vw, 1.25vh), 11px);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero-photo-amenity--gym {
  background-position: 0% 3%;
}

.hero-photo-amenity--lounge {
  background-position: 50% 3%;
}

.hero-photo-amenity--fire {
  background-position: 100% 3%;
}

.hero-photo-amenity--kitchen {
  background-position: 18% 96%;
}

.hero-photo-amenity--garden {
  background-position: 82% 96%;
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-amenities--photo {
    width: min(100%, 410px) !important;
    max-width: min(45vw, 410px) !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
  }

  .hero-photo-amenity > span {
    font-size: 8px;
  }
}

@media (max-width: 980px) {
  .hero-amenities--photo {
    width: min(100%, 560px) !important;
    max-width: 560px !important;
  }
}

@media (max-width: 620px) {
  .hero-amenities--photo {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-photo-amenity > span {
    font-size: 9px;
  }
}
/* Separate amenity photo files */
.hero-photo-amenity {
  background-size: cover !important;
  background-position: center !important;
}

.hero-photo-amenity--gym {
  background-image: url("../img/hero-amenity-gym.png") !important;
}

.hero-photo-amenity--lounge {
  background-image: url("../img/hero-amenity-lounge.png") !important;
}

.hero-photo-amenity--fire {
  background-image: url("../img/hero-amenity-fire.png") !important;
}

.hero-photo-amenity--kitchen {
  background-image: url("../img/hero-amenity-kitchen.png") !important;
}

.hero-photo-amenity--garden {
  background-image: url("../img/hero-amenity-garden.png") !important;
}
/* Larger hero amenity photo tiles */
.hero-amenities--photo {
  width: min(100%, 540px) !important;
  max-width: min(45vw, 540px) !important;
  gap: clamp(9px, 1vw, 14px) !important;
}

.hero-photo-amenity > span {
  right: 6px;
  bottom: 7px;
  left: 6px;
  font-size: clamp(9px, min(0.78vw, 1.45vh), 12px) !important;
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-amenities--photo {
    width: min(100%, 455px) !important;
    max-width: min(45vw, 455px) !important;
    gap: 7px !important;
  }

  .hero-photo-amenity > span {
    font-size: 8px !important;
  }
}

@media (max-width: 980px) {
  .hero-amenities--photo {
    width: min(100%, 640px) !important;
    max-width: 640px !important;
  }
}

@media (max-width: 620px) {
  .hero-amenities--photo {
    gap: 8px !important;
  }

  .hero-photo-amenity > span {
    font-size: 10px !important;
  }
}
/* 1.5x hero amenity photo tiles */
.hero-amenities--photo {
  width: min(100%, 690px) !important;
  max-width: min(45vw, 690px) !important;
  gap: clamp(10px, 1.15vw, 16px) !important;
}

.hero-photo-amenity > span {
  right: 7px;
  bottom: 8px;
  left: 7px;
  font-size: clamp(10px, min(0.86vw, 1.55vh), 13px) !important;
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-amenities--photo {
    width: min(100%, 520px) !important;
    max-width: min(45vw, 520px) !important;
    gap: 7px !important;
  }

  .hero-photo-amenity > span {
    font-size: 8px !important;
  }
}

@media (max-width: 980px) {
  .hero-amenities--photo {
    width: min(100%, 720px) !important;
    max-width: 720px !important;
  }
}

@media (max-width: 620px) {
  .hero-amenities--photo {
    gap: 9px !important;
  }

  .hero-photo-amenity > span {
    font-size: 10px !important;
  }
}
/* More readable home hero title leading */
.home-hero h1 {
  line-height: 0.96 !important;
}
/* Decorative location badge with compass */
.hero-location-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 clamp(10px, 1.6vh, 16px) !important;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(185, 130, 54, 0.34);
  border-radius: 8px;
  color: var(--green-dark) !important;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 14px 34px rgba(16, 42, 73, 0.08);
  text-transform: none !important;
}

.hero-location-badge__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero-location-badge__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-location-badge__icon svg path:nth-of-type(1) {
  fill: var(--gold);
  stroke: var(--gold);
}

.hero-location-badge__text {
  display: grid;
  gap: 1px;
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-location-badge__text span {
  color: var(--muted);
}

.hero-location-badge__text strong {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-location-badge {
    gap: 8px;
    margin-bottom: 8px !important;
    padding: 6px 10px 6px 7px;
  }

  .hero-location-badge__icon {
    width: 32px;
    height: 32px;
  }

  .hero-location-badge__icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-location-badge__text {
    font-size: 10px;
  }

  .hero-location-badge__text strong {
    font-size: 12px;
  }
}

@media (max-width: 620px) {
  .hero-location-badge {
    width: 100%;
  }
}
/* Lightweight location mark without frame */
.hero-location-badge {
  gap: 9px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-location-badge__icon {
  width: 34px !important;
  height: 34px !important;
  color: var(--gold) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-location-badge__icon svg {
  width: 31px !important;
  height: 31px !important;
  stroke: currentColor !important;
  stroke-width: 2.1 !important;
}

.hero-location-badge__icon svg circle,
.hero-location-badge__icon svg path {
  fill: none !important;
  stroke: currentColor !important;
}

.hero-location-badge__text {
  padding-left: 10px;
  border-left: 1px solid rgba(185, 130, 54, 0.48);
}

.hero-location-badge__text strong {
  color: var(--green-dark);
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-location-badge__icon {
    width: 28px !important;
    height: 28px !important;
  }

  .hero-location-badge__icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .hero-location-badge__text {
    padding-left: 8px;
  }
}
/* Move brand watermark behind the photo mosaic */
.home-hero__watermark {
  left: auto !important;
  right: -0.08em !important;
  bottom: clamp(18px, 3.2vh, 42px) !important;
  z-index: 0 !important;
  color: rgba(16, 42, 73, 0.035) !important;
  font-size: clamp(104px, 15vw, 230px) !important;
  text-align: right;
}

@media (max-width: 980px) {
  .home-hero__watermark {
    right: -0.12em !important;
    bottom: 18px !important;
    font-size: clamp(84px, 18vw, 160px) !important;
  }
}

@media (max-width: 620px) {
  .home-hero__watermark {
    right: -0.18em !important;
    bottom: 8px !important;
    font-size: clamp(58px, 20vw, 102px) !important;
    opacity: 0.65;
  }
}
/* Wide right-bottom brand watermark */
.home-hero__watermark {
  right: 0 !important;
  bottom: clamp(10px, 2.4vh, 34px) !important;
  width: 75% !important;
  max-width: none !important;
  color: rgba(16, 42, 73, 0.04) !important;
  font-size: clamp(118px, 17vw, 285px) !important;
  line-height: 0.78 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .home-hero__watermark {
    right: 0 !important;
    width: 86% !important;
    bottom: 14px !important;
    font-size: clamp(86px, 19vw, 170px) !important;
  }
}

@media (max-width: 620px) {
  .home-hero__watermark {
    width: 96% !important;
    bottom: 6px !important;
    font-size: clamp(58px, 20vw, 106px) !important;
    opacity: 0.58;
  }
}
/* Text logo with Narzan mark and header tagline */
.brand {
  display: grid !important;
  gap: 3px;
  min-width: 230px;
  color: #d20a1e !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.brand__main {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.brand__mark {
  position: relative;
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid currentColor;
  color: inherit;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.brand__mark::before {
  left: -2px;
}

.brand__mark::after {
  right: -2px;
}

.brand__name {
  color: inherit;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand__tagline {
  max-width: 270px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.16;
}

@media (max-width: 1180px) {
  .brand {
    min-width: 210px;
  }

  .brand__name {
    font-size: 21px;
  }

  .brand__tagline {
    max-width: 230px;
    font-size: 10px;
  }
}

@media (max-width: 920px) {
  .brand {
    min-width: 0;
  }

  .brand__tagline {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand__mark {
    width: 25px;
    height: 25px;
    font-size: 17px;
  }

  .brand__name {
    font-size: 19px;
  }
}
/* Modernized header logo lockup */
.brand {
  gap: 5px !important;
  min-width: 285px !important;
  color: #c90018 !important;
}

.brand__main {
  gap: 10px !important;
}

.brand__mark {
  width: 34px !important;
  height: 34px !important;
  border: 3px solid currentColor !important;
  border-radius: 2px;
  color: #c90018 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(201, 0, 24, 0.12);
}

.brand__mark::before,
.brand__mark::after {
  width: 9px !important;
  height: 3px !important;
  background: #c90018 !important;
}

.brand__mark::before {
  left: -3px !important;
}

.brand__mark::after {
  right: -3px !important;
}

.brand__name {
  color: #c90018 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  letter-spacing: 0.2px;
}

.brand__tagline {
  position: relative;
  max-width: 300px !important;
  margin-left: 44px;
  padding-top: 3px;
  color: rgba(23, 73, 54, 0.82) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: 0.18px;
}

.brand__tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #c90018;
  opacity: 0.9;
}

@media (max-width: 1180px) {
  .brand {
    min-width: 250px !important;
  }

  .brand__mark {
    width: 31px !important;
    height: 31px !important;
    font-size: 22px !important;
  }

  .brand__name {
    font-size: 22px !important;
  }

  .brand__tagline {
    max-width: 250px !important;
    margin-left: 41px;
    font-size: 9.5px !important;
  }
}

@media (max-width: 920px) {
  .brand {
    min-width: 0 !important;
  }

  .brand__tagline {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .brand__main {
    gap: 8px !important;
  }

  .brand__mark {
    width: 28px !important;
    height: 28px !important;
    border-width: 2px !important;
    font-size: 20px !important;
  }

  .brand__name {
    font-size: 20px !important;
  }
}
/* Header image logo trial */
.brand--image {
  display: grid !important;
  gap: 4px !important;
  min-width: 300px !important;
  color: var(--green-dark) !important;
}

.brand--image .brand__main {
  display: block !important;
  line-height: 0 !important;
}

.brand__image {
  display: block;
  width: min(300px, 24vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand--image .brand__tagline {
  max-width: 300px !important;
  margin-left: 0 !important;
  padding-top: 0 !important;
  color: rgba(23, 73, 54, 0.82) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.16px;
}

.brand--image .brand__tagline::before {
  display: none !important;
}

@media (max-width: 1180px) {
  .brand--image {
    min-width: 250px !important;
  }

  .brand__image {
    width: min(250px, 24vw);
    max-height: 50px;
  }

  .brand--image .brand__tagline {
    max-width: 250px !important;
    font-size: 9.5px !important;
  }
}

@media (max-width: 920px) {
  .brand--image {
    min-width: 0 !important;
  }

  .brand__image {
    width: min(220px, 56vw);
    max-height: 46px;
  }
}

@media (max-width: 420px) {
  .brand__image {
    width: min(190px, 58vw);
    max-height: 40px;
  }
}
/* Centered header descriptor */
.site-header {
  grid-template-columns: minmax(220px, auto) minmax(360px, 1fr) minmax(260px, auto) !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
}

.header-center {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
}

.header-center .main-nav {
  justify-content: center;
}

.header-descriptor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  color: rgba(23, 73, 54, 0.72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.7px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-descriptor::before,
.header-descriptor::after {
  content: "";
  width: clamp(24px, 3.2vw, 54px);
  height: 1px;
  background: rgba(185, 130, 54, 0.5);
}

.header-descriptor span {
  color: #c90018;
  font-weight: 900;
}

.brand--image .brand__tagline {
  display: none !important;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(190px, auto) minmax(300px, 1fr) minmax(220px, auto) !important;
    gap: 16px !important;
  }

  .header-descriptor {
    gap: 8px;
    font-size: 9.5px;
    letter-spacing: 0.45px;
  }

  .header-descriptor::before,
  .header-descriptor::after {
    width: 24px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto !important;
  }

  .header-center {
    display: none !important;
  }
}
/* Header palette correction: use site colors only */
.brand--image {
  color: var(--green-dark) !important;
}

.header-descriptor {
  color: rgba(23, 73, 54, 0.74) !important;
}

.header-descriptor span {
  color: var(--gold) !important;
}

.header-descriptor::before,
.header-descriptor::after {
  background: rgba(185, 130, 54, 0.55) !important;
}

.brand__mark,
.brand__name {
  color: var(--green-dark) !important;
}

.brand__mark::before,
.brand__mark::after,
.brand__tagline::before {
  background: var(--gold) !important;
}
/* Header background descriptor and burger alignment fix */
.site-header {
  position: sticky;
}

.header-center {
  position: relative;
  min-height: 42px;
  align-content: center;
  isolation: isolate;
}

.header-descriptor {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  display: block !important;
  width: min(760px, 100%);
  color: rgba(23, 73, 54, 0.055) !important;
  font-family: var(--display-font);
  font-size: clamp(28px, 3.2vw, 58px) !important;
  font-weight: 200 !important;
  line-height: 0.88 !important;
  letter-spacing: 0 !important;
  text-align: center;
  text-transform: uppercase;
  white-space: normal !important;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.header-descriptor span {
  display: block;
  color: rgba(185, 130, 54, 0.11) !important;
}

.header-descriptor::before,
.header-descriptor::after {
  display: none !important;
}

.header-center .main-nav {
  position: relative;
  z-index: 1;
}

@media (max-width: 1180px) {
  .header-descriptor {
    font-size: clamp(24px, 3vw, 42px) !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
  }

  .brand--image {
    grid-column: 1;
    justify-self: start;
  }

  .header-center,
  .site-header .header-contacts {
    display: none !important;
  }

  .menu-toggle {
    grid-column: 2;
    display: block !important;
    justify-self: end;
    margin-left: 0 !important;
  }
}
/* Single-line full-width header background descriptor and final burger placement */
.header-center {
  min-height: 46px !important;
  overflow: hidden;
}

.header-descriptor {
  width: 100% !important;
  max-width: none !important;
  font-size: clamp(22px, 2.55vw, 44px) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.header-descriptor span {
  display: inline !important;
  margin-left: 0.35em;
}

@media (max-width: 1180px) {
  .header-descriptor {
    font-size: clamp(18px, 2.2vw, 32px) !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
  }

  .brand--image {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .menu-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: block !important;
    position: relative !important;
    right: auto !important;
    justify-self: end !important;
    align-self: center !important;
    margin: 0 !important;
  }
}
/* Header tagline under logo, no background descriptor */
.header-center {
  min-height: 0 !important;
  overflow: visible !important;
}

.header-descriptor {
  display: none !important;
}

.brand--image {
  gap: 5px !important;
  min-width: 300px !important;
}

.brand--image .brand__tagline {
  display: block !important;
  max-width: 300px !important;
  margin-left: 0 !important;
  padding-top: 0 !important;
  color: rgba(23, 73, 54, 0.78) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.18px !important;
  text-transform: uppercase;
}

.brand--image .brand__tagline::before {
  display: none !important;
}

@media (max-width: 1180px) {
  .brand--image {
    min-width: 250px !important;
  }

  .brand--image .brand__tagline {
    max-width: 250px !important;
    font-size: 9.5px !important;
  }
}

@media (max-width: 920px) {
  .brand--image .brand__tagline {
    display: none !important;
  }
}
/* Final mobile header: logo left, burger right */
@media (max-width: 920px) {
  .site-header {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    min-height: 72px !important;
    padding-right: clamp(14px, 4vw, 22px) !important;
    padding-left: clamp(14px, 4vw, 22px) !important;
  }

  .site-header .header-center,
  .site-header .main-nav,
  .site-header .header-contacts {
    display: none !important;
  }

  .brand--image {
    display: block !important;
    min-width: 0 !important;
    max-width: calc(100% - 82px) !important;
    flex: 0 1 auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
  }

  .brand--image .brand__main {
    display: block !important;
  }

  .brand__image {
    width: min(220px, 58vw) !important;
    max-height: 46px !important;
  }

  .menu-toggle {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    flex: 0 0 64px !important;
    width: 64px !important;
    height: 52px !important;
    margin: 0 !important;
    padding: 8px 6px !important;
    transform: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
    align-self: center !important;
  }

  .menu-toggle span {
    height: 3px !important;
    margin: 7px 0 !important;
    margin-left: auto !important;
  }

  .menu-toggle span:nth-child(1) {
    width: 34px !important;
  }

  .menu-toggle span:nth-child(2) {
    width: 48px !important;
  }

  .menu-toggle span:nth-child(3) {
    width: 24px !important;
  }
}
/* Header compact layout: contacts with burger on one line */
@media (max-width: 920px) {
  .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    justify-content: normal !important;
    gap: 10px !important;
    min-height: 72px !important;
    padding-right: clamp(12px, 3.5vw, 20px) !important;
    padding-left: clamp(12px, 3.5vw, 20px) !important;
  }

  .site-header .header-center,
  .site-header .main-nav {
    display: none !important;
  }

  .brand--image {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: block !important;
    min-width: 0 !important;
    max-width: none !important;
    justify-self: start !important;
  }

  .brand__image {
    width: min(210px, 42vw) !important;
    max-height: 44px !important;
  }

  .site-header .header-contacts {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: grid !important;
    min-width: 0 !important;
    justify-items: end !important;
    align-self: center !important;
    white-space: nowrap;
  }

  .site-header .header-contacts .phone-link {
    font-size: clamp(15px, 2.4vw, 18px) !important;
  }

  .site-header .hours-line {
    display: none !important;
  }

  .site-header .address-line {
    max-width: 210px;
    overflow: hidden;
    font-size: 11px !important;
    text-align: right !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 58px !important;
    height: 52px !important;
    flex: none !important;
    justify-self: end !important;
    align-self: center !important;
    margin: 0 !important;
    padding: 8px 6px !important;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .site-header .header-contacts {
    display: none !important;
  }

  .menu-toggle {
    grid-column: 2 !important;
  }

  .brand__image {
    width: min(210px, 58vw) !important;
  }
}
/* Final header grid: keep burger in the same row as contacts */
.site-header {
  display: grid !important;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  column-gap: clamp(12px, 1.8vw, 26px) !important;
  row-gap: 0 !important;
}

.site-header .brand--image {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.site-header .header-center {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
}

.site-header .header-contacts {
  grid-column: 3 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  align-self: center !important;
}

.site-header .menu-toggle {
  grid-column: 4 !important;
  grid-row: 1 !important;
  display: block !important;
  position: relative !important;
  inset: auto !important;
  justify-self: end !important;
  align-self: center !important;
  margin: 0 !important;
  transform: none !important;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto auto !important;
    column-gap: 12px !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
  }

  .site-header .header-center,
  .site-header .main-nav {
    display: none !important;
  }

  .site-header .brand--image {
    grid-column: 1 !important;
  }

  .site-header .header-contacts {
    grid-column: 2 !important;
    display: grid !important;
  }

  .site-header .menu-toggle {
    grid-column: 3 !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .site-header .header-contacts {
    display: none !important;
  }

  .site-header .menu-toggle {
    grid-column: 2 !important;
  }
}
/* Open mobile menu should visually cover the header */
body.menu-open .mobile-menu {
  z-index: 110 !important;
  padding-top: 96px !important;
}

body.menu-open .site-header {
  z-index: 130 !important;
  border-bottom-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.menu-open .brand,
body.menu-open .header-center,
body.menu-open .header-contacts {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.menu-open .menu-toggle {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

@media (max-width: 920px) {
  body.menu-open .mobile-menu {
    padding-top: 84px !important;
  }
}
/* Keep the hero lead place phrase together */
.hero-lead-place {
  white-space: nowrap;
}

/* Final home hero photo order */
.hero-mosaic > .hero-mosaic__coffee {
  top: 1vh !important;
  left: 2% !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: 70vh !important;
  max-width: none !important;
  aspect-ratio: 0.72 !important;
  z-index: 2 !important;
  box-shadow: none !important;
}

.hero-mosaic > .hero-mosaic__walk {
  top: 4vh !important;
  left: auto !important;
  right: 7% !important;
  bottom: auto !important;
  width: 46vh !important;
  height: 30vh !important;
  aspect-ratio: 1.53 !important;
  z-index: 5 !important;
  box-shadow: 0 30px 70px rgba(16, 42, 73, 0.28) !important;
}

.hero-mosaic > .hero-mosaic__facade {
  top: auto !important;
  left: auto !important;
  right: 3% !important;
  bottom: 2vh !important;
  width: 27vh !important;
  height: 27vh !important;
  max-width: none !important;
  aspect-ratio: 1 !important;
  z-index: 6 !important;
  box-shadow: 0 22px 48px rgba(16, 42, 73, 0.22) !important;
}

@media (max-width: 980px) {
  .hero-mosaic > .hero-mosaic__coffee {
    height: 56vh !important;
  }

  .hero-mosaic > .hero-mosaic__walk {
    width: 38vh !important;
    height: 25vh !important;
  }

  .hero-mosaic > .hero-mosaic__facade {
    width: 22vh !important;
    height: 22vh !important;
  }
}

@media (max-width: 620px) {
  .hero-mosaic > .hero-mosaic__coffee {
    height: 410px !important;
    max-width: 62vw !important;
  }

  .hero-mosaic > .hero-mosaic__walk {
    width: 54vw !important;
    height: 35vw !important;
  }

  .hero-mosaic > .hero-mosaic__facade {
    width: 29vw !important;
    height: 29vw !important;
    bottom: 12px !important;
  }
}

/* Final first-screen advantages */
.hero-amenities--photo {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  margin-bottom: clamp(56px, 6vh, 72px) !important;
}

.hero-photo-amenity {
  border-color: rgba(16, 42, 73, 0.12) !important;
  border-radius: 8px 8px 6px 6px !important;
  background-color: #fff !important;
  background-repeat: no-repeat !important;
  background-size: 86% auto !important;
  background-position: center 8% !important;
  box-shadow: 0 12px 28px rgba(16, 42, 73, 0.1) !important;
  overflow: visible !important;
}

.hero-photo-amenity::before {
  display: block !important;
  inset: auto auto -10px 50% !important;
  width: 22px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: var(--accent) !important;
  transform: translateX(-50%) !important;
}

.hero-photo-amenity > span {
  right: -4px !important;
  bottom: -39px !important;
  left: -4px !important;
  min-height: 34px !important;
  color: rgba(16, 42, 73, 0.68) !important;
  font-size: clamp(9px, min(0.66vw, 1.16vh), 11px) !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

.hero-photo-amenity--park {
  background-image: url("../img/hero-advantage-park.png") !important;
}

.hero-photo-amenity--walk-area {
  background-image: url("../img/hero-advantage-walk.png") !important;
}

.hero-photo-amenity--kitchen {
  background-image: url("../img/hero-advantage-kitchen.png") !important;
}

.hero-photo-amenity--sauna {
  background-image: url("../img/hero-advantage-sauna.png") !important;
}

.hero-photo-amenity--bbq {
  background-image: url("../img/hero-advantage-bbq.png") !important;
}

.hero-photo-amenity--gym {
  background-image: url("../img/hero-advantage-gym.png") !important;
}

/* Final stylized rating badges */
.rating-widgets {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  gap: 10px !important;
}

.rating-widget {
  position: relative !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  grid-template-areas:
    "score brand"
    "score title"
    "score note" !important;
  align-items: center !important;
  width: 150px !important;
  min-width: 150px !important;
  min-height: 50px !important;
  padding: 7px 8px !important;
  border: 1px solid rgba(16, 42, 73, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--blue-dark) !important;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(16, 42, 73, 0.08) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.rating-widget:hover {
  border-color: rgba(16, 42, 73, 0.24) !important;
  box-shadow: 0 16px 34px rgba(16, 42, 73, 0.13) !important;
  transform: translateY(-1px) !important;
}

.rating-widget span {
  grid-area: brand !important;
  color: rgba(16, 42, 73, 0.68) !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.rating-widget b {
  grid-area: score !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 36px !important;
  height: 36px !important;
  margin-right: 8px !important;
  border-radius: 50% !important;
  background: var(--blue-dark) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.rating-widget small {
  grid-area: title !important;
  margin-top: 1px !important;
  color: var(--blue-dark) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

.rating-widget em {
  grid-area: note !important;
  margin-top: 1px !important;
  color: rgba(16, 42, 73, 0.58) !important;
  font-size: 8px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
}

.rating-widget--yandex b {
  background: #fc3f1d !important;
}

.rating-widget--gis b {
  background: #1fa44a !important;
}

.rating-widget--gis small {
  color: #f0a400 !important;
  font-size: 9px !important;
  letter-spacing: 0.06em !important;
}

.home-hero__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px !important;
}

.home-hero__actions .home-hero__button {
  margin: 0 !important;
}

.home-hero__button--outline {
  border: 1px solid rgba(16, 42, 73, 0.72) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--blue-dark) !important;
  box-shadow: 0 10px 24px rgba(16, 42, 73, 0.08) !important;
}

.home-hero__button--outline:hover {
  border-color: var(--blue-dark) !important;
  background: #fff !important;
  color: var(--blue-dark) !important;
  box-shadow: 0 14px 30px rgba(16, 42, 73, 0.14) !important;
}

@media (max-width: 620px) {
  .hero-amenities--photo {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    row-gap: 58px !important;
  }

  .hero-photo-amenity > span {
    bottom: -38px !important;
    font-size: 9px !important;
  }

  .home-hero__actions {
    gap: 10px !important;
  }

  .home-hero__actions .home-hero__button {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Home day journey */
.day-journey {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(48px, 7vw, 92px) 0 clamp(54px, 7vw, 96px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(247, 155, 119, 0.15), transparent 34%),
    linear-gradient(180deg, #fff, #f8fbfc);
  box-shadow: inset 0 1px 0 rgba(16, 42, 73, 0.06), inset 0 -1px 0 rgba(16, 42, 73, 0.06);
}

.home-hero {
  overflow: visible !important;
  z-index: 2 !important;
}

.home-hero__watermark {
  top: auto !important;
  bottom: clamp(-72px, -5vw, -34px) !important;
  z-index: 0 !important;
  color: rgba(16, 42, 73, 0.055) !important;
  font-size: clamp(92px, 15vw, 230px) !important;
  line-height: 0.85 !important;
}

.day-journey__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-word {
  position: absolute;
  left: max(-42px, calc((100vw - 1180px) / 2 - 90px));
  top: clamp(34px, 5vw, 76px);
  z-index: 1;
  color: rgba(16, 42, 73, 0.045);
  font-family: var(--display-font);
  font-size: clamp(86px, 13vw, 210px);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.day-journey__head {
  max-width: 660px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.day-journey__head > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.day-journey__head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.day-journey__head h2 .hero-title-accent,
.why-choose__head h2 .hero-title-accent {
  color: var(--gold);
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.day-journey__head p {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(16, 42, 73, 0.68);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.day-journey__path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  min-height: 390px;
  padding-top: 104px;
}

.day-journey__path::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 8px;
  height: 230px;
  border-top: 2px solid rgba(247, 155, 119, 0.78);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.day-journey__path::after {
  display: none;
}

.day-journey__item {
  position: relative;
  align-self: end;
  padding: 14px;
  border: 1px solid rgba(16, 42, 73, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(16, 42, 73, 0.1);
}

.day-journey__item::before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  width: 38px;
  height: 38px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff9d8 0 30%, #ffd66d 31% 62%, #f79b77 100%);
  background-clip: padding-box;
  box-shadow:
    0 -19px 0 -14px rgba(247, 155, 119, 0.7),
    13px -13px 0 -14px rgba(247, 155, 119, 0.7),
    19px 0 0 -14px rgba(247, 155, 119, 0.7),
    13px 13px 0 -14px rgba(247, 155, 119, 0.7),
    0 19px 0 -14px rgba(247, 155, 119, 0.7),
    -13px 13px 0 -14px rgba(247, 155, 119, 0.7),
    -19px 0 0 -14px rgba(247, 155, 119, 0.7),
    -13px -13px 0 -14px rgba(247, 155, 119, 0.7),
    0 0 34px rgba(247, 155, 119, 0.36),
    0 8px 20px rgba(16, 42, 73, 0.14);
  transform: translateX(-50%);
}

.day-journey__item--day {
  align-self: start;
  margin-top: -34px;
}

.day-journey__item--day::before {
  top: -72px;
  width: 62px;
  height: 62px;
  background:
    radial-gradient(circle, #fffbe4 0 30%, #ffd96b 31% 62%, #f79b77 100%);
  box-shadow:
    0 -29px 0 -22px rgba(247, 155, 119, 0.78),
    20px -20px 0 -22px rgba(247, 155, 119, 0.78),
    29px 0 0 -22px rgba(247, 155, 119, 0.78),
    20px 20px 0 -22px rgba(247, 155, 119, 0.78),
    0 29px 0 -22px rgba(247, 155, 119, 0.78),
    -20px 20px 0 -22px rgba(247, 155, 119, 0.78),
    -29px 0 0 -22px rgba(247, 155, 119, 0.78),
    -20px -20px 0 -22px rgba(247, 155, 119, 0.78),
    0 0 60px rgba(247, 155, 119, 0.46),
    0 12px 28px rgba(16, 42, 73, 0.14);
}

.day-journey__item--evening::before {
  width: 34px;
  height: 34px;
  opacity: 0.86;
  background:
    radial-gradient(circle, #fff0c7 0 30%, #f0b066 31% 62%, #b67a8d 100%);
  box-shadow:
    0 -17px 0 -13px rgba(182, 122, 141, 0.62),
    12px -12px 0 -13px rgba(182, 122, 141, 0.62),
    17px 0 0 -13px rgba(182, 122, 141, 0.62),
    12px 12px 0 -13px rgba(182, 122, 141, 0.62),
    0 17px 0 -13px rgba(182, 122, 141, 0.62),
    -12px 12px 0 -13px rgba(182, 122, 141, 0.62),
    -17px 0 0 -13px rgba(182, 122, 141, 0.62),
    -12px -12px 0 -13px rgba(182, 122, 141, 0.62),
    0 0 28px rgba(182, 122, 141, 0.32),
    0 8px 20px rgba(16, 42, 73, 0.14);
}

.day-journey__media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 7px;
  aspect-ratio: 1.32;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}

.day-journey__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-width: 0;
  border-radius: 6px;
}

.day-journey__media img:first-child {
  grid-row: 1 / 3;
}

.day-journey__item--evening .day-journey__media img {
  background: #fff;
}

.day-journey__item--evening .day-journey__media img:first-child,
.day-journey__item--evening .day-journey__media img:nth-child(2) {
  object-fit: contain;
  padding: 8px;
}

.day-journey__content {
  padding: 16px 4px 2px;
}

.day-journey__content span {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 10px;
  border: 1px solid rgba(247, 155, 119, 0.22);
  border-radius: 999px;
  background: rgba(247, 155, 119, 0.13);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-journey__content span::before {
  display: none;
}

.day-journey__item--day .day-journey__content span {
  border-color: rgba(240, 164, 0, 0.24);
  background: rgba(255, 217, 107, 0.2);
  color: #8d5b16;
}

.day-journey__item--evening .day-journey__content span {
  border-color: rgba(16, 42, 73, 0.14);
  background: rgba(16, 42, 73, 0.08);
  color: rgba(16, 42, 73, 0.76);
}

.day-journey__content h3 {
  margin: 8px 0 7px;
  color: var(--blue-dark);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

.day-journey__content p {
  margin: 0;
  color: rgba(16, 42, 73, 0.68);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .day-journey__path {
    min-height: 0;
    padding-top: 84px;
  }

  .day-journey__item--day {
    margin-top: -18px;
  }
}

@media (max-width: 720px) {
  .day-journey {
    padding: 36px 0 42px;
  }

  .day-journey__inner {
    width: min(100% - 28px, 560px);
  }

  .home-hero__watermark {
    bottom: -24px !important;
    font-size: clamp(56px, 19vw, 92px) !important;
  }

  .section-word {
    left: 12px;
    top: 18px;
    font-size: clamp(58px, 20vw, 92px);
    opacity: 0.78;
  }

  .day-journey__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .day-journey__path {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 0 0 24px;
  }

  .day-journey__path::before {
    left: 7px;
    right: auto;
    top: 10px;
    bottom: 10px;
    width: 2px;
    height: auto;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(247, 155, 119, 0.82), rgba(16, 42, 73, 0.2));
  }

  .day-journey__path::after {
    display: none;
  }

  .day-journey__item,
  .day-journey__item--day {
    align-self: stretch;
    margin-top: 0;
  }

  .day-journey__item::before,
  .day-journey__item--day::before {
    top: 24px;
    left: -17px;
    width: 24px;
    height: 24px;
    border-width: 3px;
  }

  .day-journey__media {
    gap: 6px;
    aspect-ratio: 1.55;
  }
}

/* Why choose section */
.why-choose {
  position: relative;
  width: 100%;
  padding: clamp(54px, 7vw, 92px) 0 clamp(58px, 7vw, 96px);
  background:
    radial-gradient(circle at 84% 18%, rgba(247, 155, 119, 0.1), transparent 30%),
    linear-gradient(180deg, #f3f8fb 0%, #fbfdfe 46%, #edf5f8 100%);
  overflow: hidden;
}

.why-choose__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.why-choose__head {
  max-width: 720px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  text-align: center;
}

.why-choose__head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.why-choose__head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-weight: 300;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

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

.why-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, 0.82fr) minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  align-items: center;
  min-height: 210px;
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(16, 42, 73, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(16, 42, 73, 0.08);
}

.why-card::before {
  content: "";
  position: absolute;
  left: clamp(16px, 1.8vw, 22px);
  top: clamp(16px, 1.8vw, 22px);
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.why-card__media {
  aspect-ratio: 1;
  align-self: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

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

.why-card__content {
  min-width: 0;
  padding-top: 12px;
}

.why-card__content h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: clamp(20px, 1.75vw, 27px);
  line-height: 1.08;
}

.why-card__content p {
  margin: 0;
  color: rgba(16, 42, 73, 0.68);
  font-size: 15px;
  line-height: 1.48;
}

@media (max-width: 1040px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .why-choose {
    padding: 42px 0 48px;
  }

  .why-choose__inner {
    width: min(100% - 28px, 560px);
  }

  .why-choose__head {
    text-align: left;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 0;
  }

  .why-card__content h3 {
    font-size: 20px;
  }

  .why-card__content p {
    font-size: 14px;
  }

}

.park-distance-mark {
  position: relative;
  z-index: 1;
  height: 0;
  pointer-events: none;
}

.park-distance-mark__compass {
  position: absolute;
  right: calc(5vw + clamp(136px, 12vw, 204px));
  top: clamp(-84px, -5.2vw, -44px);
  width: clamp(112px, 13vw, 188px);
  aspect-ratio: 1;
  border: 2px solid rgba(16, 42, 73, 0.07);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.park-distance-mark__compass::before {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(16, 42, 73, 0.055);
  border-radius: 50%;
}

.park-distance-mark__compass::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14%;
  width: 14%;
  height: 72%;
  background:
    linear-gradient(180deg, rgba(247, 155, 119, 0.14) 0 49%, transparent 50%),
    linear-gradient(0deg, rgba(16, 42, 73, 0.08) 0 49%, transparent 50%);
  clip-path: polygon(50% 0, 100% 48%, 57% 48%, 57% 100%, 43% 100%, 43% 48%, 0 48%);
  transform: translateX(-50%) rotate(34deg);
  transform-origin: center;
}

.park-distance-mark__text {
  position: absolute;
  right: 5vw;
  top: clamp(-54px, -3.4vw, -26px);
  color: rgba(16, 42, 73, 0.05);
  font-family: var(--display-font);
  font-size: clamp(68px, 10vw, 154px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .park-distance-mark__compass {
    right: calc(5vw + 84px);
    top: -42px;
    width: 82px;
  }

  .park-distance-mark__text {
    right: 5vw;
    top: -26px;
    font-size: 58px;
  }
}

/* Popular room categories */
.popular-rooms {
  position: relative;
  width: 100%;
  padding: clamp(54px, 7vw, 94px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(247, 155, 119, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbfc 100%);
}

.popular-rooms__inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.popular-rooms__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.popular-rooms__top span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.popular-rooms__top h2 {
  max-width: 760px;
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.popular-rooms__top h2 .hero-title-accent {
  color: var(--gold);
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.popular-room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
}

.popular-room-card {
  position: relative;
  min-width: 0;
  overflow: visible;
  border: 1px solid rgba(16, 42, 73, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(16, 42, 73, 0.09);
}

.popular-room-card__image {
  aspect-ratio: 1.18;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #eef5f7;
}

.popular-room-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.popular-room-card__badge-stack {
  position: absolute;
  top: 20px;
  right: -16px;
  display: grid;
  gap: 9px;
  z-index: 2;
}

.popular-room-card__badge-stack span {
  width: 94px;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(117, 82, 72, 0.16);
  border-radius: 6px;
  background: rgba(255, 252, 247, 0.88);
  color: #755248;
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
  box-shadow: 0 10px 20px rgba(16, 42, 73, 0.1);
  backdrop-filter: blur(10px);
}

.popular-room-card__body {
  padding: 14px;
}

.popular-room-card h3 {
  margin: 0 0 8px;
  color: #102a49;
  font-family: var(--display-font);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  line-height: 1;
}

.popular-room-card p {
  min-height: 38px;
  margin: 0 0 14px;
  color: rgba(16, 42, 73, 0.66);
  font-size: 14px;
  line-height: 1.35;
}

.popular-room-card__periods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  text-align: center;
}

.popular-room-card .popular-room-card__period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(117, 82, 72, 0.34);
  border-radius: 6px;
  background: rgba(247, 155, 119, 0.08);
  color: #755248;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.popular-room-card .popular-room-card__period:hover {
  transform: translateY(-1px);
  border-color: rgba(117, 82, 72, 0.56);
  background: rgba(247, 155, 119, 0.14);
}

.popular-room-card__period span {
  font-size: 11px;
  font-weight: 800;
}

.popular-room-card .popular-room-card__period.is-active {
  border-color: #755248;
  background: #755248;
  color: #fff;
}

.popular-room-card__price {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-bottom: 14px;
  padding: 2px 0 0;
  text-align: center;
}

.popular-room-card__price small {
  min-height: 16px;
  color: rgba(16, 42, 73, 0.54);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.popular-room-card__price span {
  color: #102a49;
  font-family: var(--display-font);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 300;
  line-height: 1;
}

.popular-room-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.popular-room-card__actions .btn {
  min-width: 0;
  justify-content: center;
  padding-right: 12px;
  padding-left: 12px;
}

.popular-room-card__actions .btn-primary {
  border-color: #755248 !important;
  background: #755248 !important;
  color: #fff;
  border-radius: 6px;
}

.popular-room-card__actions .btn-secondary {
  border-color: rgba(117, 82, 72, 0.58) !important;
  background: rgba(247, 155, 119, 0.06) !important;
  color: #755248 !important;
  border-radius: 6px;
}

.popular-room-card__actions .btn-secondary:hover {
  background: rgba(247, 155, 119, 0.14) !important;
}

.popular-rooms__bottom {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 42px);
}

@media (max-width: 1160px) {
  .popular-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .popular-rooms {
    padding: 42px 0 48px;
  }

  .popular-rooms__inner {
    width: min(100% - 28px, 560px);
  }

  .popular-rooms__top {
    display: grid;
    gap: 14px;
    align-items: start;
  }

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

  .popular-room-card__badge-stack {
    right: 10px;
    top: 14px;
  }

  .popular-room-card__badge-stack span {
    width: 86px;
    min-height: 50px;
    padding: 7px 8px;
    font-size: 14px;
  }
}


.faq-folders {
  position: relative;
  padding: 72px 24px;
  background:
    linear-gradient(135deg, rgba(28, 107, 92, 0.08), rgba(191, 137, 74, 0.08)),
    #f7f5ef;
  overflow: hidden;
}

.faq-folders::before {
  content: '?';
  position: absolute;
  left: max(4px, calc((100vw - 1180px) / 2 - 54px));
  top: 8px;
  color: rgba(28, 107, 92, 0.13);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(150px, 21vw, 300px);
  line-height: 0.9;
  pointer-events: none;
}

.faq-folders__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-folders__head {
  position: sticky;
  top: 96px;
}

.faq-folders__head > span {
  display: inline-block;
  margin-bottom: 12px;
  color: #1c6b5c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-folders__head h2 {
  margin: 0;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 300;
  line-height: 1.02;
}

.faq-folders__head p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #5c6964;
  font-size: 17px;
  line-height: 1.55;
}

.faq-folders__list {
  display: grid;
  gap: 14px;
}

.faq-folder {
  position: relative;
  border: 1px solid rgba(42, 66, 60, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(35, 49, 45, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-folder::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #bf894a;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}

.faq-folder.is-open {
  border-color: rgba(28, 107, 92, 0.32);
  box-shadow: 0 22px 58px rgba(35, 49, 45, 0.13);
  transform: translateY(-2px);
}

.faq-folder.is-open::before {
  transform: scaleY(1);
}

.faq-folder__button {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: #20322e;
  text-align: left;
  cursor: pointer;
}

.faq-folder__button:focus-visible {
  outline: 3px solid rgba(28, 107, 92, 0.3);
  outline-offset: -3px;
}

.faq-folder__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(28, 107, 92, 0.1);
  color: #1c6b5c;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
}

.faq-folder__text {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.faq-folder__text span {
  color: #bf894a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-folder__text strong {
  color: #20322e;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.22;
}

.faq-folder__icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1c6b5c;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-folder__icon::before,
.faq-folder__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

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

.faq-folder.is-open .faq-folder__icon {
  background: #bf894a;
  transform: rotate(180deg);
}

.faq-folder.is-open .faq-folder__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-folder__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-folder.is-open .faq-folder__panel {
  max-height: none;
}

.faq-folder__answer {
  margin: 0 22px 22px 98px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(42, 66, 60, 0.1);
  background: rgba(247, 245, 239, 0.72);
  border-radius: 8px;
}

.faq-folder__answer p {
  margin: 0;
  color: #53615c;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .faq-folders {
    padding: 54px 16px;
  }

  .faq-folders__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .faq-folders__head {
    position: static;
  }

  .faq-folders__head p {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .faq-folder__button {
    grid-template-columns: 44px minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 76px;
    padding: 16px 14px;
  }

  .faq-folder__mark {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .faq-folder__icon {
    width: 34px;
    height: 34px;
  }

  .faq-folder__answer {
    margin: 0 14px 16px;
    padding: 16px;
  }
}


.atmosphere {
  position: relative;
  padding: 82px 24px 118px;
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.94), rgba(238, 242, 234, 0.92)),
    #f4f1e8;
  overflow: hidden;
}

.atmosphere::before {
  content: '';
  position: absolute;
  inset: 34px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 62, 54, 0.18), transparent);
}

.atmosphere__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.atmosphere__head {
  max-width: 720px;
  margin-bottom: 34px;
}

.atmosphere__head > span {
  display: inline-block;
  margin-bottom: 12px;
  color: #1c6b5c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atmosphere__head h2 {
  margin: 0;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 300;
  line-height: 1.02;
}

.atmosphere__head p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #586761;
  font-size: 17px;
  line-height: 1.56;
}

.atmosphere-board {
  position: relative;
  min-height: 820px;
  isolation: isolate;
}

.atmosphere-photo {
  position: absolute;
  display: grid;
  gap: 10px;
  padding: 12px 12px 18px;
  border: 0;
  border-radius: 6px;
  background: #fffdf7;
  color: #20322e;
  text-align: left;
  box-shadow: 0 20px 42px rgba(35, 49, 45, 0.15);
  cursor: pointer;
  transform: rotate(var(--tilt));
  transition: transform 0.25s ease, box-shadow 0.25s ease, z-index 0.25s ease;
}

.atmosphere-photo:hover,
.atmosphere-photo:focus-visible {
  z-index: 8;
  box-shadow: 0 28px 60px rgba(35, 49, 45, 0.22);
  transform: translateY(-8px) rotate(0deg);
}

.atmosphere-photo:focus-visible {
  outline: 3px solid rgba(28, 107, 92, 0.34);
  outline-offset: 4px;
}

.atmosphere-photo__image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #e7e1d5;
}

.atmosphere-photo__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.atmosphere-photo:hover .atmosphere-photo__image img,
.atmosphere-photo:focus-visible .atmosphere-photo__image img {
  transform: scale(1.035);
}

.atmosphere-photo__caption {
  display: grid;
  gap: 5px;
  min-height: 58px;
}

.atmosphere-photo__caption strong {
  font-size: 17px;
  line-height: 1.2;
}

.atmosphere-photo__caption small {
  color: #65726d;
  font-size: 13px;
  line-height: 1.35;
}

.atmosphere-photo__caption::after {
  content: '+';
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1c6b5c;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.atmosphere-photo--large {
  left: 3%;
  top: 26px;
  width: min(45vw, 475px);
}

.atmosphere-photo--large .atmosphere-photo__image {
  aspect-ratio: 1.34;
}

.atmosphere-photo--tall {
  right: 5%;
  top: 0;
  width: min(30vw, 320px);
}

.atmosphere-photo--tall .atmosphere-photo__image,
.atmosphere-photo--portrait .atmosphere-photo__image {
  aspect-ratio: 0.76;
}

.atmosphere-photo--medium {
  width: min(31vw, 330px);
}

.atmosphere-photo--medium .atmosphere-photo__image {
  aspect-ratio: 1.12;
}

.atmosphere-photo--small {
  width: min(25vw, 260px);
}

.atmosphere-photo--small .atmosphere-photo__image {
  aspect-ratio: 1.18;
}

.atmosphere-photo:nth-child(3) {
  left: 39%;
  top: 150px;
}

.atmosphere-photo:nth-child(4) {
  left: 18%;
  top: 390px;
}

.atmosphere-photo:nth-child(5) {
  right: 29%;
  top: 380px;
}

.atmosphere-photo:nth-child(6) {
  right: 3%;
  top: 430px;
}

.atmosphere-photo:nth-child(7) {
  left: 50%;
  top: 510px;
}

.atmosphere-photo:nth-child(8) {
  left: 0;
  top: 528px;
}

.atmosphere-modal-open {
  overflow: hidden;
}

.atmosphere-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.atmosphere-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.atmosphere-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 21, 0.78);
  backdrop-filter: blur(5px);
}

.atmosphere-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(86vh, 820px);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 16px;
}

.atmosphere-modal figure {
  position: relative;
  margin: 0;
  display: grid;
  gap: 16px;
}

.atmosphere-modal figure img {
  width: 100%;
  max-height: 74vh;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.atmosphere-modal figcaption {
  display: grid;
  gap: 4px;
  color: #fff;
  text-align: center;
}

.atmosphere-modal figcaption strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
}

.atmosphere-modal figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

.atmosphere-modal__close,
.atmosphere-modal__nav {
  border: 0;
  cursor: pointer;
}

.atmosphere-modal__close {
  position: absolute;
  right: 0;
  top: -58px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.atmosphere-modal__close::before,
.atmosphere-modal__close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.atmosphere-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.atmosphere-modal__nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
}

.atmosphere-modal__nav::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.atmosphere-modal__nav--prev::before {
  transform: translate(-35%, -50%) rotate(45deg);
}

.atmosphere-modal__nav--next::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.atmosphere-modal__close:hover,
.atmosphere-modal__nav:hover,
.atmosphere-modal__close:focus-visible,
.atmosphere-modal__nav:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  outline: none;
}

@media (max-width: 900px) {
  .atmosphere {
    padding: 64px 16px 72px;
  }

  .atmosphere-board {
    min-height: 0;
    display: flex;
    gap: 18px;
    margin: 0 -16px;
    padding: 8px 16px 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .atmosphere-photo,
  .atmosphere-photo:nth-child(n) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    flex: 0 0 min(78vw, 360px);
    width: min(78vw, 360px);
    scroll-snap-align: center;
    transform: rotate(var(--tilt));
  }

  .atmosphere-photo--portrait .atmosphere-photo__image,
  .atmosphere-photo--tall .atmosphere-photo__image,
  .atmosphere-photo__image {
    aspect-ratio: 1.08;
  }

  .atmosphere-modal__dialog {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .atmosphere-modal__nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 560px) {
  .atmosphere-modal {
    padding: 16px;
  }

  .atmosphere-modal__dialog {
    grid-template-columns: 1fr 1fr;
  }

  .atmosphere-modal figure {
    grid-column: 1 / -1;
    order: 1;
  }

  .atmosphere-modal__nav {
    order: 2;
    justify-self: center;
  }

  .atmosphere-modal__close {
    right: 0;
    top: -52px;
  }
}


/* Home contacts block */
.home-contacts {
  position: relative;
  padding: 0 0 96px;
  background: #f4f1e8;
}

.home-contacts__inner {
  width: 100%;
  min-height: min(58vw, 620px);
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid rgba(31, 62, 54, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf1;
  box-shadow: 0 28px 80px rgba(35, 49, 45, 0.12);
}

.home-contacts__map {
  min-height: 520px;
  background: #d9ded2;
}

.home-contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

.home-contacts__info {
  position: relative;
  display: grid;
  align-items: center;
  min-width: 0;
  padding: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.72)),
    url('../img/compass-bg.svg') right -92px center / min(82%, 620px) no-repeat,
    #fffaf1;
  overflow: hidden;
}

.home-contacts__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.home-contacts__eyebrow {
  margin: 0 0 14px;
  color: #1c6b5c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-contacts h2 {
  margin: 0 0 28px;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.04;
}

.home-contacts__list {
  display: grid;
  gap: 10px;
}

.home-contacts__item {
  display: grid;
  gap: 6px;
  padding: 17px 18px;
  border: 1px solid rgba(31, 62, 54, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #20322e;
  text-decoration: none;
  backdrop-filter: blur(2px);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.home-contacts__item:hover,
.home-contacts__item:focus-visible {
  border-color: rgba(28, 107, 92, 0.34);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  outline: none;
}

.home-contacts__item span {
  color: #6a756f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-contacts__item strong {
  color: #20322e;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .home-contacts {
    padding: 0 0 72px;
  }

  .home-contacts__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-contacts__map,
  .home-contacts__map iframe {
    min-height: 360px;
  }

  .home-contacts__info {
    min-height: 430px;
    background-size: 560px;
    background-position: right -160px center;
  }
}

@media (max-width: 560px) {
  .home-contacts {
    padding-bottom: 56px;
  }

  .home-contacts__map,
  .home-contacts__map iframe {
    min-height: 300px;
  }

  .home-contacts__info {
    padding: 28px 18px;
    min-height: 0;
    background-size: 440px;
    background-position: right -180px top 20px;
  }
}


/* Modern footer */
.site-footer {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(31, 62, 54, 0.14);
  background: #f6f2e9;
  color: #24332e;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(180px, 0.8fr) minmax(240px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  padding: 54px 0 38px;
}

.site-footer__brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer__logo {
  width: fit-content;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  line-height: 1;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 0;
  color: #66726d;
  font-size: 16px;
  line-height: 1.55;
}

.site-footer__nav,
.site-footer__contacts {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__nav a,
.site-footer__contacts a,
.site-footer__bottom-info a {
  width: fit-content;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__nav a {
  color: #24332e;
  font-size: 17px;
  font-weight: 600;
}

.site-footer__contacts a {
  color: #596760;
  font-size: 16px;
  line-height: 1.4;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #1c6b5c;
  transform: translateX(2px);
  outline: none;
}

.site-footer__bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(31, 62, 54, 0.12);
  color: #738078;
  font-size: 14px;
}

.site-footer__bottom-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__developer img {
  display: block;
  width: auto;
  height: 36px;
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer__inner,
  .site-footer__bottom {
    width: min(100% - 32px, 1180px);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 40px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* Conversion booking page */
.booking-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(246, 242, 233, 1) 420px),
    #f6f2e9;
}

.booking-intro {
  padding-bottom: 22px;
}

.booking-intro h1 {
  max-width: 940px;
}

.booking-layout {
  display: block;
  width: min(1180px, calc(100% - 36px));
  padding: 18px 0 78px;
}

.booking-form {
  display: grid;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-step {
  border: 1px solid rgba(31, 62, 54, 0.12);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 22px 68px rgba(36, 51, 46, 0.1);
}

.booking-step--calc {
  padding: clamp(22px, 4vw, 42px);
}

.booking-step--request {
  padding: clamp(22px, 4vw, 40px);
  background:
    linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(239, 246, 241, 0.94)),
    #fffaf1;
}

.booking-step__head {
  max-width: 720px;
  margin-bottom: 24px;
}

.booking-step__head span {
  display: inline-block;
  margin-bottom: 10px;
  color: #1c6b5c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-step__head h2 {
  margin: 0;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.04;
}

.booking-step__head p {
  max-width: 660px;
  margin: 12px 0 0;
  color: #66726d;
  font-size: 17px;
  line-height: 1.5;
}

.booking-calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.booking-fields {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.booking-field {
  display: grid;
  gap: 7px;
}

.booking-field--wide {
  grid-column: 1 / -1;
}

.booking-field span {
  color: #596760;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-page input,
.booking-page select,
.booking-page textarea {
  min-height: 48px;
  border-color: rgba(31, 62, 54, 0.18);
  background: #fffdf8;
}

.booking-page textarea {
  min-height: 112px;
}

.booking-page .room-summary {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  border-left: 0;
  background: transparent;
  color: #24332e;
}

.booking-page .room-summary--empty {
  padding: 14px;
  border: 1px dashed rgba(31, 62, 54, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: #66726d;
}

.booking-room-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(31, 62, 54, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-room-card__image {
  min-height: 210px;
  overflow: hidden;
  border-radius: 6px;
  background: #e6dfd4;
}

.booking-room-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.booking-room-card__body {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
}

.booking-room-card__top {
  display: grid;
  gap: 5px;
}

.booking-room-card__top span {
  color: #1c6b5c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-room-card__top strong {
  color: #20322e;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
}

.booking-room-card p {
  margin: 0;
  color: #66726d;
  font-size: 15px;
  line-height: 1.48;
}

.booking-room-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.booking-room-card__facts div {
  padding: 11px 12px;
  border-radius: 8px;
  background: #f6f2e9;
}

.booking-room-card__facts dt {
  margin: 0 0 4px;
  color: #6b766f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-room-card__facts dd {
  margin: 0;
  color: #24332e;
  font-weight: 700;
  line-height: 1.25;
}

.booking-page .calc-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-color: rgba(185, 130, 54, 0.28);
  background: #fffdf8;
}

.booking-page .calc-panel__total {
  color: #1c6b5c;
}

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

.booking-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 22px;
}

.booking-submit-row .form-note {
  margin: 0;
  color: #66726d;
}

.booking-submit-row .form-note.is-error {
  color: #a33a3a;
}

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

  .booking-page .calc-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .booking-room-card,
  .booking-request-grid,
  .booking-room-card__facts {
    grid-template-columns: 1fr;
  }

  .booking-room-card__image {
    min-height: 240px;
  }
}


/* Category booking adjustments */
.booking-quick-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.1fr) minmax(150px, 1.1fr) minmax(110px, 0.8fr) minmax(110px, 0.8fr);
  gap: 14px;
}

.booking-page .room-summary {
  margin: -4px 0 2px;
}

.booking-room-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-room-chips span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid rgba(31, 62, 54, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #24332e;
  font-size: 14px;
  line-height: 1.15;
}

.booking-room-chips b {
  color: #66726d;
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .booking-quick-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .booking-quick-row {
    grid-template-columns: 1fr;
  }
}


/* Booking final conversion tweaks */
.booking-page .booking-layout {
  padding-top: clamp(24px, 5vw, 58px);
}

.booking-page .calc-panel__total {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

.booking-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: #596760;
  font-size: 14px;
  line-height: 1.42;
}

.booking-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: #1c6b5c;
}

.booking-consent a {
  color: #1c6b5c;
  font-weight: 700;
}


/* Compact booking category specs */
.booking-room-brief {
  display: grid;
  gap: 8px;
  color: #24332e;
}

.booking-room-brief p {
  max-width: 760px;
  margin: 0;
  color: #66726d;
  font-size: 14px;
  line-height: 1.42;
}

.booking-room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}

.booking-room-specs div {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.booking-room-specs dt {
  margin: 0;
  color: #77827b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-room-specs dd {
  margin: 0;
  color: #24332e;
  font-size: 14px;
  font-weight: 700;
}

.booking-room-chips {
  display: none;
}


/* Booking decorative steps */
.booking-page {
  position: relative;
  overflow: hidden;
}

.booking-page::before {
  content: 'Р вЂ™РЎР‚Р ВµР СРЎРЏ\A Р С•РЎвЂљР Т‘РЎвЂ№РЎвЂ¦Р В°РЎвЂљРЎРЉ';
  white-space: pre;
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2 - 10px));
  top: 128px;
  z-index: 0;
  color: rgba(31, 62, 54, 0.055);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(86px, 12vw, 178px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.booking-layout,
.booking-step {
  position: relative;
  z-index: 1;
}

.booking-step {
  overflow: visible;
}

.booking-step__head span {
  position: relative;
  left: -22px;
  margin-bottom: 14px;
  padding: 8px 14px 9px;
  border-radius: 0 8px 8px 0;
  background: #d9eadf;
  color: #1c6b5c;
  box-shadow: 0 10px 24px rgba(36, 51, 46, 0.1);
}

.booking-step--request .booking-step__head span {
  background: #f3dfbd;
  color: #8a5a1f;
}

@media (max-width: 900px) {
  .booking-page::before {
    right: 14px;
    top: 82px;
    font-size: clamp(64px, 18vw, 118px);
    opacity: 0.72;
  }

  .booking-step__head span {
    left: -14px;
  }
}

@media (max-width: 560px) {
  .booking-page::before {
    display: none;
  }

  .booking-step__head span {
    left: 0;
    border-radius: 8px;
  }
}


/* Visible booking background letters */
.booking-page::before {
  display: none;
}

.booking-step--calc {
  position: relative;
  overflow: hidden;
}

.booking-step--calc::before {
  content: 'Р вЂ™РЎР‚Р ВµР СРЎРЏ\A Р С•РЎвЂљР Т‘РЎвЂ№РЎвЂ¦Р В°РЎвЂљРЎРЉ';
  white-space: pre;
  position: absolute;
  right: 24px;
  top: 34px;
  z-index: 0;
  color: rgba(31, 62, 54, 0.09);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(72px, 10vw, 142px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.booking-step--calc > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .booking-step--calc::before {
    right: 16px;
    top: 28px;
    font-size: clamp(58px, 16vw, 108px);
    color: rgba(31, 62, 54, 0.065);
  }
}

@media (max-width: 560px) {
  .booking-step--calc::before {
    display: none;
  }
}


/* Booking letters in right field */
.booking-step--calc::before {
  display: none;
}

.booking-page::before {
  display: block;
  content: 'Р вЂ™РЎР‚Р ВµР СРЎРЏ\A Р С•РЎвЂљР Т‘РЎвЂ№РЎвЂ¦Р В°РЎвЂљРЎРЉ';
  white-space: pre;
  position: fixed;
  right: clamp(18px, 4vw, 72px);
  top: 180px;
  z-index: 0;
  color: rgba(31, 62, 54, 0.12);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(82px, 11vw, 164px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.booking-layout {
  position: relative;
  z-index: 1;
}

@media (max-width: 1180px) {
  .booking-page::before {
    right: 16px;
    top: 150px;
    color: rgba(31, 62, 54, 0.07);
  }
}

@media (max-width: 980px) {
  .booking-page::before {
    display: none;
  }
}


/* Booking title row */
.booking-page::before,
.booking-step--calc::before {
  display: none;
}

.booking-title-row {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: clamp(34px, 5vw, 62px) 0 10px;
}

.booking-title-row h1 {
  margin: 0;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.booking-title-row p {
  margin: 0 0 2px;
  color: rgba(31, 62, 54, 0.14);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .booking-title-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-title-row p {
    justify-self: start;
    font-size: clamp(34px, 10vw, 74px);
  }
}

@media (max-width: 560px) {
  .booking-title-row p {
    display: none;
  }
}


/* Booking title viewport lettering */
.booking-title-row {
  grid-template-columns: minmax(0, 1fr);
  position: relative;
}

.booking-title-row p {
  position: absolute;
  right: calc(18px - ((100vw - 100%) / 2));
  bottom: 8px;
  font-size: clamp(58px, 9vw, 132px);
  text-align: right;
  z-index: 0;
}

.booking-title-row h1 {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

@media (max-width: 980px) {
  .booking-title-row p {
    right: 0;
    bottom: -4px;
    font-size: clamp(42px, 12vw, 88px);
  }
}


/* Soft booking title lettering */
.booking-title-row {
  z-index: 0;
}

.booking-title-row p {
  bottom: -42px;
  color: rgba(226, 220, 207, 0.62);
  z-index: 0;
}

.booking-title-row h1 {
  z-index: 2;
}

.booking-layout {
  z-index: 2;
}

@media (max-width: 980px) {
  .booking-title-row p {
    bottom: -20px;
    color: rgba(226, 220, 207, 0.5);
  }
}


/* Gallery page */
.gallery-page {
  overflow: hidden;
}

.gallery-hero {
  display: grid;
  min-height: 46vh;
  align-items: end;
  padding: clamp(120px, 16vw, 180px) clamp(18px, 6vw, 80px) clamp(38px, 8vw, 72px);
  background:
    linear-gradient(90deg, rgba(20, 36, 30, .76), rgba(20, 36, 30, .2)),
    url('../img/gallery/territory-1.png') center / cover;
  color: #fff;
}

.gallery-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  line-height: .96;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 580px;
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 24px);
}

.gallery-section {
  padding: clamp(42px, 7vw, 84px) clamp(16px, 5vw, 72px);
}

.gallery-section:nth-child(odd) {
  background: #f6f2e9;
}

.gallery-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.gallery-section__head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 300;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.gallery-card {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #d9d0c0;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .24s ease;
}

.gallery-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(20, 36, 30, .68);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .gallery-hero {
    min-height: 42vh;
  }

  .gallery-section__head {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-card span {
    font-size: 12px;
  }
}

/* Order confirmation modal */
.order-modal-open {
  overflow: hidden;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 35, 31, 0.58);
  backdrop-filter: blur(4px);
}

.order-modal__dialog {
  position: relative;
  width: min(480px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(26px, 5vw, 42px);
  border-radius: 8px;
  background: #fffaf1;
  color: #20322e;
  box-shadow: 0 30px 90px rgba(20, 34, 29, 0.28);
  text-align: center;
}

.order-modal__dialog p {
  margin: 0;
  color: #1c6b5c;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-modal__dialog h2 {
  margin: 0;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 300;
  line-height: 1.06;
}

.order-modal__number {
  padding: 14px 16px;
  border-radius: 8px;
  background: #f6f2e9;
  color: #66726d;
}

.order-modal__number strong {
  display: block;
  margin-top: 4px;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0;
}

.order-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.order-modal__close::before,
.order-modal__close::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 17px;
  width: 16px;
  height: 2px;
  background: #66726d;
}

.order-modal__close::before {
  transform: rotate(45deg);
}

.order-modal__close::after {
  transform: rotate(-45deg);
}


/* Booking copy and layout update */
.booking-title-row {
  align-items: end;
}

.booking-title-row > div {
  position: relative;
  z-index: 2;
}

.booking-amenities {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  max-width: 860px;
  margin-top: 18px;
}

.booking-amenity {
  min-height: 74px;
  display: flex;
  align-items: flex-end;
  padding: 9px;
  border-radius: 8px;
  background: #e7dfd2 center / cover no-repeat;
  color: #fffaf1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 1px 8px rgba(10, 20, 16, 0.55);
  overflow: hidden;
  position: relative;
}

.booking-amenity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(20, 34, 29, 0.68));
}

.booking-amenity {
  isolation: isolate;
}

.booking-amenity--park {
  background-image: url('../img/hero-advantage-park.png');
}

.booking-amenity--walk {
  background-image: url('../img/hero-advantage-walk.png');
}

.booking-amenity--kitchen {
  background-image: url('../img/hero-advantage-kitchen.png');
}

.booking-amenity--sauna {
  background-image: url('../img/hero-advantage-sauna.png');
}

.booking-amenity--bbq {
  background-image: url('../img/hero-advantage-bbq.png');
}

.booking-amenity--gym {
  background-image: url('../img/hero-advantage-gym.png');
}

.booking-step__head--media {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  gap: 24px;
  align-items: start;
}

.booking-step-photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #e7dfd2;
  box-shadow: 0 18px 46px rgba(36, 51, 46, 0.12);
}

.booking-step-photo img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.booking-step-photo figcaption {
  padding: 10px 12px;
  color: #596760;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.booking-help-card {
  padding: 24px;
  border-radius: 8px;
  background: #fffdf8;
  border: 1px solid rgba(31, 62, 54, 0.12);
  box-shadow: 0 16px 42px rgba(36, 51, 46, 0.08);
}

.booking-help-card h3 {
  margin: 0 0 16px;
  color: #20322e;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.08;
}

.booking-help-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-help-card li {
  position: relative;
  padding-left: 24px;
  color: #596760;
  font-weight: 700;
  line-height: 1.35;
}

.booking-help-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1c6b5c;
}

@media (max-width: 980px) {
  .booking-amenities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-step__head--media,
  .booking-request-layout {
    grid-template-columns: 1fr;
  }

  .booking-step-photo {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .booking-amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-amenity {
    min-height: 68px;
  }
}


/* Booking visual refinements */
.booking-title-row p {
  top: -20px;
  bottom: auto;
}

.booking-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 12px);
  max-width: 920px;
}

.booking-amenity {
  flex: 1 1 128px;
  min-width: 118px;
  min-height: 112px;
  align-items: flex-end;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(36, 51, 46, 0.16);
}

.booking-amenity > span,
.booking-amenity {
  position: relative;
  z-index: 1;
}

.booking-help-card li::before {
  content: '\2713';
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #1c6b5c;
  font-weight: 900;
}

@media (max-width: 560px) {
  .booking-amenity {
    min-height: 86px;
    flex-basis: calc(50% - 8px);
  }
}


/* Booking amenities match home hero */
.booking-amenities {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 16px);
  max-width: min(100%, 690px);
  margin-top: 20px;
  padding-bottom: 44px;
}

.booking-amenity {
  position: relative;
  display: block;
  flex: initial;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(16, 42, 73, 0.12);
  border-radius: 8px 8px 6px 6px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 86% auto;
  background-position: center 8%;
  color: rgba(16, 42, 73, 0.68);
  box-shadow: 0 12px 28px rgba(16, 42, 73, 0.1);
  overflow: visible;
  text-shadow: none;
}

.booking-amenity::before {
  content: '';
  position: absolute;
  inset: auto auto -10px 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.booking-amenity {
  font-size: 0;
}

.booking-amenity::after {
  content: attr(data-label);
  position: absolute;
  right: -4px;
  bottom: -39px;
  left: -4px;
  min-height: 34px;
  color: rgba(16, 42, 73, 0.68);
  font-size: clamp(9px, min(0.66vw, 1.16vh), 11px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.booking-step-photo figcaption {
  display: none;
}

@media (max-width: 980px) {
  .booking-amenities {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: min(100%, 720px);
  }
}

@media (max-width: 620px) {
  .booking-amenities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 58px;
  }

  .booking-amenity::after {
    bottom: -38px;
    font-size: 9px;
  }
}


/* Booking title width repair */
.booking-title-row h1 {
  max-width: 1040px;
  font-size: clamp(38px, 4.9vw, 72px);
}

@media (min-width: 760px) {
  .booking-title-row h1 {
    white-space: nowrap;
  }
}

@media (max-width: 759px) {
  .booking-title-row h1 {
    white-space: normal;
  }
}

/* Booking title two-line fit */
.booking-title-row > div { width: min(100%, 1040px); }
.booking-title-row h1 { max-width: none; }



/* Rooms page category catalog */
.rooms-page-catalog {
  padding-top: clamp(44px, 6vw, 76px);
}

.rooms-page-catalog__top {
  align-items: start;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.rooms-page-catalog__top h1 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: 0;
}

.rooms-page-catalog__top h1 .hero-title-accent {
  color: var(--gold);
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.rooms-page-catalog__top p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(16, 42, 73, 0.68);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.42;
}

.rooms-page-catalog__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1040px) {
  .rooms-page-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .rooms-page-catalog__top h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

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


/* Rooms choice CTA spacing */
.rooms-choice-cta {
  margin-bottom: clamp(46px, 6vw, 86px);
}

.rooms-choice-cta .btn-primary {
  border-color: rgba(255, 255, 255, 0.86) !important;
  background: transparent !important;
  color: #fff !important;
}

.rooms-choice-cta .btn-primary:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}


/* Room detail page */
.room-detail-page {
  background: #f8fbfc;
}

.room-detail-hero {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) 0 clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.room-detail-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.room-detail-hero h1,
.room-detail-section__head h2,
.room-detail-description h2,
.room-detail-card h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-weight: 300;
  letter-spacing: 0;
}

.room-detail-hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.8vw, 94px);
  line-height: .9;
}

.room-detail-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(16, 42, 73, .68);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.42;
}

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

.room-detail-facts span {
  min-height: 94px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: rgba(16, 42, 73, .56);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.room-detail-facts b {
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1;
  text-transform: none;
}

.room-detail-hero__image {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #eef5f7;
  cursor: zoom-in;
  box-shadow: 0 22px 60px rgba(16, 42, 73, .13);
}

.room-detail-hero__image img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  transition: transform .35s ease;
}

.room-detail-hero__image:hover img {
  transform: scale(1.025);
}

.room-detail-section,
.room-detail-layout {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(42px, 6vw, 78px);
}

.room-detail-section__head {
  margin-bottom: 24px;
}

.room-detail-section__head h2,
.room-detail-description h2,
.room-detail-card h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}

.room-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}

.room-gallery__item {
  min-height: 220px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #eef5f7;
  cursor: zoom-in;
}

.room-gallery__item--large {
  grid-row: span 2;
  min-height: 460px;
}

.room-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.room-gallery__item:hover img {
  transform: scale(1.035);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.room-detail-description,
.room-detail-card,
.room-price-card,
.room-instance-card {
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(16, 42, 73, .07);
}

.room-detail-description {
  padding: clamp(24px, 4vw, 44px);
}

.room-detail-description p:last-child {
  margin: 18px 0 0;
  color: rgba(16, 42, 73, .70);
  font-size: 17px;
  line-height: 1.65;
}

.room-detail-card {
  padding: 24px;
}

.room-detail-card dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.room-detail-card dl div {
  display: grid;
  grid-template-columns: minmax(120px, .75fr) minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(16, 42, 73, .10);
}

.room-detail-card dt {
  color: rgba(16, 42, 73, .52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.room-detail-card dd {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

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

.room-price-card {
  padding: 22px;
}

.room-price-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.room-price-card strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
}

.room-price-card p {
  margin: 10px 0 0;
  color: rgba(16, 42, 73, .58);
  font-weight: 700;
}

.room-instance-list {
  display: grid;
  gap: 14px;
}

.room-instance-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
}

.room-instance-card > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 155, 119, .14);
  color: #755248;
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 300;
}

.room-instance-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  line-height: 1;
}

.room-instance-card p {
  margin: 0;
  color: rgba(16, 42, 73, .66);
  line-height: 1.55;
}

.room-detail-cta {
  margin-bottom: clamp(48px, 6vw, 86px);
}

.room-detail-cta .btn-primary {
  border-color: rgba(255, 255, 255, .86) !important;
  background: transparent !important;
  color: #fff !important;
}

.room-detail-cta .btn-primary:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, .12) !important;
}

.room-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.room-gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.room-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 18, 30, .76);
}

.room-gallery-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 14px;
  z-index: 1;
}

.room-gallery-modal__dialog img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 8px;
  background: #102a49;
}

.room-gallery-modal__close,
.room-gallery-modal__nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.room-gallery-modal__close {
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.room-gallery-modal__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 34px;
  transform: translateY(-50%);
}

.room-gallery-modal__nav--prev {
  left: 12px;
}

.room-gallery-modal__nav--next {
  right: 12px;
}

.room-gallery-modal__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.room-gallery-modal__caption strong {
  font-family: var(--display-font);
  font-size: 23px;
  font-weight: 300;
}

body.room-gallery-modal-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .room-detail-hero,
  .room-detail-layout,
  .room-gallery,
  .room-price-grid {
    grid-template-columns: 1fr;
  }

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

  .room-gallery__item--large {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .room-detail-hero,
  .room-detail-section,
  .room-detail-layout {
    width: min(100% - 28px, 560px);
  }

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

  .room-gallery-modal {
    padding: 12px;
  }

  .room-gallery-modal__caption {
    display: grid;
  }
}


/* Room detail breadcrumbs */
.room-detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(16, 42, 73, 0.52);
  font-size: 13px;
  font-weight: 800;
}

.room-detail-breadcrumbs a {
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.room-detail-breadcrumbs span:last-child {
  color: rgba(16, 42, 73, 0.64);
}


/* Single room content tweaks */
.room-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.room-detail-hero__actions .btn-primary {
  border-color: #755248 !important;
  background: #755248 !important;
  color: #fff !important;
}

.room-choice-reasons {
  margin-top: calc(clamp(42px, 6vw, 78px) * -0.35);
}

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

.room-choice-reasons__grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 73, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(16, 42, 73, 0.07);
}

.room-choice-reasons__grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.room-choice-reasons__grid p {
  min-height: 68px;
  margin: 0;
  padding: 14px;
  display: flex;
  align-items: center;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.05;
}

@media (max-width: 980px) {
  .room-choice-reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .room-choice-reasons__grid {
    grid-template-columns: 1fr;
  }
}


/* Room detail left compass mark */
.room-detail-hero {
  isolation: isolate;
  overflow: visible;
}

.room-detail-distance-mark {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: -1;
  width: 100vw;
  height: 0;
}

.room-detail-distance-mark .park-distance-mark__compass {
  left: calc((100vw - min(1240px, calc(100vw - 36px))) / -2 - 34px);
  right: auto;
  top: clamp(18px, 4vw, 56px);
  width: clamp(170px, 18vw, 290px);
  border-color: rgba(16, 42, 73, 0.055);
}

.room-detail-distance-mark .park-distance-mark__text {
  left: calc((100vw - min(1240px, calc(100vw - 36px))) / -2 + 22px);
  right: auto;
  top: clamp(150px, 16vw, 236px);
  color: rgba(16, 42, 73, 0.045);
  font-size: clamp(88px, 13vw, 190px);
}

@media (max-width: 760px) {
  .room-detail-distance-mark .park-distance-mark__compass {
    left: -70px;
    top: 8px;
    width: 150px;
  }

  .room-detail-distance-mark .park-distance-mark__text {
    left: -18px;
    top: 112px;
    font-size: 72px;
  }
}


/* Room detail compass top-left refinement */
.room-detail-distance-mark .park-distance-mark__compass {
  left: max(-118px, calc((100vw - min(1240px, calc(100vw - 36px))) / -2 - 92px));
  top: clamp(-42px, -2vw, -18px);
  width: clamp(190px, 20vw, 330px);
}

.room-detail-distance-mark .park-distance-mark__text {
  left: max(-78px, calc((100vw - min(1240px, calc(100vw - 36px))) / -2 - 28px));
  top: clamp(122px, 11vw, 176px);
  font-size: clamp(92px, 12vw, 176px);
}

@media (max-width: 760px) {
  .room-detail-distance-mark .park-distance-mark__compass {
    left: -92px;
    top: -34px;
    width: 176px;
  }

  .room-detail-distance-mark .park-distance-mark__text {
    left: -58px;
    top: 96px;
    font-size: 72px;
  }
}


/* Room detail 100m slight reveal */
.room-detail-distance-mark .park-distance-mark__text {
  left: max(-34px, calc((100vw - min(1240px, calc(100vw - 36px))) / -2 + 10px));
}

@media (max-width: 760px) {
  .room-detail-distance-mark .park-distance-mark__text {
    left: -26px;
  }
}


/* Room detail 100m final reveal */
.room-detail-distance-mark .park-distance-mark__text {
  left: max(-12px, calc((100vw - min(1240px, calc(100vw - 36px))) / -2 + 34px));
}

@media (max-width: 760px) {
  .room-detail-distance-mark .park-distance-mark__text {
    left: -12px;
  }
}


/* Room detail overflow guard */
.room-detail-page {
  overflow-x: clip;
}

.room-detail-hero {
  overflow: clip;
}

.room-detail-distance-mark {
  width: 100%;
}


/* Header room category dropdown */
.main-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-room-subnav {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 80;
  width: min(360px, 86vw);
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(16, 42, 73, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(16, 42, 73, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(14px);
}

.main-nav__item--rooms:hover .main-room-subnav,
.main-nav__item--rooms:focus-within .main-room-subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-room-subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.main-room-subnav a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.main-room-subnav a:hover {
  color: var(--green-dark);
  background: rgba(31, 104, 77, 0.08);
}

.main-room-subnav__all {
  color: var(--green-dark) !important;
}

@media (max-width: 1180px) {
  .main-room-subnav {
    display: none;
  }
}


/* Header bordered booking CTA */
.header-center {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.header-menu-cta,
.mobile-menu-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border: 1px solid rgba(31, 104, 77, 0.42);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-menu-cta:hover,
.mobile-menu-cta:hover {
  border-color: var(--green-dark);
  background: rgba(31, 104, 77, 0.08);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 8px;
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 1180px) {
  .header-menu-cta {
    display: none;
  }
}


/* Compact header booking CTA */
.header-menu-cta,
.mobile-menu-cta {
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.mobile-menu-cta {
  min-height: 38px;
  font-size: 10px;
}


/* Tiny header booking CTA */
.header-menu-cta {
  margin-top: 4px;
  min-height: 24px;
  padding: 5px 9px;
  font-size: 5px;
  line-height: 1;
}

.mobile-menu-cta {
  margin-top: 18px;
  min-height: 32px;
  padding: 6px 8px;
  font-size: 6px;
  line-height: 1;
}


/* Half-size menu booking CTA font */
.header-menu-cta {
  font-size: 2.5px;
}

.mobile-menu-cta {
  font-size: 3px;
}


/* Mobile booking CTA specificity fix */
.mobile-nav .mobile-menu-cta {
  margin-top: 18px;
  font-size: clamp(23px, 3vw, 43px);
  line-height: 1;
  white-space: nowrap;
}


/* Softer room category submenu type */
.main-room-subnav a,
.mobile-nav .mobile-subnav a {
  font-weight: 400;
  letter-spacing: 0;
}

.main-room-subnav__all,
.mobile-subnav__all {
  font-weight: 600 !important;
}


/* Footer rating widgets */
.site-footer__ratings {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-footer__ratings .rating-widget {
  min-width: 0;
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.site-footer__ratings .rating-widget:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.site-footer__ratings .rating-widget span,
.site-footer__ratings .rating-widget small,
.site-footer__ratings .rating-widget em {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__ratings .rating-widget b {
  color: #fff;
}

@media (max-width: 960px) {
  .site-footer__ratings {
    grid-column: 1 / -1;
    width: min(100%, 520px);
  }
}

@media (max-width: 560px) {
  .site-footer__ratings {
    grid-template-columns: 1fr;
  }
}


/* Footer ratings in brand column */
.site-footer__brand .site-footer__ratings {
  margin-top: 18px;
  width: min(100%, 360px);
}

@media (max-width: 960px) {
  .site-footer__brand .site-footer__ratings {
    grid-column: auto;
  }
}


/* Home page horizontal overflow guard */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.home-hero,
.home-hero .hero-mosaic,
.home-hero__watermark,
.home-hero__infinity {
  max-width: 100%;
}

.home-hero {
  overflow-x: clip !important;
}


/* Relax page */
.relax-page {
  background: #f8fbfc;
}

.relax-hero {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 94px) 0 clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.relax-hero h1,
.relax-section__head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-weight: 300;
  line-height: .95;
  letter-spacing: 0;
}

.relax-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 96px);
}

.relax-hero p:not(.eyebrow),
.relax-section__head p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(16, 42, 73, .68);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
}

.relax-hero__media {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 14px;
  align-items: end;
}

.relax-hero__media img,
.relax-photo-row img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(16, 42, 73, .09);
}

.relax-hero__media img:first-child {
  aspect-ratio: .88;
}

.relax-hero__media img:last-child {
  aspect-ratio: .78;
  margin-bottom: 12%;
}

.relax-section {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 7vw, 96px);
}

.relax-section__head {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.relax-section__head h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.relax-photo-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  margin-bottom: 12px;
}

.relax-photo-row img {
  aspect-ratio: 1.75;
}

.relax-card-grid,
.relax-nearby-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.relax-card,
.relax-nearby-list article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(16, 42, 73, .07);
}

.relax-card h3,
.relax-nearby-list h3 {
  margin: 14px 0 10px;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1;
}

.relax-card p,
.relax-nearby-list p {
  margin: 0;
  color: rgba(16, 42, 73, .64);
  line-height: 1.48;
}

.relax-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(31, 104, 77, .18);
  border-radius: 8px;
  background: rgba(31, 104, 77, .08);
}

.relax-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background: var(--green-dark);
  opacity: .82;
  mask: var(--relax-icon) center / contain no-repeat;
}

.relax-icon--fire { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 4c4 8-4 10 5 18 2-5 4-8 8-11-1 8 7 13 4 23-2 7-8 11-18 11S7 39 7 29c0-8 6-13 12-19-1 7 2 9 6 14 5-7 0-11 0-20z'/%3E%3C/svg%3E"); }
.relax-icon--bbq { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 20h28c0 8-6 14-14 14S10 28 10 20zm4-7h20v4H14v-4zm8 21h4v10h-4V34zm-9 7 8-7 2 3-7 7-3-3zm22 0-8-7-2 3 7 7 3-3z'/%3E%3C/svg%3E"); }
.relax-icon--gym { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20h6v8H4v-8zm8-5h6v18h-6V15zm8 7h8v4h-8v-4zm10-7h6v18h-6V15zm8 5h6v8h-6v-8z'/%3E%3C/svg%3E"); }
.relax-icon--stone { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 34 18 14h12l10 20-7 8H15l-7-8zm10-1h12l-5-11h-2l-5 11z'/%3E%3C/svg%3E"); }
.relax-icon--route { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8a7 7 0 0 1 7 7c0 6-7 13-7 13S5 21 5 15a7 7 0 0 1 7-7zm24 12a7 7 0 0 1 7 7c0 6-7 13-7 13s-7-7-7-13a7 7 0 0 1 7-7zM12 13a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm24 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zM17 31c7-1 13 0 15-6l4 2c-4 9-13 7-18 8-4 1-5 3-4 6H9c-2-6 2-9 8-10z'/%3E%3C/svg%3E"); }
.relax-icon--narzan { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 4s12 14 12 26c0 9-5 14-12 14S12 39 12 30C12 18 24 4 24 4zm0 12c-4 6-6 11-6 15 0 4 2 7 6 7s6-3 6-7c0-4-2-9-6-15z'/%3E%3C/svg%3E"); }
.relax-icon--alley { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4c6 0 11 5 11 11 0 4-2 7-5 9v20h-6V24c-4-2-7-5-7-10C8 8 11 4 15 4zm19 4c5 0 9 4 9 9 0 4-2 7-6 9v18h-5V26c-4-2-6-5-6-9 0-5 3-9 8-9z'/%3E%3C/svg%3E"); }
.relax-icon--coffee { --relax-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 17h25v9c0 7-5 13-12 13S9 33 9 26v-9zm25 3h4a5 5 0 0 1 0 10h-4v-4h4a1 1 0 0 0 0-2h-4v-4zM10 42h26v4H10v-4zM17 3h4v10h-4V3zm9 0h4v10h-4V3z'/%3E%3C/svg%3E"); }

@media (max-width: 980px) {
  .relax-hero,
  .relax-photo-row {
    grid-template-columns: 1fr;
  }

  .relax-card-grid,
  .relax-nearby-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .relax-hero,
  .relax-section {
    width: min(100% - 28px, 560px);
  }

  .relax-card-grid,
  .relax-nearby-list {
    grid-template-columns: 1fr;
  }
}


/* Relax page feature sections */
.relax-hero__media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.relax-hero__media img:first-child,
.relax-hero__media img:last-child {
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
}

.relax-section {
  display: grid;
  gap: clamp(22px, 4vw, 38px);
}

.relax-feature {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(16, 42, 73, .07);
}

.relax-feature--nearby {
  background: rgba(255, 255, 255, .82);
}

.relax-feature__content {
  display: grid;
  align-content: center;
  justify-items: start;
}

.relax-feature__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 42, 73, .08);
}

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

.relax-feature h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.relax-feature p {
  max-width: 560px;
  margin: 0;
  color: rgba(16, 42, 73, .66);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.58;
}

.relax-feature__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.relax-feature__photos img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 24vw, 340px);
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(16, 42, 73, .09);
}

@media (max-width: 980px) {
  .relax-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .relax-hero__media,
  .relax-feature__photos {
    grid-template-columns: 1fr;
  }

  .relax-feature {
    padding: 14px;
  }

  .relax-feature__photos img {
    min-height: 220px;
  }
}


/* Relax page large background labels */
.relax-section {
  position: relative;
  isolation: isolate;
}

.relax-section::before {
  content: attr(data-relax-word);
  position: absolute;
  z-index: -1;
  top: clamp(-46px, -3vw, -20px);
  left: max(-8vw, -96px);
  color: rgba(16, 42, 73, .045);
  font-family: var(--display-font);
  font-size: clamp(58px, 11vw, 162px);
  font-weight: 300;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.relax-section--nearby::before {
  left: auto;
  right: max(-9vw, -112px);
  color: rgba(117, 82, 72, .055);
}

.relax-section__head,
.relax-feature {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .relax-section::before {
    left: -18px;
    top: -22px;
    max-width: calc(100vw - 28px);
    overflow: hidden;
    font-size: clamp(42px, 15vw, 78px);
  }

  .relax-section--nearby::before {
    left: -18px;
    right: auto;
  }
}


/* Relax page price badge */
.relax-feature__price {
  width: fit-content;
  margin: -2px 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(247, 155, 119, .32);
  border-radius: 6px;
  color: #755248;
  background: rgba(247, 155, 119, .12);
  font-size: 13px;
  font-weight: 800;
}


/* Privacy policy page */
.policy-page {
  background: #f8fbfc;
}

.policy-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0 clamp(24px, 4vw, 42px);
}

.policy-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: 0;
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(16, 42, 73, .68);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
}

.policy-doc {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 7vw, 96px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(16, 42, 73, .07);
}

.policy-doc h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.05;
}

.policy-doc__lead {
  margin: 0 0 26px;
  color: rgba(16, 42, 73, .74);
  font-size: 17px;
  line-height: 1.55;
}

.policy-doc h3 {
  margin: 34px 0 14px;
  color: #755248;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.18;
  text-transform: uppercase;
}

.policy-doc p {
  margin: 0 0 12px;
  color: rgba(16, 42, 73, .72);
  font-size: 16px;
  line-height: 1.72;
}

.policy-doc__point {
  padding-left: 16px;
  border-left: 2px solid rgba(247, 155, 119, .32);
}

.policy-doc__gap {
  height: 10px;
}

@media (max-width: 620px) {
  .policy-hero,
  .policy-doc {
    width: min(100% - 28px, 560px);
  }

  .policy-doc {
    padding: 20px;
  }
}


/* Contacts page legal entity */
.contacts-page .home-contacts {
  padding-top: clamp(42px, 6vw, 82px);
}

.legal-entity {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 7vw, 96px);
}

.legal-entity__inner {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(16, 42, 73, .07);
}

.legal-entity h2 {
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-family: var(--display-font);
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.legal-entity__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-entity__card p {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: #fff;
}

.legal-entity__card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(16, 42, 73, .54);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-entity__card strong {
  color: var(--blue-dark);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}

@media (max-width: 720px) {
  .legal-entity {
    width: min(100% - 28px, 560px);
  }

  .legal-entity__card {
    grid-template-columns: 1fr;
  }
}


/* Managed compact rating placements */
.rating-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.rating-strip__title {
  color: rgba(16, 42, 73, .58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(16, 42, 73, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .78);
  color: var(--blue-dark);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 42, 73, .06);
}

.rating-pill b {
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}

.rating-pill span,
.rating-pill small {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.rating-pill small {
  color: rgba(16, 42, 73, .52);
}

.rating-strip--micro {
  justify-content: flex-end;
  gap: 5px;
  margin-top: 5px;
}

.rating-strip--micro .rating-pill {
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 5px;
  box-shadow: none;
}

.rating-strip--micro .rating-pill span {
  font-size: 10px;
}

.rating-strip--micro .rating-pill b {
  font-size: 13px;
}

.mobile-rating-strip {
  justify-content: center;
  margin-top: 18px;
}

.mobile-rating-strip .rating-pill {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.mobile-rating-strip .rating-pill b {
  color: #fff;
}

.rooms-rating-strip,
.booking-rating-strip {
  margin-top: 18px;
}

.contacts-rating-section {
  width: min(1120px, calc(100% - 36px));
  margin: -54px auto clamp(34px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.contacts-rating-section__inner {
  width: fit-content;
  max-width: 100%;
  padding: 12px;
  border: 1px solid rgba(16, 42, 73, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(16, 42, 73, .08);
}

@media (max-width: 780px) {
  .rating-strip--compact {
    align-items: stretch;
  }

  .rating-strip--compact .rating-strip__title {
    width: 100%;
  }

  .contacts-rating-section {
    width: min(100% - 28px, 560px);
    margin-top: -32px;
  }
}

@media (max-width: 640px) {
  .header-rating-strip {
    display: none;
  }
}


/* Final ratings placement: full badges on pages, visible trust header */
.site-header {
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto auto auto !important;
}

.site-header .header-rating-panel {
  grid-column: 3 !important;
  grid-row: 1 !important;
  align-self: center !important;
  justify-self: end !important;
  min-width: 0 !important;
}

.site-header .header-contacts {
  grid-column: 4 !important;
}

.site-header .menu-toggle {
  grid-column: 5 !important;
}

.header-rating-widgets {
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(86px, 104px)) !important;
  gap: 6px !important;
}

.header-rating-widgets .rating-widget {
  min-height: 50px !important;
  padding: 7px 8px !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  column-gap: 6px !important;
}

.header-rating-widgets .rating-widget b {
  width: 26px !important;
  height: 26px !important;
  font-size: 11px !important;
}

.header-rating-widgets .rating-widget span {
  font-size: 7px !important;
}

.header-rating-widgets .rating-widget small {
  font-size: 8px !important;
}

.header-rating-widgets .rating-widget em {
  display: none !important;
}

.rooms-rating-widgets,
.booking-rating-widgets,
.contacts-rating-widgets {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.contacts-rating-section__inner {
  width: auto !important;
}

.contacts-rating-widgets {
  margin: 0 !important;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto auto auto !important;
    column-gap: 10px !important;
  }

  .header-rating-widgets {
    grid-template-columns: repeat(2, minmax(78px, 92px)) !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    display: grid !important;
    grid-template-columns: minmax(120px, .9fr) minmax(0, 1.1fr) auto !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: 6px 10px !important;
    min-height: 0 !important;
    padding: 9px clamp(10px, 3vw, 18px) !important;
  }

  .site-header .header-center,
  .site-header .main-nav {
    display: none !important;
  }

  .site-header .brand--image {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: block !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .site-header .brand__image {
    width: min(178px, 34vw) !important;
    max-height: 38px !important;
  }

  .site-header .brand__tagline {
    display: none !important;
  }

  .site-header .header-contacts {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: grid !important;
    justify-items: end !important;
    align-self: center !important;
    min-width: 0 !important;
    white-space: normal !important;
  }

  .site-header .header-contacts .phone-link {
    display: block !important;
    font-size: clamp(13px, 3.1vw, 18px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .site-header .hours-line {
    display: none !important;
  }

  .site-header .address-line {
    display: block !important;
    max-width: min(260px, 44vw) !important;
    overflow: hidden !important;
    color: rgba(16, 42, 73, .68) !important;
    font-size: clamp(9px, 2.1vw, 12px) !important;
    line-height: 1.15 !important;
    text-align: right !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .site-header .header-rating-panel {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: block !important;
    justify-self: stretch !important;
    width: 100% !important;
  }

  .header-rating-widgets {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .header-rating-widgets .rating-widget {
    min-height: 46px !important;
    padding: 6px 8px !important;
    border-radius: 7px !important;
  }

  .header-rating-widgets .rating-widget b {
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
  }

  .header-rating-widgets .rating-widget small {
    font-size: 8px !important;
  }

  .site-header .menu-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    width: 44px !important;
    height: 38px !important;
    padding: 8px 7px !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(94px, .78fr) minmax(0, 1.22fr) auto !important;
  }

  .site-header .header-contacts {
    display: grid !important;
  }

  .site-header .brand__image {
    width: min(142px, 31vw) !important;
    max-height: 34px !important;
  }

  .header-rating-widgets .rating-widget {
    min-height: 42px !important;
    padding: 5px 7px !important;
  }

  .header-rating-widgets .rating-widget span {
    font-size: 6px !important;
  }

  .header-rating-widgets .rating-widget small {
    font-size: 7px !important;
  }
}


/* Header ratings refinement */
.site-header .header-rating-panel {
  justify-self: end !important;
}

.header-rating-widgets {
  grid-template-columns: 112px !important;
  gap: 10px !important;
  width: 112px !important;
}

.header-rating-widgets .rating-widget {
  width: 112px !important;
  min-height: 54px !important;
  padding: 7px 8px !important;
}

.header-rating-widgets .rating-widget b {
  width: 28px !important;
  height: 28px !important;
  font-size: 11px !important;
}

.header-rating-widgets .rating-widget small {
  font-size: 8px !important;
}

.header-rating-widgets .rating-widget span {
  font-size: 7px !important;
}

body.menu-open .header-rating-panel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.menu-open .mobile-menu {
  z-index: 140 !important;
}

body.menu-open .menu-toggle {
  z-index: 150 !important;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(120px, .82fr) minmax(0, 1.18fr) auto !important;
  }

  .site-header .brand--image {
    align-self: start !important;
  }

  .site-header .brand__tagline {
    display: block !important;
    max-width: 180px !important;
    margin-top: 2px !important;
    color: rgba(16, 42, 73, .66) !important;
    font-size: clamp(9px, 2.2vw, 12px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .site-header .header-rating-panel {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    width: min(176px, 44vw) !important;
  }

  .header-rating-widgets {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .header-rating-widgets .rating-widget {
    width: 100% !important;
    min-height: 42px !important;
    padding: 5px 7px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand__tagline {
    max-width: 142px !important;
    font-size: 9px !important;
  }

  .site-header .header-rating-panel {
    width: min(150px, 42vw) !important;
  }

  .header-rating-widgets .rating-widget {
    min-height: 39px !important;
  }
}

/* Header ratings size and mobile menu close refinement */
.header-rating-widgets {
  width: 76px !important;
  grid-template-columns: 76px !important;
  gap: 8px !important;
}

.header-rating-widgets .rating-widget {
  width: 76px !important;
  min-height: 34px !important;
  padding: 3px 4px !important;
  column-gap: 4px !important;
  border-radius: 6px !important;
}

.header-rating-widgets .rating-widget b {
  width: 22px !important;
  height: 22px !important;
  font-size: 9px !important;
}

.header-rating-widgets .rating-widget span {
  font-size: 6px !important;
  line-height: 1 !important;
}

.header-rating-widgets .rating-widget small {
  font-size: 6px !important;
  line-height: 1 !important;
}

.header-rating-widgets .rating-widget em {
  display: none !important;
}

body.menu-open .menu-toggle {
  z-index: 200 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.menu-open .menu-toggle span {
  background: #fff !important;
  opacity: 1 !important;
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0 !important;
}

body.menu-open .mobile-menu {
  z-index: 180 !important;
}

@media (max-width: 920px) {
  .site-header .header-rating-panel {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    width: min(190px, 52vw) !important;
  }

  .header-rating-widgets {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 5px !important;
  }

  .header-rating-widgets .rating-widget {
    width: auto !important;
    min-height: 32px !important;
    padding: 3px 4px !important;
  }

  .header-rating-widgets .rating-widget b {
    width: 21px !important;
    height: 21px !important;
    font-size: 8px !important;
  }
}

@media (max-width: 640px) {
  .site-header .header-rating-panel {
    width: min(174px, 50vw) !important;
  }

  .header-rating-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 4px !important;
  }

  .header-rating-widgets .rating-widget {
    min-height: 30px !important;
    padding: 2px 3px !important;
  }

  .header-rating-widgets .rating-widget b {
    width: 20px !important;
    height: 20px !important;
    font-size: 8px !important;
  }

  .header-rating-widgets .rating-widget span,
  .header-rating-widgets .rating-widget small {
    font-size: 5.5px !important;
  }
}

/* fz */
#alert-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 50%;
  background-color: #337ab7;
  color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-family: Arial, sans-serif;
  font-size: 10px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
}

#alert-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.alert-content {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-left: 15%;
}

.alert-content p {
  margin: 0;
}

.alert-content a {
  text-decoration: underline;
  color: #fff !important;
}

.alert-content a:hover {
  color: #dddada !important;
}

#close-btn {
  flex: 0 0 auto;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

#close-btn:hover {
  background-color: #fff;
  color: #337ab7;
}

@media screen and (max-width: 800px) {
  #alert-banner {
    bottom: 100px;
    width: 100%;
  }

  .alert-content {
    width: calc(100% - 28px);
    margin-left: 0;
  }
}
/* end fz */
/* Editable phone note under site phones */
.site-footer__contacts .phone-note,
.home-contacts__item small {
  display: block;
  margin-top: 4px;
  color: var(--muted, rgba(255,255,255,0.72));
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.site-footer__contacts .phone-note {
  max-width: 220px;
}
/* Main CTA phone note */
.contact-cta__phone {
  display: grid;
  gap: 5px;
  justify-items: stretch;
}

.contact-cta__phone-note {
  display: block;
  max-width: 240px;
  text-align: center;
}

@media (max-width: 920px) {
  .contact-cta__phone {
    justify-items: start;
  }

  .contact-cta__phone-note {
    text-align: left;
  }
}
/* Stay info */
.stay-info {
  position: relative;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: #fffaf1;
  border-top: 1px solid rgba(31, 104, 77, 0.1);
  border-bottom: 1px solid rgba(31, 104, 77, 0.1);
}

.stay-info__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.stay-info__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 16px;
}

.stay-info__head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.stay-info__head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.stay-info__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(31, 104, 77, 0.14);
  border-radius: 8px;
  background: rgba(31, 104, 77, 0.14);
}

.stay-info__summary div {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 13px 18px;
  background: #f6f2e9;
}

.stay-info__summary strong {
  color: var(--green-dark);
  font-size: 23px;
  line-height: 1;
}

.stay-info__summary span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.stay-info__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.stay-info-card {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 12px;
  align-content: start;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(31, 104, 77, 0.12);
  border-radius: 8px;
  background: #fffdf8;
}

.stay-info-card--wide {
  grid-column: span 6;
}

.stay-info-card--half {
  grid-column: span 3;
}

.stay-info-card__icon {
  grid-area: icon;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: #edf3ec;
}

.stay-info-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stay-info-card__icon--parking,
.stay-info-card__icon--calendar {
  color: var(--blue);
  background: rgba(50, 111, 141, 0.12);
}

.stay-info-card__icon--no-pets,
.stay-info-card__icon--shield {
  color: var(--gold);
  background: rgba(185, 130, 54, 0.14);
}

.stay-info-card h3 {
  grid-area: title;
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
}

.stay-info-card p {
  grid-area: text;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.38;
}

.site-footer__registry {
  display: grid;
  gap: 5px;
  max-width: 360px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 62, 54, 0.14);
  color: #66726d;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer__registry strong {
  color: #24332e;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .stay-info__head {
    grid-template-columns: 1fr;
  }

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

  .stay-info-card {
    grid-column: span 1;
  }

  .stay-info-card--wide {
    grid-column: span 2;
  }

  .stay-info-card--half {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .stay-info {
    padding: 34px 18px;
  }

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

  .stay-info-card,
  .stay-info-card--wide,
  .stay-info-card--half {
    grid-column: span 1;
    min-height: 0;
  }
}

/* 404 page */
.error-page {
  display: grid;
  min-height: 66vh;
  place-items: center;
  padding: clamp(64px, 10vw, 120px) 20px;
  background:
    radial-gradient(circle at 18% 22%, rgba(185, 130, 54, 0.12), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(31, 104, 77, 0.12), transparent 38%),
    #f8f4ec;
}

.error-page__inner {
  width: min(760px, 100%);
  text-align: center;
}

.error-page__inner .eyebrow {
  margin-bottom: 4px;
}

.error-page__code {
  color: rgba(31, 104, 77, 0.12);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(120px, 24vw, 250px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.error-page h1 {
  margin: -0.18em 0 18px;
  color: var(--green-dark);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
}

.error-page__text {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 560px) {
  .error-page__actions .btn {
    width: 100%;
  }
}
