@charset "UTF-8";

:root {
  --dark: #0f2f1e;
  --dark-soft: #173923;
  --green: #1e462b;
  --cream: #fbf7ef;
  --cream-2: #f2eadc;
  --paper: #fffdf8;
  --text: #211f1a;
  --muted: #716b60;
  --line: #e9dfcf;
  --line-dark: rgba(33, 31, 26, .16);
  --white: #fff;
  --shadow: 0 22px 70px rgba(34, 31, 25, .14);
  --container: min(1104px, calc(100vw - 100px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffdf8;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.site {
  width: 100%;
  max-width: 1240px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.btn {
  min-height: 42px;
  padding: 0 23px;
  border: 0;
  border-radius: 10px;
  background: var(--dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.btn:hover {
  background: #082315;
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: default;
  opacity: .72;
  transform: none;
}

.btn--header {
  width: auto;
  height: 38px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: 10px;
}

.btn--light {
  min-height: 34px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--white);
  color: var(--dark);
  font-size: 11px;
}

.btn--light:hover {
  background: #f6f0e7;
}

.topbar {
  height: 71px;
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.topbar .brand {
  transform: translateX(-2px);
}

.brand__logo {
  width: 150px;
  height: auto;
  opacity: .9;
  filter: brightness(0) saturate(100%) invert(15%) sepia(37%) saturate(703%) hue-rotate(92deg) brightness(91%) contrast(95%);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
}

.main-nav a {
  color: #171714;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav span {
  font-size: 10px;
  margin-left: 2px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 22px;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 40;
  width: 184px;
  padding: 8px;
  border: 1px solid rgba(15,47,30,.10);
  border-radius: 10px;
  background: rgba(255,253,248,.96);
  box-shadow: 0 18px 50px rgba(34, 31, 25, .15);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(15,47,30,.10);
  border-top: 1px solid rgba(15,47,30,.10);
  background: rgba(255,253,248,.96);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  min-height: 50px;
  padding: 9px 10px;
  border-radius: 8px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: rgba(15,47,30,.07);
}

.nav-dropdown__menu strong {
  color: var(--dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.nav-dropdown__menu small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(33,31,26,.14);
  border-radius: 50%;
  background: rgba(255,253,248,.72);
  color: var(--dark);
  display: grid;
  place-items: center;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.header-social:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.header-social svg {
  width: 16px;
  height: 16px;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #11110f;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.phone svg {
  width: 15px;
  height: 15px;
}

.lang {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  color: var(--text);
}

.menu-btn {
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  display: none;
  padding: 0;
}

.menu-btn span {
  width: 16px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: var(--text);
  display: block;
}

.mobile-nav {
  display: none;
}

.hero {
  height: 464px;
  margin-top: -71px;
  position: relative;
  z-index: 4;
  background:
    linear-gradient(90deg, #fffdf8 0%, rgba(255,253,248,.96) 27%, rgba(255,253,248,.56) 45%, rgba(255,253,248,.14) 64%, rgba(255,253,248,0) 100%),
    linear-gradient(180deg, rgba(255,253,248,0) 0%, rgba(255,253,248,0) 76%, #fffdf8 99%);
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 464px;
  background: url("../img/hero-pool-design.webp") center center / cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  height: 76px;
  background: var(--paper);
  clip-path: ellipse(72% 100% at 50% 100%);
  z-index: 1;
}

.hero__visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fffdf8 0%, rgba(255,253,248,.98) 28%, rgba(255,253,248,.70) 44%, rgba(255,253,248,.18) 62%, rgba(255,253,248,0) 100%),
    radial-gradient(ellipse at 42% 63%, rgba(221, 197, 160, .20), rgba(255, 253, 248, 0) 34%),
    linear-gradient(180deg, rgba(255,253,248,0) 0%, rgba(255,253,248,.38) 91%, #fffdf8 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  width: var(--container);
  margin: 0 auto;
  padding-top: 118px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 390px;
  margin: 0 0 19px;
  font-family: var(--serif);
  font-size: 45px;
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 400;
}

.hero__lead {
  max-width: 377px;
  margin: 0 0 22px;
  color: #3d3932;
  font-size: 13px;
  line-height: 1.65;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 13px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2d2b26;
  font-size: 12px;
  font-weight: 700;
}

.hero-features svg {
  width: 22px;
  height: 22px;
  color: var(--dark);
  flex: 0 0 auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__actions .btn {
  padding: 0 17px;
  font-size: 11px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #22201b;
  font-size: 12px;
  font-weight: 700;
}

.video-link__icon {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(33,31,26,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
  padding-left: 2px;
}

.booking {
  position: absolute;
  left: calc((100% - var(--container)) / 2 + var(--container) - 556px);
  top: 388px;
  width: 556px;
  border-radius: 9px;
  background: var(--white);
  overflow: visible;
  box-shadow: var(--shadow);
  z-index: 30;
}

.booking__head {
  height: 42px;
  padding: 0 21px;
  border-radius: 9px 9px 0 0;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.booking__body {
  height: 65px;
  padding: 0 18px 0 20px;
  border-radius: 0 0 9px 9px;
  background: var(--white);
  display: grid;
  grid-template-columns: 125px 125px 1fr 90px;
  align-items: center;
}

.booking-field {
  min-width: 0;
  height: 42px;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 7px;
}

.booking-field span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.booking-field input,
.booking-field__value {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  appearance: none;
}

.booking-field__value {
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.booking-field__value span {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.booking-field input[readonly] {
  cursor: pointer;
}

.booking-field--guests {
  padding-right: 10px;
  margin-right: 10px;
}

.btn--check {
  width: 90px;
  height: 36px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 1;
}

.date-picker {
  position: absolute;
  left: 18px;
  top: calc(100% + 10px);
  width: 286px;
  padding: 14px;
  border: 1px solid rgba(15,47,30,.12);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 22px 60px rgba(34, 31, 25, .18);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}

.guests-picker {
  position: absolute;
  left: 18px;
  top: calc(100% + 10px);
  width: 318px;
  padding: 15px;
  border: 1px solid rgba(15,47,30,.12);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 22px 60px rgba(34, 31, 25, .18);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}

.date-picker.is-open,
.guests-picker.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.date-picker::before,
.guests-picker::before {
  content: "";
  position: absolute;
  left: var(--date-arrow-left, var(--guests-arrow-left, 34px));
  top: -6px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(15,47,30,.12);
  border-top: 1px solid rgba(15,47,30,.12);
  background: #fffdf8;
  transform: rotate(45deg);
}

.guests-picker::before {
  left: var(--guests-arrow-left, 34px);
}

.guests-picker__row {
  min-height: 58px;
  padding: 0 0 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.guests-picker__row strong,
.guests-pets strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.guests-picker__row span,
.guests-pets small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.guests-counter {
  display: inline-grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  gap: 6px;
}

.guests-counter button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.guests-counter button:disabled {
  color: #b6ab9b;
  cursor: default;
  opacity: .55;
}

.guests-counter output {
  color: var(--text);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.guests-pets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.guests-pets input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.guests-pets i {
  position: relative;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  transition: background .18s ease, border-color .18s ease;
}

.guests-pets i::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #cfc5b6;
  transition: transform .18s ease, background .18s ease;
}

.guests-pets input:checked + i {
  border-color: var(--dark);
  background: var(--dark);
}

.guests-pets input:checked + i::before {
  background: var(--white);
  transform: translateX(20px);
}

.date-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

.date-picker__head strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: capitalize;
}

.date-picker__nav {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.date-picker__week,
.date-picker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.date-picker__week {
  margin-bottom: 7px;
}

.date-picker__week span {
  color: var(--muted);
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.date-picker__day {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  isolation: isolate;
}

.date-picker__day::before {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 28px;
  background: rgba(15,47,30,.10);
  transform: translateY(-50%);
  opacity: 0;
  z-index: -1;
}

.date-picker__day:hover {
  background: #f1e9dc;
}

.date-picker__day.is-muted {
  color: #b6ab9b;
}

.date-picker__day.is-selected {
  background: var(--dark);
  color: var(--white);
}

.date-picker__day.is-in-range {
  border-radius: 0;
  background: transparent;
  color: var(--dark);
}

.date-picker__day.is-in-range::before,
.date-picker__day.is-range-start::before,
.date-picker__day.is-range-end::before {
  opacity: 1;
}

.date-picker__day.is-range-start::before {
  left: 50%;
}

.date-picker__day.is-range-end::before {
  right: 50%;
}

.date-picker__day.is-selected {
  z-index: 1;
}

.date-picker__day.is-today:not(.is-selected) {
  outline: 1px solid rgba(15,47,30,.35);
}

.benefits {
  position: relative;
  z-index: 3;
  padding: 71px 0 10px;
}

.benefits__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 31px 29px 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, .9);
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -8px 34px rgba(34, 31, 25, .07);
}

.benefit {
  min-height: 55px;
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 11px;
  padding: 0 17px;
  border-right: 1px solid var(--line);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit svg {
  width: 28px;
  height: 28px;
  color: var(--dark);
}

.benefit h3 {
  margin: 0 0 5px;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 900;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.section {
  width: var(--container);
  margin: 0 auto;
}

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

.eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 900;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 400;
}

.section-link {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.booking-results {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 26px;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.booking-results.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.booking-results__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 30, .38);
  backdrop-filter: blur(3px);
}

.booking-results__dialog {
  position: relative;
  width: min(1104px, calc(100vw - 52px));
  max-height: calc(100vh - 52px);
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,253,248,.96) 120px),
    var(--paper);
  box-shadow: 0 30px 90px rgba(18, 33, 22, .32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(.985);
  transition: transform .22s ease;
}

.booking-results.is-visible .booking-results__dialog {
  transform: translateY(0) scale(1);
}

.booking-results__summary {
  flex: 0 0 auto;
  margin: 0;
  padding: 28px 78px 20px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.booking-results__scroll {
  min-height: 0;
  padding: 0 28px 28px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.booking-results__steps {
  flex: 0 0 auto;
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.booking-results__steps button {
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  background: #f5f0e7;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.booking-results__steps button.is-active {
  background: var(--dark);
  color: #fff;
}

.booking-results__parameters {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.booking-results__parameters[hidden] {
  display: none;
}

.booking-results__parameters-head h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font: 400 31px/1.08 var(--serif);
}

.booking-results__parameters-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.booking-results__parameter-grid {
  margin: 24px 0 18px;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr .8fr .8fr 1fr;
  gap: 12px;
}

.booking-results__parameter-grid label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
}

.booking-results__parameter-grid input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--text);
  font: inherit;
}

.booking-results__pets {
  min-height: 48px;
  align-self: end;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  display: flex!important;
  align-items: center;
  justify-content: space-between;
  gap: 10px!important;
  cursor: pointer;
}

.booking-results__pets>span {
  display: grid;
  gap: 2px;
}

.booking-results__pets b {
  font-size: 11px;
}

.booking-results__pets small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.booking-results__pets input {
  position: absolute;
  width: 1px;
  min-height: 0;
  opacity: 0;
}

.booking-results__pets i {
  width: 39px;
  height: 23px;
  flex: 0 0 39px;
  padding: 3px;
  border-radius: 999px;
  background: #d8d0c3;
  transition: .2s;
}

.booking-results__pets i::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px #0002;
  transition: .2s;
}

.booking-results__pets input:checked+i {
  background: var(--dark);
}

.booking-results__pets input:checked+i::before {
  transform: translateX(16px);
}

.booking-results__parameters-submit {
  width: 100%;
  justify-content: center;
}

.booking-results__summary h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 400;
}

.booking-results__meta {
  min-width: 265px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.76);
  display: grid;
  gap: 5px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.booking-results__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.booking-results__meta span + span {
  color: var(--muted);
  font-size: 11px;
}

.booking-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.booking-results__grid[hidden],
.booking-results__summary[hidden],
.booking-order[hidden],
.booking-order__layout[hidden] {
  display: none !important;
}

.booking-results__message {
  grid-column: 1 / -1;
  min-height: 220px;
  padding: 42px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.76);
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
}

.booking-results__message strong {
  color: var(--dark);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.booking-results__message p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.booking-results__message--error {
  border-color: rgba(150, 55, 45, .25);
}

.booking-result {
  min-height: 0;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.76);
  overflow: hidden;
  display: grid;
  grid-template-rows: 174px 1fr;
  box-shadow: 0 16px 42px rgba(34, 31, 25, .08);
}

.booking-result__image {
  min-height: 174px;
  background-size: cover;
  background-position: center;
}

.booking-result__image--hotel {
  background-image: url("../img/stay-hotel.webp");
}

.booking-result__image--cottage {
  background-image: url("../img/stay-cottage.webp");
}

.booking-result__image--house {
  background-image: url("../img/stay-house.webp");
}

.booking-result__content {
  min-height: 246px;
  min-width: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.booking-result__content span {
  width: fit-content;
  margin-bottom: 9px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(15,47,30,.08);
  color: var(--dark);
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-result--best .booking-result__content span {
  background: var(--dark);
  color: var(--white);
}

.booking-result__content h3 {
  margin: 0 0 7px;
  min-height: 2.1em;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 400;
}

.booking-result__content p {
  margin: 0 0 14px;
  min-height: 2.9em;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.booking-result__details {
  margin-top: auto;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.booking-result__details b {
  color: var(--muted);
  font-size: 11px;
}

.booking-result__details strong {
  color: var(--dark);
  font-size: 15px;
  white-space: nowrap;
}

.booking-result .btn {
  min-height: 36px;
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  font-size: 10px;
}

.booking-order {
  padding: 8px 0 2px;
}

.booking-order__back {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.booking-order__layout {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(360px, 1.25fr);
  gap: 28px;
}

.booking-order__summary {
  padding: 24px;
  border-radius: 10px;
  background: var(--dark);
  color: var(--white);
}

.booking-order__summary .eyebrow {
  color: rgba(255,255,255,.68);
}

.booking-order__summary h3 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;
}

.booking-order__summary p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.booking-order__summary strong {
  font-size: 20px;
}

.booking-order__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-order__form label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
}

.booking-order__form input,
.booking-order__form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.booking-order__wide {
  grid-column: 1 / -1;
}

.booking-order__honeypot {
  position: absolute;
  left: -10000px;
}

.booking-order__error {
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(150, 55, 45, .1);
  color: #89382f;
  font-size: 12px;
  font-weight: 700;
}

.booking-order__success {
  min-height: 330px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.booking-order__success[hidden] {
  display: none;
}

.booking-order__success > span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.booking-order__success h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.booking-order__success p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .booking-order__layout,
  .booking-order__form {
    grid-template-columns: 1fr;
  }

  .booking-order__wide {
    grid-column: auto;
  }
}

.date-picker__day.is-disabled,
.date-picker__day:disabled {
  opacity: .28;
  cursor: not-allowed;
}

.stays {
  padding: 0 0 22px;
}

.stays__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stay-card {
  min-height: 258px;
  aspect-ratio: 1.13;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 0 21px 19px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.stay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 16%, rgba(0,0,0,.44) 48%, rgba(0,0,0,.94) 100%);
  z-index: -1;
}

.stay-card--hotel {
  background-image: url("../img/stay-hotel.webp");
}

.stay-card--cottage {
  background-image: url("../img/stay-cottage.webp");
}

.stay-card--house {
  background-image: url("../img/stay-house.webp");
}

.stay-card__icon {
  position: absolute;
  left: 22px;
  top: 98px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.93);
  color: var(--dark);
  display: grid;
  place-items: center;
}

.stay-card__icon svg {
  width: 25px;
  height: 25px;
}

.stay-card__content {
  max-width: 210px;
  display: grid;
}

.stay-card__content strong {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}

.stay-card__content em {
  margin-bottom: 14px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 600;
}

.stay-card__content b {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.stay-card__arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  width: 36px;
  height: 36px;
  padding: 0 0 2px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.restaurant {
  width: var(--container);
  min-height: 238px;
  margin: 0 auto 24px;
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 430px 1fr;
  background: var(--dark);
}

.restaurant__info {
  position: relative;
  min-width: 0;
  padding: 28px 32px 24px 116px;
  color: #fff;
}

.restaurant__decor {
  position: absolute;
  left: 32px;
  top: 30px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.restaurant__decor-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  opacity: .46;
}

.restaurant__info .eyebrow {
  color: rgba(255,255,255,.75);
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
  margin-bottom: 5px;
}

.restaurant__info h2 {
  max-width: 280px;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.restaurant__info p {
  max-width: 225px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  line-height: 1.45;
}

.restaurant__photo {
  min-width: 0;
  background: url("../img/restaurant-photo.webp") center / cover no-repeat;
}

.blog {
  padding: 5px 0 37px;
}

.blog .section__head {
  margin-bottom: 21px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}

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

.blog-card__body {
  min-height: 94px;
  padding: 17px 15px 15px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
}

.blog-date {
  width: 40px;
  height: 50px;
  border-radius: 6px;
  background: var(--cream-2);
  display: grid;
  justify-items: center;
  align-content: center;
}

.blog-date strong {
  color: #1c1a16;
  font-size: 16px;
  line-height: 1;
}

.blog-date span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}

.blog-card h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  color: #1d1b17;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 900;
}

.blog-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.blog-card a {
  color: var(--dark);
  font-size: 10px;
  font-weight: 900;
}

.blog-card h3 a {
  color: inherit;
  font: inherit;
}

.blog-card__image-link {
  display: block;
  line-height: 0;
}

.blog__empty {
  grid-column: 1 / -1;
  padding: 35px;
  border: 1px dashed var(--line);
  border-radius: 9px;
  color: var(--muted);
  text-align: center;
}

.footer {
  position: relative;
  min-height: 146px;
  padding: 29px 0 15px;
  background:
    linear-gradient(180deg, rgba(242,234,220,.92), rgba(242,234,220,.92)),
    radial-gradient(ellipse at 50% 120%, rgba(92,105,77,.20), transparent 52%);
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 152px;
  height: 78px;
  background:
    linear-gradient(to top, rgba(91,105,85,.23), rgba(91,105,85,0));
  clip-path: polygon(6% 100%, 12% 55%, 18% 100%, 25% 35%, 35% 100%, 43% 48%, 50% 100%, 58% 28%, 67% 100%, 75% 45%, 84% 100%, 91% 58%, 98% 100%);
  pointer-events: none;
}

.footer::before {
  left: 0;
}

.footer::after {
  right: 0;
  transform: scaleX(-1);
}

.footer__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 118px 126px 136px 1fr;
  gap: 28px;
}

.footer .brand__logo {
  width: 154px;
  opacity: .94;
}

.footer__brand p,
.footer-col p {
  margin: 13px 0 0;
  color: #4f4a42;
  font-size: 10px;
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}

.socials a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ddd3c4;
  color: #353028;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.socials a:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.socials svg {
  width: 14px;
  height: 14px;
}

.footer-col h3 {
  margin: 3px 0 15px;
  font-family: var(--sans);
  color: #38332c;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.footer-col a {
  display: block;
  margin: 0 0 9px;
  color: #3f3a32;
  font-size: 10px;
  line-height: 1.2;
}

.footer-col .footer-btn {
  width: 112px;
  min-height: 31px;
  margin-top: 8px;
  border-radius: 6px;
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  display: inline-flex;
}

.footer__copy {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 18px auto 0;
  color: #6c665d;
  text-align: center;
  font-size: 10px;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.menu-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 18, .62);
  backdrop-filter: blur(7px);
}

.menu-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  height: min(86vh, 820px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 34px 110px rgba(5, 18, 11, .36);
  transform: translateY(16px) scale(.985);
  transition: transform .22s ease;
}

.menu-modal.is-open .menu-modal__dialog {
  transform: translateY(0) scale(1);
}

.menu-modal__head {
  height: 62px;
  padding: 0 16px 0 22px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-modal__head span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 800;
}

.menu-modal__head strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.menu-modal__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-modal__link {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 7px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.menu-modal__pages {
  width: 100%;
  height: calc(100% - 62px);
  padding: 20px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(15,47,30,.06), rgba(15,47,30,0) 120px),
    #f5efe5;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.menu-modal__pages img {
  width: min(100%, 720px);
  height: auto;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(35, 31, 23, .18);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(255,255,255,.08), rgba(255,255,255,0) 42%),
    rgba(5, 16, 10, .82);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  width: min(100%, 1080px);
  height: calc(100vh - 52px);
  display: grid;
  place-items: center;
  transform: translateY(14px) scale(.985);
  transition: transform .22s ease;
}

.video-modal.is-open .video-modal__dialog {
  transform: translateY(0) scale(1);
}

.video-modal__media {
  width: auto;
  height: auto;
  max-width: min(100%, calc((100vh - 52px) * .5625));
  max-height: calc(100vh - 52px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 34px 110px rgba(0,0,0,.48);
}

.video-modal__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(255,253,248,.92);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

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

@media (min-width: 1025px) {
  .site {
    box-shadow: 0 20px 90px rgba(34,31,25,.10);
  }
}

@media (max-width: 980px) {
  :root {
    --container: calc(100vw - 40px);
  }

  .site {
    max-width: none;
  }

  .topbar {
    width: var(--container);
  }

  .main-nav,
  .topbar__actions {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    width: auto;
    margin: 0 auto;
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    z-index: 50;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: 0 18px 60px rgba(0,0,0,.14);
    display: none;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .mobile-nav a:not(.btn) {
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-nav__submenu {
    margin: -4px 0 2px 10px;
    padding-left: 13px;
    border-left: 1px solid rgba(15,47,30,.16);
    display: grid;
    gap: 9px;
  }

  .mobile-nav__submenu a:not(.btn) {
    color: var(--muted);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
  }

  .mobile-nav__submenu a:hover,
  .mobile-nav__submenu a:focus-visible {
    color: var(--dark);
  }

  .hero {
    height: auto;
    min-height: 690px;
    margin-top: -71px;
    padding-bottom: 38px;
  }

  .hero::before {
    width: 100%;
    height: 100%;
    opacity: .76;
    background-position: 62% top;
  }

  .hero::after {
    bottom: -18px;
  }

  .hero__content {
    padding-top: 116px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 8vw, 72px);
  }

  .booking {
    position: relative;
    left: auto;
    top: auto;
    width: var(--container);
    margin: 34px auto 0;
  }

  .booking__body {
    height: auto;
    min-height: 74px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
  }

  .booking-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .booking-field--guests {
    margin-right: 0;
    padding-right: 0;
  }

  .btn--check {
    width: 100%;
    height: 42px;
  }

  .date-picker,
  .guests-picker {
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    width: auto;
  }

  .benefits {
    padding-top: 42px;
  }

  .benefits__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .benefit,
  .benefit:first-child,
  .benefit:last-child {
    border-right: 0;
    padding: 0;
  }

  .booking-results__summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .booking-results__meta {
    width: 100%;
    min-width: 0;
  }

  .booking-results__grid,
  .stays__grid,
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
  }

  body {
    font-size: 14px;
  }

  .topbar {
    height: 68px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero::before {
    height: 460px;
    opacity: .82;
    background-position: 64% top;
  }

  .hero__visual {
    background:
      linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.82) 45%, rgba(255,253,248,.34) 100%),
      linear-gradient(180deg, rgba(255,253,248,.08) 0%, rgba(255,253,248,.46) 58%, #fffdf8 100%);
  }

  .hero__content {
    padding-top: 98px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: 42px;
    line-height: 1.06;
  }

  .hero__lead {
    max-width: 335px;
    margin-bottom: 19px;
    font-size: 13px;
  }

  .hero-features {
    gap: 11px;
    margin-bottom: 22px;
  }

  .hero__actions {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .hero__actions .btn {
    width: auto;
  }

  .booking {
    margin-top: 28px;
  }

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

  .benefits {
    padding: 34px 0 26px;
  }

  .benefits__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit {
    min-height: auto;
  }

  .benefit h3 {
    font-size: 13px;
  }

  .benefit p {
    font-size: 12px;
  }

  .section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section h2 {
    font-size: 31px;
  }

  .section-link {
    margin-bottom: 0;
  }

  .booking-results__grid,
  .stays__grid,
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stays__grid {
    width: 100%;
  }

  .booking-results__summary h2 {
    font-size: 30px;
  }

  .booking-results {
    display: grid;
    padding: 0;
    overflow: hidden;
  }

  .booking-results__dialog {
    width: calc(100% - 44px);
    max-height: calc(100vh - 28px);
    margin: 14px auto;
    padding: 0;
  }

  .booking-results__summary {
    position: relative;
    padding: 20px 62px 18px 20px;
  }

  .booking-results__scroll {
    padding: 0 20px 20px;
  }

  .booking-results__steps {
    padding: 10px 20px;
    gap: 5px;
  }

  .booking-results__steps button {
    padding: 8px 5px;
    font-size: 8px;
  }

  .booking-results__parameters {
    padding: 18px;
  }

  .booking-results__parameter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-results__close {
    position: absolute;
    right: 18px;
    top: 18px;
    order: -1;
    width: 34px;
    height: 34px;
  }

  .booking-result {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 170px 1fr;
  }

  .booking-result__image {
    min-height: 170px;
  }

  .booking-result__details {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .stay-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 294px;
    aspect-ratio: auto;
  }

  .stay-card__icon {
    top: 104px;
  }

  .restaurant {
    width: var(--container);
    height: auto;
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .restaurant__info {
    min-height: auto;
    padding: 26px 28px 22px;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .restaurant__info .btn {
    position: static;
    width: max-content;
    margin: 12px auto 0;
    transform: none;
  }

  .restaurant__info .btn:hover {
    transform: translateY(-1px);
  }

  .restaurant__photo {
    min-height: 190px;
  }

  .restaurant__decor {
    position: static;
    width: 58px;
    height: 58px;
    margin: 0 auto 6px;
  }

  .restaurant__decor-logo {
    width: 56px;
    height: 56px;
  }

  .restaurant__info h2 {
    max-width: 260px;
  }

  .restaurant__info p {
    max-width: 260px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .blog {
    padding-bottom: 32px;
  }

  .blog-card img {
    height: 150px;
  }

  .footer {
    padding-top: 34px;
  }

  .footer__inner {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__copy {
    width: var(--container);
    text-align: left;
  }

  .footer-col h3 {
    margin-bottom: 10px;
  }

  .menu-modal {
    padding: 12px;
  }

  .menu-modal__dialog {
    height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .menu-modal__head {
    height: auto;
    min-height: 64px;
    padding: 12px;
    align-items: flex-start;
  }

  .menu-modal__head strong {
    font-size: 19px;
  }

  .menu-modal__link {
    display: none;
  }

  .menu-modal__pages {
    height: calc(100% - 64px);
    padding: 12px;
    gap: 12px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal__dialog {
    width: 100%;
    height: calc(100vh - 24px);
  }

  .video-modal__media {
    max-width: min(100%, calc((100vh - 24px) * .5625));
    max-height: calc(100vh - 24px);
    border-radius: 10px;
  }

  .video-modal__close {
    right: 8px;
    top: 8px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .mobile-nav {
    left: 8px;
    right: 8px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .video-link {
    justify-content: flex-start;
    gap: 8px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero__actions .btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
    white-space: nowrap;
  }

  .video-link__icon {
    width: 36px;
    height: 36px;
  }

  .stay-card {
    width: 100%;
    height: 270px;
    padding-left: 19px;
    padding-right: 19px;
  }

  .stay-card__icon {
    top: 92px;
  }

  .stay-card__content strong {
    font-size: 27px;
  }

  .blog-card__body {
    grid-template-columns: 44px 1fr;
  }

  .restaurant__info {
    padding-left: 24px;
    padding-right: 24px;
  }
}
/* Branded scrollbars */
html {
  scrollbar-color: #416455 #eee8dd;
  scrollbar-width: thin;
}

* {
  scrollbar-color: #416455 #eee8dd;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #eee8dd;
}

*::-webkit-scrollbar-thumb {
  min-height: 44px;
  border: 2px solid #eee8dd;
  border-radius: 999px;
  background: #416455;
}

*::-webkit-scrollbar-thumb:hover {
  background: #173f2e;
}

*::-webkit-scrollbar-corner {
  background: #eee8dd;
}
