/* -------------------------------------------------------------------------- */
/*  Local fonts: Aznauri Round + Manrope                                      */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "Aznauri Round";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/aznauri/AznauriRoundRegular.ttf") format("truetype");
}

@font-face {
  font-family: "Aznauri Round";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/aznauri/AznauriRoundBold.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope/manrope-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope/manrope-medium.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope/manrope-semibold.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope/manrope-bold.ttf") format("truetype");
}

/* -------------------------------------------------------------------------- */
/*  Reset                                                                     */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-padding-top: var(--site-header-offset);
}

body {
  min-height: 100vh;
  padding-top: var(--site-header-offset);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  background: #f4f6f2;
  color: #000;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.login-page__control.is-invalid,
.room-payment-modal__control.is-invalid,
.room-booking__control.is-invalid,
.contacts-info__control.is-invalid,
.account-settings__control.is-invalid,
.booking-filters__control.is-invalid {
  border-color: #c0392b !important;
}

.password-field {
  position: relative;
  display: block;
  min-width: 0;
  max-width: 100%;
}

.password-field .login-page__control,
.password-field .account-settings__control {
  padding-right: 88px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.password-field__toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding: 0;
  border: 0;
  background: none;
  color: #5f8f4e;
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.password-field__toggle:hover {
  color: #3a5c2b;
}

.password-field__toggle:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.55);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------- */
/*  Design tokens (Figma Header 514:113)                                      */
/* -------------------------------------------------------------------------- */
:root {
  --header-bg: #ffffff;
  --header-shadow: 0 4px 4px rgba(66, 104, 53, 0.25);
  --text-nav: #000000;
  --btn-primary-bg: #5f8f4e;
  --btn-primary-text: #ffffff;
  --btn-ghost-bg: #ffffff;
  --btn-ghost-text: #72a35b;
  --btn-ghost-shadow: 0 0 3px rgba(95, 143, 78, 1);
  --radius-btn: 15px;
  --pad-btn-y: 16px;
  --pad-btn-x: 51px;
  --gap-nav: 40px;
  --gap-actions: 30px;
  --actions-width: 428px;
  --header-pad-y: 15px;
  --header-pad-x: 240px;
  --site-header-offset: calc(68px + var(--header-pad-y) * 2);
  --font-nav: 400 20px / 1 "Aznauri Round", "Times New Roman", Times, serif;
  --font-btn: 700 20px / 1 "Aznauri Round", "Times New Roman", Times, serif;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.55s;
  --dur-fast: 0.35s;

  /* Hero (Figma 303:1727) */
  --hero-pad-x: 240px;
  --hero-min-h: 900px;
  --hero-content-w: 556px;
  --hero-booking-w: 703px;
  --hero-gap-intro: 40px;
  --hero-gap-cta: 50px;
  --hero-gap-actions: 20px;
  --hero-gap-stars: 40px;
  --hero-gap-titles: 10px;
  --hero-form-pad-y: 50px;
  --hero-form-pad-x: 40px;
  --card-pad-desktop-y: 40px;
  --card-pad-desktop-x: 50px;
  --hero-form-gap: 30px;
  --hero-form-stack: 50px;
  --hero-field-gap: 30px;
  --hero-label-field-gap: 10px;
  --hero-input-border: #87b86a;
  --hero-icon-stroke: #3a5c2b;
  --hero-accent-mint: #a5d67e;
  --hero-booking-shadow: 0 0 3px rgba(66, 104, 53, 1);
  --hero-scrim: rgba(0, 0, 0, 0.5);
  --font-manrope: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --color-mint-bg: #f6ffee;
  --shadow-card-bottom: 0 4px 0 rgba(95, 143, 78, 0.35);
  --shadow-card-hover: 0 8px 24px rgba(66, 104, 53, 0.1);
  --shadow-card-hover-bottom: 0 8px 24px rgba(66, 104, 53, 0.1),
    0 4px 0 rgba(95, 143, 78, 0.35);
}

/* -------------------------------------------------------------------------- */
/*  Keyframes                                                                 */
/* -------------------------------------------------------------------------- */
@keyframes site-header-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes text-soft-in {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reviews-star-pop {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes reviews-star-fill-in {
  from {
    opacity: 0.45;
    transform: scale(0.78);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes reviews-reveal-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------------------------------------- */
/*  Site header                                                               */
/* -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: var(--header-bg);
  box-shadow: var(--header-shadow);
  animation: site-header-reveal 0.85s var(--ease-premium) both;
}

.site-header__inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: var(--header-pad-y) var(--header-pad-x);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "brand drawer";
  align-items: center;
  column-gap: 40px;
  min-height: calc(68px + var(--header-pad-y) * 2);
}

.site-header__drawer {
  grid-area: drawer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
}

.site-header__drawer .site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.site-header__drawer .site-header__actions {
  flex: 0 0 var(--actions-width);
  width: var(--actions-width);
  max-width: var(--actions-width);
}

.site-header__brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
  will-change: transform;
}

.site-header__brand:hover {
  transform: scale(1.03);
}

.site-header__brand:active {
  transform: scale(0.99);
  opacity: 0.92;
}

.site-header__logo {
  width: 107px;
  height: 68px;
  object-fit: contain;
  transition: transform var(--dur) var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.site-header__brand:hover .site-header__logo {
  transform: translateZ(0) scale(1.02);
  filter: saturate(1.05);
}

.site-header__nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.site-header__nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap-nav);
}

.site-header__nav-item {
  animation: text-soft-in 0.75s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium);
}

.site-header__nav-item:nth-child(1) {
  animation-delay: 0.06s;
}
.site-header__nav-item:nth-child(2) {
  animation-delay: 0.1s;
}
.site-header__nav-item:nth-child(3) {
  animation-delay: 0.14s;
}
.site-header__nav-item:nth-child(4) {
  animation-delay: 0.18s;
}
.site-header__nav-item:nth-child(5) {
  animation-delay: 0.22s;
}
.site-header__nav-item:nth-child(6) {
  animation-delay: 0.26s;
}

.site-header__nav-item:hover {
  transform: translateY(-2px) scale(1.02);
}

.site-header__nav-link {
  font: var(--font-nav);
  color: var(--text-nav);
  display: inline-flex;
  padding-block: 4px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(95, 143, 78, 0.45);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
  opacity: 0;
}

.site-header__nav-link:hover {
  opacity: 0.88;
}

.site-header__nav-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--gap-actions);
  flex-wrap: nowrap;
  animation: text-soft-in 0.8s var(--ease-premium) 0.12s both;
}

.site-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-btn-y) var(--pad-btn-x);
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
  will-change: transform;
}

.site-header__btn--primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}

.site-header__btn--primary:hover {
  transform: translateY(-1px) scale(1.02);
  background-color: #547d45;
}

.site-header__btn--primary:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.site-header__btn--ghost {
  background-color: var(--btn-ghost-bg);
  color: var(--btn-ghost-text);
  box-shadow: var(--btn-ghost-shadow);
}

.site-header__btn--ghost:hover {
  transform: translateY(-1px) scale(1.02);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.22), 0 0 6px rgba(95, 143, 78, 0.35);
}

.site-header__btn--ghost:active {
  transform: translateY(0) scale(0.99);
  background-color: rgba(248, 251, 246, 0.95);
}

.site-header__brand:focus-visible,
.site-header__nav-link:focus-visible,
.site-header__btn:focus-visible,
.site-header__burger:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.55);
  outline-offset: 3px;
}

.site-header__burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--dur-fast) var(--ease-premium),
    transform var(--dur-fast) var(--ease-premium);
}

.site-header__burger:hover {
  background-color: rgba(95, 143, 78, 0.08);
}

.site-header__burger-line {
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

/* -------------------------------------------------------------------------- */
/*  Hero (Figma 303:1727)                                                     */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: var(--hero-min-h);
  padding: 0 var(--hero-pad-x);
  background: linear-gradient(0deg, #ffffff 50%, var(--color-mint-bg) 100%);
  overflow: hidden;
  animation: hero-reveal 0.95s var(--ease-premium) both;
}

.hero__layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__blur {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  transform-origin: center;
}

.hero__blur-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px);
  transform: translateZ(0);
  transition: transform 1.1s var(--ease-premium), filter var(--dur) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
  opacity: 1;
  transition: opacity var(--dur) var(--ease-premium), background-color var(--dur) var(--ease-premium);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  min-height: var(--hero-min-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 64px);
}

.hero__content {
  width: min(100%, var(--hero-content-w));
  display: flex;
  flex-direction: column;
  gap: var(--hero-gap-cta);
}

.hero__intro {
  display: flex;
  flex-direction: column;
  gap: var(--hero-gap-intro);
}

.hero__stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--hero-gap-stars);
  width: auto;
  max-width: var(--hero-content-w);
}

.hero__star {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: text-soft-in 0.75s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium), opacity var(--dur-fast) var(--ease-premium);
}

.hero__star:nth-child(1) {
  animation-delay: 0.04s;
}
.hero__star:nth-child(2) {
  animation-delay: 0.08s;
}
.hero__star:nth-child(3) {
  animation-delay: 0.12s;
}

.hero__star:hover {
  transform: translateY(-2px) scale(1.06);
  opacity: 0.92;
}

.hero__star-icon {
  display: block;
}

.hero__star-icon--alt {
  width: 35px;
}

.hero__titles {
  display: flex;
  flex-direction: column;
  gap: var(--hero-gap-titles);
  min-height: 90px;
}

.hero__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 40px;
  color: #ffffff;
  text-align: justify;
  letter-spacing: 0.01em;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

.hero__subtitle {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--hero-accent-mint);
  text-align: left;
  animation: text-soft-in 0.85s var(--ease-premium) 0.12s both;
}

.hero__lead {
  max-width: var(--hero-content-w);
  min-height: 54px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: #ffffff;
  text-align: left;
  animation: text-soft-in 0.85s var(--ease-premium) 0.16s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--hero-gap-actions);
  animation: text-soft-in 0.85s var(--ease-premium) 0.2s both;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-btn-y) var(--pad-btn-x);
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
  will-change: transform;
}

.hero__btn--primary {
  background-color: var(--btn-primary-bg);
  color: #ffffff;
}

.hero__btn--primary:hover {
  transform: translateY(-1px) scale(1.02);
  background-color: #547d45;
}

.hero__btn--primary:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.hero__btn--ghost {
  background-color: #ffffff;
  color: var(--btn-ghost-text);
  box-shadow: var(--btn-ghost-shadow);
}

.hero__btn--ghost:hover {
  transform: translateY(-1px) scale(1.02);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.22), 0 0 6px rgba(95, 143, 78, 0.35);
}

.hero__btn--ghost:active {
  transform: translateY(0) scale(0.99);
  background-color: rgba(248, 251, 246, 0.95);
}

.hero__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.hero__booking {
  width: min(100%, var(--hero-booking-w));
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--hero-form-gap);
  padding: var(--hero-form-pad-y) var(--hero-form-pad-x);
  background: #ffffff;
  border-radius: 15px;
  box-shadow: var(--hero-booking-shadow);
  color-scheme: light;
  animation: hero-card-in 0.95s var(--ease-premium) 0.12s both;
  transition: transform var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.hero__booking:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 0 1px rgba(66, 104, 53, 0.18), 0 18px 44px rgba(66, 104, 53, 0.12);
}

.hero__booking-title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #000000;
  text-align: justify;
}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: var(--hero-form-stack);
}

.hero__fields {
  display: flex;
  flex-direction: column;
  gap: var(--hero-field-gap);
}

.hero__field {
  display: flex;
  flex-direction: column;
  gap: var(--hero-label-field-gap);
}

.hero__label {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
  text-align: justify;
}

.hero__control {
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.001);
  transition: border-color var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium), transform var(--dur-fast) var(--ease-premium);
}

.hero__control--date {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 20px;
  min-height: 61px;
}

.hero__control--select {
  position: relative;
  padding: 20px;
  min-height: 61px;
  display: flex;
  align-items: center;
}

.hero__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.hero__control:focus-within {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.hero__input--date {
  width: 100%;
  min-height: 22px;
  color-scheme: light;
}

.hero__input--date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
  transition: opacity var(--dur-fast) var(--ease-premium);
}

.hero__input--date:hover::-webkit-calendar-picker-indicator,
.hero__input--date:focus-visible::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.hero__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
}

.hero__input::placeholder {
  color: #000000;
  opacity: 0.55;
}

.hero__select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  appearance: none;
  padding-right: 34px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  cursor: pointer;
}

.hero__select-chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  pointer-events: none;
}

.hero__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-btn-y) var(--pad-btn-x);
  border-radius: var(--radius-btn);
  border: 0;
  cursor: pointer;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
  transition: transform var(--dur-fast) var(--ease-premium), background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.hero__submit:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.hero__submit:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.hero__submit:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding-block: clamp(40px, 8vw, 96px);
    min-height: unset;
    row-gap: clamp(28px, 5vw, 48px);
  }

  .hero__content {
    width: 100%;
    max-width: min(var(--hero-booking-w), 100%);
    margin-inline: auto;
  }

  .hero__booking {
    width: 100%;
    max-width: min(var(--hero-booking-w), 100%);
    margin-inline: auto;
  }

  .hero__stars {
    justify-content: flex-start;
    gap: clamp(18px, 3.6vw, 40px);
  }

  .hero__star {
    flex: 0 0 auto;
  }
}

@media (max-width: 720px) {
  :root {
    --hero-min-h: 760px;
    --hero-form-pad-y: 36px;
    --hero-form-pad-x: 22px;
    --hero-gap-cta: 36px;
    --hero-gap-intro: 28px;
    --hero-field-gap: 22px;
    --hero-form-stack: 30px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.05;
    text-align: left;
  }

  .hero__subtitle {
    font-size: 22px;
    line-height: 1.15;
  }

  .hero__lead {
    font-size: 18px;
    min-height: unset;
  }

  .hero__titles {
    min-height: unset;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    width: 100%;
    height: 44px;
    padding-block: 0;
    justify-content: center;
    font-size: 16px;
  }

  .hero__submit {
    height: 44px;
    padding-block: 0;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hero__btn,
  .hero__submit {
    padding-inline: 28px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Mobile navigation                                                         */
/* -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  :root {
    --header-pad-x: clamp(20px, 6vw, 120px);
    --gap-nav: 28px;
    --hero-pad-x: clamp(20px, 6vw, 120px);
    --site-header-offset: calc(68px + var(--header-pad-y) * 2 + 16px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand burger"
      "drawer drawer";
    row-gap: 16px;
    align-items: center;
  }

  .site-header__logo {
    width: 107px;
    height: 68px;
  }

  .site-header__brand {
    justify-self: start;
  }

  .site-header__burger {
    display: flex;
    justify-self: end;
    grid-area: burger;
  }

  .site-header__drawer {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    display: flex;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height var(--dur) var(--ease-premium),
      opacity var(--dur-fast) var(--ease-premium),
      transform var(--dur-fast) var(--ease-premium);
  }

  .site-header__drawer .site-header__actions {
    flex: unset;
    width: 100%;
    max-width: none;
  }

  .site-header__drawer .site-header__nav {
    justify-content: center;
    width: 100%;
  }

  .site-header__nav-list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    padding-block: 8px 4px;
  }

  .site-header__nav-link {
    width: auto;
    min-width: 160px;
    justify-content: center;
    padding-block: 10px;
    padding-inline: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.001);
    transition: background-color var(--dur-fast) var(--ease-premium),
      transform var(--dur-fast) var(--ease-premium),
      opacity var(--dur-fast) var(--ease-premium);
  }

  .site-header__nav-link:hover {
    background-color: rgba(95, 143, 78, 0.08);
  }

  .site-header:has(.site-header__nav-toggle:checked) {
    overflow: visible;
  }

  .site-header__inner:has(.site-header__nav-toggle:checked) {
    overflow: visible;
  }

  .site-header__nav-toggle:checked ~ .site-header__drawer {
    max-height: 780px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow: visible;
    padding-inline: 14px;
    padding-bottom: 22px;
    box-sizing: border-box;
  }

  .site-header__nav-toggle:checked ~ .site-header__drawer .site-header__nav,
  .site-header__nav-toggle:checked ~ .site-header__drawer .site-header__actions,
  .site-header__nav-toggle:checked ~ .site-header__drawer .site-header__nav-list {
    overflow: visible;
  }

  .site-header__nav-toggle:checked ~ .site-header__burger .site-header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header__nav-toggle:checked ~ .site-header__burger .site-header__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .site-header__nav-toggle:checked ~ .site-header__burger .site-header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header__actions {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 10px 14px;
    margin-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    overflow: visible;
    animation: none;
  }

  .site-header__drawer .site-header__btn {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 44px;
    margin: 4px;
    padding-block: 10px;
    padding-inline: 30px;
    white-space: nowrap;
    text-align: center;
    overflow: visible;
    box-sizing: border-box;
  }

  .site-header__drawer .site-header__btn--ghost {
    box-shadow: var(--btn-ghost-shadow);
  }

  .site-header__drawer .site-header__btn--ghost:hover {
    box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.22), 0 0 6px rgba(95, 143, 78, 0.35);
  }
}

@media (min-width: 1181px) and (max-width: 1599px) {
  :root {
    --header-pad-x: clamp(32px, 4vw, 120px);
    --gap-nav: 24px;
    --pad-btn-x: 28px;
    --gap-actions: 16px;
    --actions-width: auto;
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 24px;
  }

  .site-header__drawer {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
  }

  .site-header__actions {
    width: auto;
    max-width: none;
  }
}

@media (min-width: 1600px) {
  :root {
    --header-pad-x: 240px;
    --gap-nav: 40px;
    --pad-btn-x: 51px;
    --gap-actions: 30px;
    --actions-width: 428px;
  }

  .site-header__inner {
    grid-template-columns: 107px minmax(0, 1fr);
    column-gap: 40px;
  }

  .site-header__drawer {
    grid-template-columns: minmax(0, 1fr) var(--actions-width);
    column-gap: 40px;
  }

  .site-header__actions {
    width: var(--actions-width);
    max-width: var(--actions-width);
  }
}

@media (min-width: 1181px) {
  .site-header__inner {
    grid-template-areas: "brand drawer";
  }

  .site-header__logo {
    width: 107px;
    height: 68px;
  }

  .site-header__brand {
    grid-area: brand;
    justify-self: start;
  }

  .site-header__drawer {
    display: grid;
    grid-area: drawer;
    grid-template-columns: minmax(0, 1fr) var(--actions-width);
    grid-template-areas: "nav actions";
    align-items: center;
    column-gap: 40px;
    width: 100%;
    min-width: 0;
    justify-content: unset;
    gap: unset;
  }

  .site-header__nav {
    grid-area: nav;
    justify-self: center;
    width: max-content;
    max-width: 100%;
  }

  .site-header__nav-list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--gap-nav);
    padding-block: 0;
  }

  .site-header__nav-link {
    width: auto;
    min-width: 0;
    padding-block: 4px;
    padding-inline: 0;
    border-radius: 0;
    background-color: transparent;
  }

  .site-header__nav-link:hover {
    background-color: transparent;
  }

  .site-header__actions {
    grid-area: actions;
    justify-self: end;
    width: var(--actions-width);
    max-width: var(--actions-width);
    flex-wrap: nowrap;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }

  .site-header__btn {
    flex: 0 0 auto;
    padding-block: var(--pad-btn-y);
    padding-inline: var(--pad-btn-x);
  }

  .site-header__burger {
    display: none;
  }
}

@media (max-width: 520px) {
  :root {
    --header-pad-x: 16px;
    --gap-actions: 10px;
    --font-nav: 400 16px / 1.15 "Aznauri Round", "Times New Roman", Times, serif;
    --font-btn: 700 16px / 1.15 "Aznauri Round", "Times New Roman", Times, serif;
  }

  .site-header__logo {
    width: 86px;
    height: auto;
  }

  .site-header__nav-toggle:checked ~ .site-header__drawer {
    padding-inline: 18px;
    padding-bottom: 24px;
  }

  .site-header__drawer .site-header__actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 18px 12px 18px;
  }

  .site-header__drawer .site-header__btn {
    width: 100%;
    max-width: 280px;
    height: 48px;
    min-height: 48px;
    margin: 5px;
    padding-block: 0;
    padding-inline: 16px;
    font-size: 16px;
    box-sizing: border-box;
  }
}

/* -------------------------------------------------------------------------- */
/*  About section                                                             */
/* -------------------------------------------------------------------------- */
.about {
  width: 100%;
  background: #ffffff;
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

/* Desktop: flexbox — левая колонка 556px / правая фото */
.about__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about__content {
  flex: 0 0 556px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about__text {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: #1a1a1a;
  text-align: justify;
  width: 639px;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: var(--pad-btn-y) var(--pad-btn-x);
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.about__btn:hover {
  transform: translateY(-1px) scale(1.02);
  background-color: #547d45;
}

.about__btn:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.about__media {
  flex: 1 1 auto;
  min-width: 0;
  height: 376px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.about__media:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur) var(--ease-premium);
}

.about__media:hover .about__photo {
  transform: scale(1.03);
}

/* Mobile: title → text → photo → button */
@media (max-width: 720px) {
  .about {
    padding-block: 30px;
    padding-inline: 16px;
  }

  /* Распрямляем .about__inner в колонку */
  .about__inner {
    flex-direction: column;
    gap: 20px;
  }

  /* display:contents «растворяет» обёртку —
     title, text, btn становятся прямыми flex-детьми .about__inner */
  .about__content {
    display: contents;
  }

  .about__title {
    font-size: 28px;
    letter-spacing: 0.01em;
    order: 1;
  }

  .about__text {
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    order: 2;
  }

  /* Фото между текстом и кнопкой */
  .about__media {
    order: 3;
    width: 100%;
    height: 210px;
    border-radius: 16px;
  }

  /* Кнопка последней */
  .about__btn {
    order: 4;
    align-self: stretch;
    width: 100%;
    height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Advantages section (Figma 303:1788)                                       */
/* -------------------------------------------------------------------------- */
.advantages {
  width: 100%;
  background: var(--color-mint-bg);
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.advantages__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.advantages__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.advantages__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-height: 220px;
  padding: 32px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 20px;
  background: #ffffff;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.advantages__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(95, 143, 78, 0.55);
}

.advantages__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 8px;
  background: #ffffff;
}

.advantages__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.advantages__card-title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
}

.advantages__card-text {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1a1a1a;
}

/* Mobile */
@media (max-width: 720px) {
  .advantages {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .advantages__inner {
    gap: 24px;
  }

  .advantages__title {
    font-size: 28px;
    letter-spacing: 0.01em;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .advantages__card {
    min-height: unset;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
  }

  .advantages__icon-wrap {
    width: 44px;
    height: 44px;
  }

  .advantages__icon {
    width: 24px;
    height: 24px;
  }

  .advantages__card-title {
    font-size: 18px;
  }

  .advantages__card-text {
    font-size: 16px;
    line-height: 1.45;
  }
}

/* -------------------------------------------------------------------------- */
/*  Rooms section (Figma 303:1829 / 499:744)                                  */
/* -------------------------------------------------------------------------- */
.rooms {
  width: 100%;
  background: #ffffff;
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.rooms__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rooms__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.rooms__card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 635px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.rooms__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover-bottom);
  border-color: rgba(95, 143, 78, 0.55);
}

.rooms__photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.rooms__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 30px;
}

.rooms__card-title {
  max-width: 360px;
  min-height: 60px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #1a1a1a;
}

.rooms__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 0 20px;
  padding: 0;
  list-style: disc;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #1a1a1a;
}

.rooms__price {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #3a5c2b;
}

.rooms__btn,
.rooms__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.rooms__btn {
  width: 100%;
  margin-top: auto;
  padding: 16px 30px;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
}

.rooms__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.rooms__more {
  align-self: center;
  padding: 16px 51px;
  color: var(--btn-ghost-text);
  background-color: #ffffff;
  box-shadow: var(--btn-ghost-shadow);
}

.rooms__more:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.22), 0 0 6px rgba(95, 143, 78, 0.35);
}

/* Mobile */
@media (max-width: 720px) {
  .rooms {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .rooms__inner {
    gap: 24px;
  }

  .rooms__title {
    font-size: 28px;
    letter-spacing: 0.01em;
  }

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

  .rooms__card {
    min-height: unset;
    border-radius: 16px;
  }

  .rooms__photo {
    height: 220px;
  }

  .rooms__body {
    flex: none;
    align-items: stretch;
    gap: 18px;
    padding: 24px 20px 20px;
  }

  .rooms__card-title {
    max-width: none;
    min-height: unset;
    font-size: 18px;
  }

  .rooms__features {
    gap: 10px;
    font-size: 16px;
  }

  .rooms__price {
    margin-top: 24px;
    font-size: 20px;
  }

  .rooms__btn,
  .rooms__more {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    font-size: 16px;
    border-radius: 15px;
  }

  .rooms__btn {
    margin-top: 22px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Contacts section (Figma 303:1868)                                         */
/* -------------------------------------------------------------------------- */
.contacts {
  width: 100%;
  background: linear-gradient(1deg, var(--color-mint-bg) 0%, #ffffff 100%);
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.contacts__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacts__heading {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contacts__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contacts__subtitle {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: #1a1a1a;
}

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

.contacts__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 214px;
  padding: 40px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 16px;
  background: #ffffff;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.contacts__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(95, 143, 78, 0.55);
}

.contacts__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 8px;
  background: #ffffff;
}

.contacts__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contacts__card-title {
  margin-top: 24px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #1a1a1a;
}

.contacts__card-text {
  margin-top: 18px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #1a1a1a;
}

.contacts__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contacts__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.contacts__btn--primary {
  color: #ffffff;
  background-color: var(--btn-primary-bg);
}

.contacts__btn--primary:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.contacts__btn--ghost {
  color: var(--btn-ghost-text);
  background-color: #ffffff;
  box-shadow: var(--btn-ghost-shadow);
}

.contacts__btn--ghost:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.22), 0 0 6px rgba(95, 143, 78, 0.35);
}

/* Mobile */
@media (max-width: 720px) {
  .contacts {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .contacts__inner {
    gap: 24px;
  }

  .contacts__heading {
    gap: 16px;
  }

  .contacts__title {
    font-size: 28px;
    letter-spacing: 0.01em;
  }

  .contacts__subtitle {
    font-size: 18px;
    line-height: 1.35;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contacts__card {
    min-height: unset;
    padding: 20px;
    border-radius: 16px;
  }

  .contacts__card-title {
    margin-top: 18px;
    font-size: 16px;
  }

  .contacts__card-text {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.35;
  }

  .contacts__actions {
    flex-direction: column;
    gap: 12px;
  }

  .contacts__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Reviews section (Figma 303:1891)                                          */
/* -------------------------------------------------------------------------- */
.reviews {
  width: 100%;
  background: #ffffff;
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.reviews__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reviews__heading {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reviews__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.reviews__subtitle {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: #1a1a1a;
}

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

.reviews__card {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 40px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.reviews__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover-bottom);
  border-color: rgba(95, 143, 78, 0.55);
}

.reviews__stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__star {
  display: block;
  width: 25px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.reviews__text {
  margin-top: 26px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
  text-align: justify;
}

.reviews__divider {
  width: 100%;
  height: 1px;
  margin-top: auto;
  margin-bottom: 22px;
  background: rgba(165, 214, 126, 0.8);
}

.reviews__author {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #1a1a1a;
}

.reviews__date {
  margin-top: 14px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #1a1a1a;
}

.reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 52px;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.reviews__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

/* Mobile */
@media (max-width: 720px) {
  .reviews {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .reviews__inner {
    gap: 24px;
  }

  .reviews__heading {
    gap: 16px;
  }

  .reviews__title {
    font-size: 28px;
    letter-spacing: 0.01em;
  }

  .reviews__subtitle {
    font-size: 18px;
    line-height: 1.35;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reviews__card {
    min-height: unset;
    padding: 20px;
    border-radius: 16px;
  }

  .reviews__star {
    width: 22px;
    height: 21px;
  }

  .reviews__text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .reviews__divider {
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .reviews__author {
    font-size: 18px;
  }

  .reviews__date {
    margin-top: 10px;
    font-size: 16px;
  }

  .reviews__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  FAQ section (Figma 303:1953)                                              */
/* -------------------------------------------------------------------------- */
.faq {
  width: 100%;
  background: var(--color-mint-bg);
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.faq__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__item {
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.faq__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(95, 143, 78, 0.55);
}

.faq__question {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-right: 2px solid #3a5c2b;
  border-bottom: 2px solid #3a5c2b;
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--dur-fast) var(--ease-premium);
}

.faq__item[open] .faq__chevron {
  transform: rotate(225deg) translateY(-3px);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows var(--dur) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.faq__answer p {
  overflow: hidden;
  margin: 0 40px;
  padding: 0;
  border-top: 1px solid rgba(165, 214, 126, 0.8);
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: #1a1a1a;
}

.faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq__item[open] .faq__answer p {
  padding-block: 22px 28px;
}

/* Mobile */
@media (max-width: 720px) {
  .faq {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .faq__inner {
    gap: 24px;
  }

  .faq__title {
    font-size: 28px;
    letter-spacing: 0.01em;
  }

  .faq__list {
    gap: 12px;
  }

  .faq__item {
    border-radius: 16px;
  }

  .faq__question {
    min-height: 58px;
    padding: 0 20px;
    gap: 16px;
    font-size: 16px;
    line-height: 1.3;
  }

  .faq__chevron {
    width: 10px;
    height: 10px;
  }

  .faq__answer p {
    margin: 0 20px;
    font-size: 16px;
    line-height: 1.45;
  }

  .faq__item[open] .faq__answer p {
    padding-block: 16px 20px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Booking CTA section (Figma 303:1974)                                      */
/* -------------------------------------------------------------------------- */
.booking-cta {
  width: 100%;
  background: #ffffff;
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.booking-cta__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.booking-cta__card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 48px 40px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-card-bottom);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.booking-cta__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.booking-cta__title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}

.booking-cta__text {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
}

.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.booking-cta__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

/* Mobile */
@media (max-width: 720px) {
  .booking-cta {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .booking-cta__card {
    min-height: unset;
    gap: 18px;
    padding: 28px 20px;
    border-radius: 16px;
  }

  .booking-cta__title {
    font-size: 20px;
    line-height: 1.3;
  }

  .booking-cta__text {
    font-size: 16px;
    line-height: 1.45;
  }

  .booking-cta__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Footer (Figma 514:518)                                                    */
/* -------------------------------------------------------------------------- */
.site-footer {
  width: 100%;
  background: var(--color-mint-bg);
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.site-footer__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
  gap: 80px;
  align-items: start;
}

.site-footer__brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__brand,
.site-footer__logo {
  display: block;
}

.site-footer__logo {
  width: 107px;
  height: 68px;
  object-fit: contain;
}

.site-footer__text {
  margin-top: 28px;
  max-width: 500px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
  text-align: justify;
}

.site-footer__btn {
  min-height: 52px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.site-footer__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.site-footer__copy {
  margin-top: 28px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(26, 26, 26, 0.72);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.site-footer__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #1a1a1a;
}

.site-footer__list a {
  transition: color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.site-footer__list a:hover {
  color: #3a5c2b;
  opacity: 0.88;
}

.site-footer__contacts {
  gap: 18px;
}

.site-footer__socials {
  display: flex;
  gap: 12px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: transform var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.site-footer__social img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-footer__social:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

/* -------------------------------------------------------------------------- */
/*  About page hero                                                           */
/* -------------------------------------------------------------------------- */
.about-hero {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, #ffffff 50%, var(--color-mint-bg) 100%);
}

.about-hero__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.about-hero__title span:last-child {
  color: #3a5c2b;
}

.about-hero__text {
  max-width: 820px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
  text-align: justify;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

/* -------------------------------------------------------------------------- */
/*  About location                                                            */
/* -------------------------------------------------------------------------- */
.about-location {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.about-location__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.about-location__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.about-location__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.about-location__lead {
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
  text-align: justify;
}

.about-location__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 50px;
  padding: 40px 50px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1), var(--shadow-card-bottom);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.about-location__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.about-location__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-location__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
  text-align: justify;
}

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

.about-location__distance {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 15px;
  background: #E7FFD2;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.about-location__distance:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.about-location__distance-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 8px;
  background: #ffffff;
}

.about-location__distance-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.about-location__distance-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-location__distance-name {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
}

.about-location__distance-time {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #3A5C2B;
}

.about-location__places {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: stretch;
}

.about-location__place {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 14px 16px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.about-location__place:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.about-location__place-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.about-location__place-name {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
}

/* -------------------------------------------------------------------------- */
/*  About who we are                                                          */
/* -------------------------------------------------------------------------- */
.about-who {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: var(--color-mint-bg);
}

.about-who__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.about-who__title {
  margin-bottom: 50px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.about-who__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 50px;
}

.about-who__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
}

.about-who__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 40px 50px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(66, 104, 53, 0.08);
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
  text-align: justify;
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.about-who__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.about-who__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.about-who__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.about-who__btn:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.about-who__photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 15px;
  border: 1.5px solid #acc396;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1);
  object-fit: cover;
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
  transition: transform var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.about-who__photo:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.04);
  box-shadow: var(--shadow-card-hover);
}

/* -------------------------------------------------------------------------- */
/*  About features                                                            */
/* -------------------------------------------------------------------------- */
.about-features {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.about-features__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.about-features__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.about-features__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.about-features__lead {
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

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

.about-features__card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 30px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  text-align: center;
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.about-features__card:nth-child(2) {
  animation-delay: 0.04s;
}

.about-features__card:nth-child(3) {
  animation-delay: 0.08s;
}

.about-features__card:nth-child(4) {
  animation-delay: 0.12s;
}

.about-features__card:nth-child(5) {
  animation-delay: 0.16s;
}

.about-features__card:nth-child(6) {
  animation-delay: 0.2s;
}

.about-features__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.about-features__highlight {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: #3a5c2b;
}

.about-features__highlight--text {
  font-family: var(--font-aznauri-round);
  font-size: 26px;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-features__subtitle {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #000000;
}

.about-features__text {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
}

/* -------------------------------------------------------------------------- */
/*  About gallery                                                             */
/* -------------------------------------------------------------------------- */
.about-gallery {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(180deg, #ffffff 50%, var(--color-mint-bg) 100%);
}

.about-gallery__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.about-gallery__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.about-gallery__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.about-gallery__lead {
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.about-gallery__layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-gallery__viewer {
  display: none;
  overflow: hidden;
  border-radius: 15px;
  border: 1.5px solid #acc396;
  box-shadow: 0 1px 3px rgba(66, 104, 53, 0.08);
}

.about-gallery__main {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  transition: opacity var(--dur-fast) var(--ease-premium),
    transform var(--dur-fast) var(--ease-premium);
}

.about-gallery__main.is-changing {
  opacity: 0.55;
  transform: scale(0.985);
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

.about-gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(66, 104, 53, 0.08);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.about-gallery__thumb:nth-child(2) {
  animation-delay: 0.04s;
}

.about-gallery__thumb:nth-child(3) {
  animation-delay: 0.08s;
}

.about-gallery__thumb:nth-child(4) {
  animation-delay: 0.12s;
}

.about-gallery__thumb:nth-child(5) {
  animation-delay: 0.16s;
}

.about-gallery__photo {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transition: transform 0.45s var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium);
}

.about-gallery__thumb--large {
  grid-column: span 3;
  height: 360px;
}

.about-gallery__thumb--small {
  grid-column: span 2;
  height: 240px;
}

@media (min-width: 721px) {
  .about-gallery__thumb:hover {
    transform: translateY(-4px);
    border-color: rgba(95, 143, 78, 0.55);
    box-shadow: 0 12px 28px rgba(66, 104, 53, 0.14);
  }

  .about-gallery__thumb:hover .about-gallery__photo {
    transform: scale(1.06);
    filter: saturate(1.08) brightness(1.02);
  }

  .about-gallery__thumb.is-active {
    border-color: #acc396;
    box-shadow: 0 1px 3px rgba(66, 104, 53, 0.08);
  }
}

.about-gallery__thumb:focus-visible {
  outline: 2px solid var(--btn-primary-bg);
  outline-offset: 3px;
}

.about-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
}

.about-gallery-lightbox[hidden] {
  display: none;
}

.about-gallery-lightbox-open {
  overflow: hidden;
}

.about-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.about-gallery-lightbox__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 48px 16px 16px;
}

.about-gallery-lightbox__image {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 64px);
  object-fit: contain;
  object-position: center;
}

.about-gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 0;
  border: 0;
  background: none;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity var(--dur-fast) var(--ease-premium);
}

.about-gallery-lightbox__close:hover {
  opacity: 1;
}

.about-gallery-lightbox__hit {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 28%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.about-gallery-lightbox__hit--prev {
  left: 0;
}

.about-gallery-lightbox__hit--next {
  right: 0;
}

@media (max-width: 720px) {
  .about-gallery-lightbox__stage {
    padding: 44px 8px 8px;
  }

  .about-gallery-lightbox__image {
    max-height: calc(100vh - 52px);
  }

  .about-gallery-lightbox__close {
    top: 10px;
    right: 10px;
    font-size: 32px;
  }

  .about-gallery-lightbox__hit {
    width: 22%;
  }
}

/* -------------------------------------------------------------------------- */
/*  Services page hero                                                        */
/* -------------------------------------------------------------------------- */
.services-hero {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, #ffffff 50%, var(--color-mint-bg) 100%);
}

.services-hero__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.services-hero__title span:last-child {
  color: #3a5c2b;
}

.services-hero__text {
  max-width: 820px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

/* -------------------------------------------------------------------------- */
/*  Services conference                                                       */
/* -------------------------------------------------------------------------- */
.services-conference {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.services-conference__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.services-conference__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.services-conference__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.services-conference__lead {
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.services-conference__card {
  display: grid;
  grid-template-columns: 640px minmax(0, 1fr);
  align-items: stretch;
  gap: 50px;
  padding: 40px 50px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1), var(--shadow-card-bottom);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.services-conference__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.services-conference__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) 240px;
  gap: 40px 50px;
  min-height: 100%;
}

.services-conference__photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1);
  object-fit: cover;
  transition: transform var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.services-conference__photo--main {
  grid-column: 1 / -1;
}

.services-conference__photo:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.04);
  box-shadow: var(--shadow-card-hover);
}

.services-conference__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.services-conference__price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border: 2px solid #87b86a;
  border-radius: 15px;
  text-align: center;
}

.services-conference__price {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: var(--btn-primary-bg);
}

.services-conference__price-label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: var(--btn-primary-bg);
}

.services-conference__features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-manrope);
  color: #000000;
}

.services-conference__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.services-conference__feature-name {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  white-space: nowrap;
}

.services-conference__feature-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.services-conference__feature-value {
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  text-align: right;
}

.services-conference__btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.services-conference__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.services-conference__btn:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.service-booking-modal__message {
  margin: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.service-booking-modal__message--error {
  background: rgba(176, 48, 48, 0.1);
  color: #8b1e1e;
}

.service-booking-modal__message--success {
  background: rgba(66, 104, 53, 0.12);
  color: #3a5c2b;
}

.service-booking-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-booking-modal__summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-booking-modal__summary.is-unavailable {
  border-color: rgba(176, 48, 48, 0.35);
  background: rgba(176, 48, 48, 0.03);
}

.service-booking-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.service-booking-modal__field-label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #426835;
}

.service-booking-modal__control {
  min-height: 52px;
}

.service-booking-modal__field-hint {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #426835;
}

.service-booking-modal .room-payment-modal__total {
  margin-top: 8px;
}

@media (max-width: 720px) {
  .service-booking-modal__field-label {
    font-size: 16px;
  }

  .service-booking-modal__control {
    min-height: 48px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Services – Sauna section                                                  */
/* -------------------------------------------------------------------------- */
.services-sauna {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: var(--color-mint-bg);
}

.services-sauna__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.services-sauna__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.services-sauna__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.services-sauna__lead {
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.services-sauna__card {
  display: grid;
  grid-template-columns: 640px minmax(0, 1fr);
  align-items: stretch;
  gap: 50px;
  padding: 40px 50px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 1px rgba(66, 104, 53, 1);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.services-sauna__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.services-sauna__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) 240px;
  gap: 20px;
  min-height: 100%;
}

.services-sauna__photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 15px;
  background: var(--color-mint-bg);
  box-shadow: 0 0 3px rgba(66, 104, 53, 1);
  object-fit: cover;
  transition: transform var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.services-sauna__photo--main {
  grid-column: 1 / -1;
}

.services-sauna__photo:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.04);
  box-shadow: var(--shadow-card-hover);
}

.services-sauna__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.services-sauna__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-manrope);
  color: #000000;
}

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

.services-sauna__feature-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  object-fit: contain;
}

.services-sauna__feature span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
}

.services-sauna__price-card {
  overflow: hidden;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
}

.services-sauna__price-header,
.services-sauna__price-footer {
  padding: 16px 24px;
  background: var(--color-mint-bg);
}

.services-sauna__price-title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
}

.services-sauna__price-body {
  background: #ffffff;
}

.services-sauna__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.services-sauna__price-name {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
}

.services-sauna__price-value {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--btn-primary-bg);
}

.services-sauna__price-note {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
}

.services-sauna__btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.services-sauna__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.services-sauna__btn:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

/* -------------------------------------------------------------------------- */
/*  Services – Additional services                                            */
/* -------------------------------------------------------------------------- */
.services-extra {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.services-extra__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.services-extra__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.services-extra__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.services-extra__lead {
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

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

.services-extra__card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 40px 30px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  text-align: center;
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.services-extra__card:nth-child(2) {
  animation-delay: 0.04s;
}

.services-extra__card:nth-child(3) {
  animation-delay: 0.08s;
}

.services-extra__card:nth-child(4) {
  animation-delay: 0.12s;
}

.services-extra__card:nth-child(5) {
  animation-delay: 0.16s;
}

.services-extra__card:nth-child(6) {
  animation-delay: 0.2s;
}

.services-extra__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.services-extra__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 8px;
  background: #ffffff;
}

.services-extra__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.services-extra__card-title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}

.services-extra__card-text {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
}

/* -------------------------------------------------------------------------- */
/*  Rooms page hero                                                           */
/* -------------------------------------------------------------------------- */
.rooms-hero {
  width: 100%;
  min-height: 170px;
  padding-block: 50px 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(180deg, var(--color-mint-bg) 0%, #ffffff 100%);
}

.rooms-hero__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.rooms-hero__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 520px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}

.rooms-hero__title span:last-child {
  color: #426835;
}

.rooms-hero__text {
  max-width: 600px;
  margin-top: 40px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
}

/* -------------------------------------------------------------------------- */
/*  Contacts page hero                                                        */
/* -------------------------------------------------------------------------- */
.contacts-hero {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, #ffffff 50%, var(--color-mint-bg) 100%);
}

.contacts-hero__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacts-hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.contacts-hero__title span:last-child {
  color: #3a5c2b;
}

.contacts-hero__text {
  max-width: 820px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
  text-align: justify;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

/* -------------------------------------------------------------------------- */
/*  Booking page hero                                                         */
/* -------------------------------------------------------------------------- */
.booking-hero {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, #ffffff 50%, var(--color-mint-bg) 100%);
}

.booking-hero__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.booking-hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.booking-hero__title span:last-child {
  color: #3a5c2b;
}

.booking-hero__text {
  max-width: 920px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
  text-align: justify;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

/* -------------------------------------------------------------------------- */
/*  Booking page available rooms (Figma 688:2346)                             */
/* -------------------------------------------------------------------------- */
.booking-rooms {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
  scroll-margin-top: 24px;
}

.booking-rooms__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.booking-rooms__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.booking-rooms__layout {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
  width: 100%;
}

.booking-filters {
  position: sticky;
  top: 24px;
}

.booking-filters__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
}

.booking-filters__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-filters__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

.booking-filters__card {
  padding: 24px 20px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 0.35);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.booking-filters__card:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.booking-filters__card-title {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(95, 143, 78, 0.22);
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.booking-filters__card--types {
  min-width: 0;
}

.booking-filters__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-filters__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-filters__label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
}

.booking-filters__control {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background-color: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.booking-filters__control::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.booking-filters__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.booking-filters__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.booking-filters__control[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
}

.booking-filters__types {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-filters__type-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  cursor: pointer;
}

.booking-filters__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-filters__radio-mark {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid #acc396;
  border-radius: 50%;
  background: #ffffff;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.booking-filters__radio-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #5f8f4e;
  transform: scale(0);
  transition: transform var(--dur-fast) var(--ease-premium);
}

.booking-filters__radio:checked + .booking-filters__radio-mark {
  border-color: #5f8f4e;
}

.booking-filters__radio:checked + .booking-filters__radio-mark::after {
  transform: scale(1);
}

.booking-filters__radio:focus-visible + .booking-filters__radio-mark {
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.booking-filters__type-text {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #000000;
}

.booking-filters__apply,
.booking-filters__reset {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 16px 20px;
  border-radius: var(--radius-btn);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium);
}

.booking-filters__apply {
  border: 0;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
}

.booking-filters__apply:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.booking-filters__reset {
  border: 1.5px solid #acc396;
  color: #426835;
  background-color: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 0.35);
}

.booking-filters__reset:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 143, 78, 0.55);
  background-color: rgba(95, 143, 78, 0.04);
}

.booking-filters__apply:active,
.booking-filters__reset:active {
  transform: translateY(0) scale(0.99);
}

.booking-rooms__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.booking-rooms__empty {
  margin: 0;
  padding: 32px 24px;
  border: 1.5px dashed #acc396;
  border-radius: 15px;
  background: #f6ffee;
  color: #3a5c2b;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.booking-rooms__card[hidden] {
  display: none !important;
}

.booking-rooms__card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 0.35);
  opacity: 0;
  transform: translateY(18px);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.booking-rooms__card.is-revealed {
  animation: reviews-reveal-in 0.9s var(--ease-premium) both;
}

.booking-rooms__card:nth-child(1).is-revealed {
  animation-delay: 0s;
}

.booking-rooms__card:nth-child(2).is-revealed {
  animation-delay: 0.06s;
}

.booking-rooms__card:nth-child(3).is-revealed {
  animation-delay: 0.12s;
}

.booking-rooms__card:nth-child(4).is-revealed {
  animation-delay: 0.18s;
}

.booking-rooms__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.booking-rooms__card.is-revealed:hover {
  transform: translateY(-3px);
}

.booking-rooms__media {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.booking-rooms__photo {
  display: block;
  width: 100%;
  aspect-ratio: 923 / 431;
  height: auto;
  object-fit: cover;
  transition: transform var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium);
}

.booking-rooms__photo-count {
  position: absolute;
  right: 20px;
  bottom: 8px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: clamp(52px, 14vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  pointer-events: none;
}

.booking-rooms__unavailable {
  margin: 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(176, 48, 48, 0.1);
  color: #8b1e1e;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.booking-rooms__card--unavailable .booking-rooms__photo {
  filter: grayscale(0.55) brightness(0.92);
}

.booking-rooms__card--unavailable .booking-rooms__btn--primary {
  opacity: 0.55;
  cursor: not-allowed;
}

.booking-rooms__card--unavailable .booking-rooms__photo-count {
  color: rgba(255, 255, 255, 0.72);
}

.room-booking__unavailable {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(176, 48, 48, 0.1);
  color: #8b1e1e;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}

.room-booking--unavailable .room-booking__submit,
.room-booking--unavailable .room-detail__btn--primary {
  pointer-events: none;
  opacity: 0.45;
  cursor: not-allowed;
}

.room-booking--unavailable .room-booking__control:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.booking-rooms__card:hover .booking-rooms__photo {
  transform: scale(1.02);
  filter: saturate(1.04);
}

.booking-rooms__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px 20px;
}

.booking-rooms__card-title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
}

.booking-rooms__description {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #000000;
}

.booking-rooms__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-rooms__amenity {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid #acc396;
  border-radius: 10px;
  background: #ffffff;
}

.booking-rooms__amenity img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.booking-rooms__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-rooms__features li {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #000000;
}

.booking-rooms__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 400;
}

.booking-rooms__price {
  margin: 0;
  font-family: var(--font-manrope);
  line-height: 1.35;
  color: #000000;
}

.booking-rooms__price-value {
  font-weight: 700;
  font-size: 20px;
  color: #426835;
}

.booking-rooms__price-period {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.booking-rooms__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.booking-rooms__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 10px;
  border-radius: 15px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.booking-rooms__btn--primary {
  border: 0;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
}

.booking-rooms__btn--primary:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.booking-rooms__btn--ghost {
  border: 1.5px solid #acc396;
  color: #426835;
  background-color: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 0.35);
}

.booking-rooms__btn--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 143, 78, 0.55);
  background-color: rgba(95, 143, 78, 0.04);
}

.booking-rooms__btn:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

@media (min-width: 1181px) {
  .booking-rooms {
    padding-inline: 240px;
  }

  .booking-rooms__inner {
    width: 100%;
    max-width: none;
  }

  .booking-rooms__layout {
    gap: 50px;
  }

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

@media (min-width: 961px) {
  .booking-rooms__list {
    gap: 24px;
  }

  .booking-rooms__body {
    gap: 14px;
    padding: 28px 24px 24px;
  }

  .booking-rooms__card-title {
    font-size: 20px;
  }

  .booking-rooms__description,
  .booking-rooms__features li,
  .booking-rooms__price-period {
    font-size: 18px;
  }

  .booking-rooms__price-value {
    font-size: 22px;
  }

  .booking-rooms__btn {
    min-height: 52px;
    padding: 16px 20px;
    font-size: 18px;
  }

  .booking-rooms__photo-count {
    right: 24px;
    bottom: 10px;
    font-size: 72px;
  }
}

@media (max-width: 960px) {
  .booking-hero__inner {
    gap: 24px;
  }

  .booking-hero__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .booking-hero__text {
    font-size: 20px;
    line-height: 1.35;
    text-align: left;
  }

  .booking-rooms__inner {
    gap: 32px;
  }

  .booking-rooms__title {
    font-size: 32px;
    line-height: 1.05;
  }

  .booking-rooms__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking-filters {
    position: static;
  }

  .booking-rooms__list {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .booking-hero {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .booking-hero__inner {
    gap: 24px;
  }

  .booking-hero__title {
    max-width: 100%;
    gap: 6px;
    font-size: 26px;
    line-height: 1.1;
  }

  .booking-rooms__card:hover {
    transform: none;
  }

  .booking-rooms__card.is-revealed:hover {
    transform: none;
  }

  .booking-filters__card:hover {
    transform: none;
  }

  .booking-hero__text {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.35;
    text-align: left;
  }

  .booking-rooms {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .booking-rooms__inner {
    gap: 24px;
  }

  .booking-rooms__title {
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 0.01em;
  }

  .booking-filters__form {
    gap: 16px;
  }

  .booking-filters__card,
  .booking-filters__card--types {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .booking-filters__card-title {
    font-size: 16px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .booking-filters__label,
  .booking-filters__type-text {
    font-size: 16px;
  }

  .booking-filters__apply,
  .booking-filters__reset {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 15px;
  }

  .booking-rooms__list {
    gap: 16px;
  }

  .booking-rooms__photo-count {
    right: 16px;
    bottom: 6px;
    font-size: 36px;
  }

  .booking-rooms__body {
    gap: 12px;
    padding: 20px 16px 16px;
  }

  .booking-rooms__card-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .booking-rooms__description,
  .booking-rooms__features li,
  .booking-rooms__price-period {
    font-size: 16px;
    line-height: 1.35;
  }

  .booking-rooms__amenity {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .booking-rooms__amenity img {
    width: 22px;
    height: 22px;
  }

  .booking-rooms__features {
    gap: 6px;
  }

  .booking-rooms__price-value {
    font-size: 20px;
  }

  .booking-rooms__actions {
    gap: 10px;
    margin-top: 8px;
  }

  .booking-rooms__btn {
    min-height: 44px;
    padding: 12px 8px;
    font-size: 15px;
    border-radius: 15px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Login page (Figma 303:3169)                                               */
/* -------------------------------------------------------------------------- */
.login-page {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(180deg, #F2FFE6 0%, #ffffff 100%);
}

.login-page__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.login-page__welcome {
  display: flex;
  flex-direction: column;
  gap: 40px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.login-page__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.login-page__title span:last-child {
  color: #3a5c2b;
}

.login-page__lead {
  max-width: 560px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
  text-align: justify;
}

.login-page__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-page__feature {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
  min-height: 70px;
  padding: 0 24px;
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 3px rgba(66, 104, 53, 0.12);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.login-page__feature:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 143, 78, 0.45);
  box-shadow: var(--shadow-card-hover);
}

.login-page__feature-icon {
  flex: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.login-page__feature-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.login-page__feature-text {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
}

.login-page__form-wrap {
  display: flex;
  justify-content: flex-start;
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
}

.login-page__form-panel {
  width: 100%;
  max-width: 100%;
}

.login-page__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #426835;
}

.login-page__form-title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
}

.login-page__form-title span {
  color: #3a5c2b;
}

.login-page__form-lead {
  margin: 12px 0 30px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
}

.login-page__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color-scheme: light;
}

.login-page__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-page__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-page__label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.login-page__control {
  width: 100%;
  min-height: 61px;
  padding: 16px 20px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background-color: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.login-page__control::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.login-page__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.login-page__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.login-page__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.login-page__remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #1a1a1a;
  cursor: pointer;
}

.login-page__remember input {
  width: 18px;
  height: 18px;
  border-radius: 10px;
  accent-color: var(--btn-primary-bg);
}

.login-page__forgot {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(74, 58, 40, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.login-page__forgot:hover {
  color: rgba(74, 58, 40, 0.9);
  opacity: 0.88;
}

.login-page__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 16px 51px;
  border: 0;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.login-page__submit:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.login-page__submit:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.login-page__submit:focus-visible {
  outline: 3px solid rgba(95, 143, 78, 0.35);
  outline-offset: 2px;
}

.login-page__error {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: 14px;
  line-height: 1.4;
  color: #b42318;
  text-align: center;
}

.login-page__success {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: 14px;
  line-height: 1.4;
  color: #027a48;
  text-align: center;
}

.login-page__reset-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f6ffee;
  border: 1px solid rgba(2, 122, 72, 0.15);
}

.login-page__reset-link-label {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: 13px;
  line-height: 1.4;
  color: #344054;
}

.login-page__reset-link-anchor {
  font-family: var(--font-manrope);
  font-size: 13px;
  line-height: 1.4;
  color: #027a48;
  word-break: break-all;
}

.login-page__socials-label {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
}

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

.login-page__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 0.35), var(--shadow-card-bottom);
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #1a1a1a;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.login-page__social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.login-page__social:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 143, 78, 0.55);
  background-color: rgba(95, 143, 78, 0.04);
  box-shadow: var(--shadow-card-hover-bottom);
}

.login-page__register {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
}

.login-page__register a {
  color: #426835;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-page__register a:hover {
  color: #3a5c2b;
}

@media (min-width: 1181px) {
  .login-page,
  .register-page {
    padding-inline: 240px;
  }
}

@media (max-width: 960px) {
  .login-page__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .login-page__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .login-page__lead {
    font-size: 20px;
    line-height: 1.35;
    text-align: left;
  }

  .login-page__form-panel {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .login-page,
  .register-page {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .login-page__welcome {
    gap: 24px;
  }

  .login-page__title {
    font-size: 26px;
    line-height: 1.1;
  }

  .login-page__lead {
    font-size: 18px;
    text-align: left;
  }

  .login-page__feature {
    height: 40px;
    min-height: 62px;
    padding: 16px;
    gap: 16px;
  }

  .login-page__feature-text {
    font-size: 16px;
  }

  .login-page__form-title {
    font-size: 26px;
  }

  .login-page__form-lead,
  .login-page__label {
    font-size: 16px;
  }

  .login-page__form,
  .register-page__form {
    gap: 20px;
  }

  .login-page__control {
    min-height: 48px;
    font-size: 16px;
  }

  .login-page__submit,
  .login-page__social {
    min-height: 48px;
    height: auto;
    font-size: 16px;
  }

  .login-page__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .login-page__socials {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/*  Register page (extends login layout)                                        */
/* -------------------------------------------------------------------------- */
.register-page .login-page__inner {
  align-items: start;
}

.register-page__fields-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.register-page__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-page__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #1a1a1a;
  cursor: pointer;
}

.register-page__checkbox input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--btn-primary-bg);
}

@media (max-width: 720px) {
  .register-page__fields-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .register-page__checkbox {
    font-size: 15px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Account page (Figma 344:441)                                              */
/* -------------------------------------------------------------------------- */
.account-panel {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: var(--color-mint-bg);
}

.account-panel__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  animation: hero-card-in 0.95s var(--ease-premium) both;
}

.account-profile,
.account-nav-card {
  border: 1px solid rgba(172, 195, 150, 0.75);
  border-radius: 16px;
  background: #ffffff;
}

.account-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  min-width: 0;
}

.account-profile__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #3a5c2b;
}

.account-profile__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.account-profile__name {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-profile__email {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-profile__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin: 4px 0 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #3a5c2b;
}

.account-profile__badge[hidden] {
  display: none !important;
}

.account-profile__badge img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.account-nav-card {
  padding: 16px;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-nav__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
  transition: background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium);
}

.account-nav__link:hover {
  background: #e2f2d6;
}

.account-nav__link--active {
  background: #dcedcf;
  color: #3a5c2b;
  font-weight: 600;
}

.account-nav__link--logout {
  color: #000000;
}

.account-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  font-family: var(--font-manrope);
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

.account-card {
  border: 1px solid rgba(172, 195, 150, 0.75);
  border-radius: 16px;
  background: #ffffff;
}

.account-card__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
}

.account-upcoming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
}

.account-upcoming__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.account-upcoming__label {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.45);
}

.account-upcoming__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #000000;
}

.account-upcoming__dates {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.72);
}

.account-upcoming__counter {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.account-upcoming__counter-label {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
}

.account-upcoming__counter-value {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #3a5c2b;
}

.account-upcoming__counter-caption {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  color: #3a5c2b;
}

.account-overview {
  padding: 24px 28px;
}

.account-overview .account-card__title {
  margin-bottom: 16px;
}

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

.account-overview__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 118px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #edf8e4;
}

.account-overview__label,
.account-overview__caption {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #3a5c2b;
}

.account-overview__value {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: #3a5c2b;
}

.account-overview__caption {
  margin-top: auto;
}

.account-recent {
  padding: 24px 28px;
}

.account-recent__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.account-recent__all {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.45);
  transition: color var(--dur-fast) var(--ease-premium);
}

.account-recent__all:hover {
  color: #3a5c2b;
}

.account-recent__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-recent__empty {
  display: block;
  padding: 0;
  border-top: none;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
}

.account-recent__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(172, 195, 150, 0.35);
}

.account-recent__item:first-child {
  border-top: none;
  padding-top: 8px;
}

.account-recent__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #edf8e4;
}

.account-recent__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.account-recent__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.account-recent__room {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.account-recent__dates {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.62);
}

.account-recent__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.account-recent__tags li {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #3a5c2b;
}

.account-recent__aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
}

.account-recent__status,
.account-recent__status--confirmed,
.account-recent__status--completed,
.account-recent__status--cancelled {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #3a5c2b;
  white-space: nowrap;
}

.account-recent__price {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
  white-space: nowrap;
}

.account-bookings {
  padding: 24px 28px;
}

.account-bookings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.account-bookings__new {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.45);
  transition: color var(--dur-fast) var(--ease-premium);
}

.account-bookings__new:hover {
  color: #3a5c2b;
}

.account-bookings__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px;
  border: 1px solid rgba(172, 195, 150, 0.75);
  border-radius: 14px;
  background: #ffffff;
}

.account-bookings__tab {
  min-height: 44px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium);
}

.account-bookings__tab:hover {
  background: #e2f2d6;
}

.account-bookings__tab--active {
  background: #dcedcf;
  color: #3a5c2b;
  font-weight: 600;
}

.account-bookings__panel[hidden] {
  display: none;
}

.account-bookings__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-bookings__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 8px 0 0;
}

.account-bookings__item + .account-bookings__item {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(172, 195, 150, 0.35);
}

.account-bookings__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 220px;
  padding: 32px 16px;
  text-align: center;
}

.account-bookings__empty-title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
}

.account-bookings__empty-text {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
}

.account-bookings__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #edf8e4;
}

.account-bookings__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.account-bookings__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.account-bookings__room {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.account-bookings__dates {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.62);
}

.account-bookings__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.account-bookings__tags li {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #3a5c2b;
}

.account-bookings__aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
}

.account-bookings__status {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #3a5c2b;
  white-space: nowrap;
}

.account-bookings__price {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #3a5c2b;
  white-space: nowrap;
}

@media (min-width: 1181px) {
  .account-panel {
    padding-inline: 240px;
  }
}

@media (max-width: 960px) {
  .account-panel__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .account-sidebar {
    position: static;
  }

  .account-upcoming {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-upcoming__counter {
    align-items: flex-start;
    text-align: left;
  }

  .account-overview__grid {
    grid-template-columns: 1fr;
  }

  .account-recent__item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
  }

  .account-recent__aside {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }

  .account-bookings__item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
  }

  .account-bookings__aside {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .account-panel {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .account-panel__inner {
    gap: 24px;
  }

  .account-sidebar {
    gap: 12px;
  }

  .account-profile {
    padding: 20px 16px;
    gap: 14px;
  }

  .account-profile__avatar {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .account-profile__name {
    font-size: 18px;
  }

  .account-profile__email {
    font-size: 14px;
  }

  .account-profile__badge {
    padding: 7px 12px;
    font-size: 14px;
  }

  .account-profile__badge img {
    width: 16px;
    height: 16px;
  }

  .account-nav-card {
    padding: 12px;
  }

  .account-nav {
    gap: 6px;
  }

  .account-nav__link {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
  }

  .account-main {
    gap: 12px;
  }

  .account-upcoming,
  .account-overview,
  .account-recent {
    padding: 16px;
  }

  .account-card__title {
    font-size: 18px;
  }

  .account-upcoming__title {
    font-size: 18px;
  }

  .account-upcoming__dates {
    font-size: 14px;
  }

  .account-upcoming__label,
  .account-upcoming__counter-label,
  .account-upcoming__counter-caption {
    font-size: 13px;
  }

  .account-upcoming__counter-value {
    font-size: 32px;
  }

  .account-overview .account-card__title {
    margin-bottom: 12px;
  }

  .account-overview__item {
    min-height: 96px;
    padding: 14px 16px;
  }

  .account-overview__label,
  .account-overview__caption {
    font-size: 13px;
  }

  .account-overview__value {
    font-size: 28px;
  }

  .account-recent__all {
    font-size: 14px;
  }

  .account-recent__item {
    gap: 12px;
    padding: 14px 0;
  }

  .account-recent__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .account-recent__icon img {
    width: 18px;
    height: 18px;
  }

  .account-recent__room {
    font-size: 16px;
  }

  .account-recent__dates {
    font-size: 14px;
  }

  .account-recent__tags li {
    font-size: 12px;
    padding: 4px 8px;
  }

  .account-recent__status {
    font-size: 12px;
    padding: 6px 10px;
  }

  .account-recent__price {
    font-size: 16px;
  }

  .account-recent__aside {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .account-bookings {
    padding: 16px;
  }

  .account-bookings__header {
    margin-bottom: 16px;
  }

  .account-bookings__new {
    font-size: 14px;
  }

  .account-bookings__tabs {
    margin-bottom: 16px;
    padding: 4px;
    gap: 6px;
  }

  .account-bookings__tab {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .account-bookings__item {
    gap: 12px;
  }

  .account-bookings__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .account-bookings__icon img {
    width: 18px;
    height: 18px;
  }

  .account-bookings__room {
    font-size: 16px;
  }

  .account-bookings__dates {
    font-size: 14px;
  }

  .account-bookings__tags li {
    font-size: 12px;
    padding: 4px 8px;
  }

  .account-bookings__status {
    font-size: 12px;
    padding: 6px 10px;
  }

  .account-bookings__price {
    font-size: 16px;
  }

  .account-bookings__aside {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .account-bookings__empty {
    min-height: 180px;
    padding: 24px 12px;
  }

  .account-bookings__empty-title {
    font-size: 16px;
  }

  .account-bookings__empty-text {
    font-size: 14px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Account notifications page                                                */
/* -------------------------------------------------------------------------- */
.account-notifications {
  padding: 24px 28px;
}

.account-notifications__title {
  margin-bottom: 8px;
}

.account-notifications__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-notifications__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}

.account-notifications__item + .account-notifications__item {
  border-top: 1px solid rgba(172, 195, 150, 0.35);
}

.account-notifications__item--empty {
  display: block;
  padding: 0;
}

.account-notifications__item--empty .account-bookings__empty {
  width: 100%;
}

.account-notifications__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #edf8e4;
}

.account-notifications__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.account-notifications__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.account-notifications__heading {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.account-notifications__text {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.72);
}

.account-notifications__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.account-notifications__meta--single {
  justify-content: center;
}

.account-notifications__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #3a5c2b;
  white-space: nowrap;
}

.account-notifications__time {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .account-notifications__item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
  }

  .account-notifications__meta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 64px;
  }

  .account-notifications__meta--single {
    padding-left: 64px;
  }
}

@media (max-width: 720px) {
  .account-notifications {
    padding: 16px;
  }

  .account-notifications__title {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .account-notifications__item {
    gap: 12px;
    padding: 14px 0;
  }

  .account-notifications__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .account-notifications__icon img {
    width: 18px;
    height: 18px;
  }

  .account-notifications__heading {
    font-size: 16px;
  }

  .account-notifications__text {
    font-size: 14px;
  }

  .account-notifications__badge {
    font-size: 12px;
    padding: 6px 10px;
  }

  .account-notifications__time {
    font-size: 13px;
  }

  .account-notifications__meta,
  .account-notifications__meta--single {
    padding-left: 52px;
    gap: 8px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Account payments page                                                     */
/* -------------------------------------------------------------------------- */
.account-payments {
  padding: 24px 28px;
}

.account-payments__title {
  margin-bottom: 20px;
}

.account-payments__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.account-payments__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.account-payments__table thead tr {
  border-bottom: 1px solid rgba(172, 195, 150, 0.35);
}

.account-payments__table th {
  padding: 0 12px 16px 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.45);
  text-align: left;
  vertical-align: bottom;
}

.account-payments__table th:nth-child(1) {
  width: 16%;
}

.account-payments__table th:nth-child(2) {
  width: 28%;
}

.account-payments__table th:nth-child(3) {
  width: 12%;
}

.account-payments__table th:nth-child(4) {
  width: 20%;
}

.account-payments__table th:nth-child(5) {
  width: 24%;
  padding-right: 0;
  text-align: right;
}

.account-payments__table td {
  padding: 18px 12px 0 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #000000;
  vertical-align: top;
}

.account-payments__table td:last-child {
  padding-right: 0;
  text-align: right;
}

.account-payments__service-name {
  display: block;
  line-height: 1.35;
}

.account-payments__service-break {
  display: block;
}

.account-payments__status {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf8e4;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #3a5c2b;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .account-payments__table th:nth-child(3),
  .account-payments__table td:nth-child(3) {
    width: 10%;
  }
}

@media (max-width: 720px) {
  .account-payments {
    padding: 16px;
  }

  .account-payments__title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .account-payments__table thead {
    display: none;
  }

  .account-payments__table,
  .account-payments__table tbody,
  .account-payments__table tr,
  .account-payments__table td {
    display: block;
    width: 100%;
  }

  .account-payments__table tbody tr {
    padding: 14px 0;
    border-top: 1px solid rgba(172, 195, 150, 0.35);
  }

  .account-payments__table tbody tr:first-child {
    border-top: none;
    padding-top: 0;
  }

  .account-payments__table td {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 8px 0 0;
    text-align: left;
  }

  .account-payments__table td::before {
    content: attr(data-label);
    font-size: 13px;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.45);
  }

  .account-payments__table td:last-child {
    align-items: start;
    text-align: left;
  }

  .account-payments__status {
    font-size: 12px;
    padding: 5px 8px;
  }

  .account-payments__table td.account-payments__service {
    grid-auto-flow: row;
  }

  .account-payments__service-name {
    grid-column: 2;
    grid-row: 1;
    width: fit-content;
    max-width: 100%;
  }

  .account-payments__service-break {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/*  Account settings page                                                     */
/* -------------------------------------------------------------------------- */
.account-settings {
  padding: 24px 28px;
}

.account-settings__header {
  margin-bottom: 24px;
}

.account-settings__title {
  margin-bottom: 8px;
}

.account-settings__subtitle {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.45);
}

.account-settings__form {
  display: flex;
  flex-direction: column;
}

.account-recent__item__aside {
  display: flex;
  gap: 5px;
}

.account-bookings__item__aside {
  display: flex;
  gap: 5px;
}

.account-settings__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-settings__password-fields {
  gap: 20px;
}

.account-settings:not(.is-editing) [data-account-password-edit],
.account-settings__password-fields[hidden],
[data-account-password-view][hidden] {
  display: none;
}

.account-settings.is-editing [data-account-password-view] {
  display: none;
}

.account-settings.is-editing [data-account-password-edit] {
  display: grid;
}

.account-settings.is-editing .account-settings__control:read-only {
  color: #000000;
  cursor: text;
}

.account-settings__actions [hidden] {
  display: none;
}

.account-settings__control:read-only {
  cursor: default;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-settings:not(.is-editing) .account-settings__control {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.account-settings__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.account-settings__field--full {
  width: 100%;
}

.account-settings__label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.account-settings__control {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 61px;
  padding: 16px 20px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background-color: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.45);
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.account-settings__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.account-settings__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.account-settings__notifications {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(172, 195, 150, 0.35);
}

.account-settings__section-title {
  margin: 0 0 8px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
}

.account-settings__toggles {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-settings__toggle-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.account-settings__toggle-item + .account-settings__toggle-item {
  border-top: 1px solid rgba(172, 195, 150, 0.35);
}

.account-settings__toggle-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.account-settings__toggle-title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.account-settings__toggle-text {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: #3A5C2B;
}

.account-settings__toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 52px;
  height: 30px;
  cursor: pointer;
}

.account-settings__toggle input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.account-settings__toggle-track {
  position: relative;
  display: block;
  width: 52px;
  height: 30px;
  border: 1.5px solid rgba(172, 195, 150, 0.75);
  border-radius: 999px;
  background: #f4f4f4;
  transition: background-color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.account-settings__toggle-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
  transition: left var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.account-settings__toggle input:checked + .account-settings__toggle-track {
  border-color: #5f8f4e;
  background: #5f8f4e;
}

.account-settings__toggle input:checked + .account-settings__toggle-track::after {
  left: calc(100% - 25px);
}

.account-settings__toggle:hover .account-settings__toggle-track {
  border-color: #6fa255;
}

.account-settings__toggle input:disabled + .account-settings__toggle-track {
  opacity: 0.72;
  cursor: not-allowed;
}

.account-settings__toggle input:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.account-settings__toggle input:focus-visible + .account-settings__toggle-track {
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.account-settings__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.account-settings__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.account-settings__btn:hover {
  transform: translateY(-1px);
}

.account-settings__btn--primary {
  border: 0;
  background-color: var(--btn-primary-bg);
  color: #ffffff;
}

.account-settings__btn--primary:hover {
  background-color: #547f45;
}

.account-settings__btn--outline {
  border: 1.5px solid var(--btn-primary-bg);
  background-color: #ffffff;
  color: var(--btn-primary-bg);
}

.account-settings__btn--outline:hover {
  background-color: rgba(95, 143, 78, 0.06);
}

.account-settings__btn--danger {
  border: 1.5px solid #e8a0a0;
  background-color: #ffffff;
  color: #c94545;
}

.account-settings__btn--danger:hover {
  background-color: rgba(201, 69, 69, 0.05);
  border-color: #d88a8a;
}

.account-settings__message {
  margin: 16px 0 0;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
}

.account-settings__message--success {
  color: #3a5c2b;
}

.account-settings__message--error {
  color: #c94545;
}

.account-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.account-settings-modal[hidden] {
  display: none;
}

.account-settings-modal-open {
  overflow: hidden;
}

.account-settings-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.account-settings-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 28px 24px 24px;
  border: 1px solid rgba(172, 195, 150, 0.75);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.account-settings-modal__title {
  margin: 0 0 24px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: #000000;
  text-align: center;
}

.account-settings-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 960px) {
  .account-settings__row {
    grid-template-columns: 1fr;
  }

  .account-settings__toggle-item {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .account-settings {
    padding: 16px;
  }

  .account-settings__header {
    margin-bottom: 20px;
  }

  .account-settings__title {
    font-size: 18px;
  }

  .account-settings__subtitle {
    font-size: 14px;
  }

  .account-settings__label {
    font-size: 16px;
  }

  .account-settings__control {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 15px;
  }

  .account-settings__notifications {
    margin-top: 24px;
    padding-top: 24px;
  }

  .account-settings__section-title {
    font-size: 18px;
  }

  .account-settings__toggle-item {
    gap: 16px;
    padding: 14px 0;
  }

  .account-settings__toggle-title {
    font-size: 16px;
  }

  .account-settings__toggle-text {
    font-size: 14px;
  }

  .account-settings__toggle-track {
    width: 48px;
    height: 28px;
  }

  .account-settings__toggle-track::after {
    width: 20px;
    height: 20px;
  }

  .account-settings__toggle input:checked + .account-settings__toggle-track::after {
    left: calc(100% - 23px);
  }

  .account-settings__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .account-settings__btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Contacts page info                                                        */
/* -------------------------------------------------------------------------- */
.contacts-info {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.contacts-info__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.contacts-info__title {
  margin-bottom: 50px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.contacts-info__card {
  padding: 40px 50px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1), var(--shadow-card-bottom);
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.contacts-info__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.contacts-info__layout {
  display: grid;
  grid-template-columns: 213px minmax(0, 1fr);
  gap: 50px;
  align-items: stretch;
}

.contacts-info__details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 213px;
  height: 100%;
  min-height: 100%;
}

.contacts-info__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.contacts-info__item:nth-child(1) .contacts-info__value {
  animation-delay: 0.2s;
}

.contacts-info__item:nth-child(2) .contacts-info__value {
  animation-delay: 0.28s;
}

.contacts-info__item:nth-child(3) .contacts-info__value {
  animation-delay: 0.36s;
}

.contacts-info__item:nth-child(4) .contacts-info__value {
  animation-delay: 0.44s;
}

.contacts-info__label {
  flex-shrink: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #426835;
}

.contacts-info__value {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 213px;
  max-width: 213px;
  min-height: 88px;
  padding: 20px;
  border-radius: 20px;
  background: #b5d4a8;
  box-shadow: 0 2px 10px rgba(66, 104, 53, 0.08);
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  animation: reviews-reveal-in 0.85s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.contacts-info__value:hover {
  transform: translateY(-3px) scale(1.01);
  background-color: #a8c99b;
  box-shadow: var(--shadow-card-hover);
}

.contacts-info__value:active {
  transform: translateY(-1px) scale(0.995);
}

a.contacts-info__value:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.55);
  outline-offset: 3px;
}

.contacts-info__value--stack {
  flex-direction: column;
  gap: 2px;
}

.contacts-info__form-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  padding: 40px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 0.35);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.contacts-info__form-wrap:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.contacts-info__form-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.contacts-info__form-title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}

.contacts-info__form-lead {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
}

.contacts-info__form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  min-height: 0;
  color-scheme: light;
}

.contacts-info__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
}

.contacts-info__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.contacts-info__field--full {
  width: 100%;
  flex: 1;
  min-height: 0;
}

.contacts-info__field-label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.contacts-info__control {
  width: 100%;
  min-height: 61px;
  padding: 16px 20px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background-color: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    transform var(--dur-fast) var(--ease-premium);
}

.contacts-info__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.contacts-info__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.contacts-info__control::placeholder {
  color: #000000;
  opacity: 0.55;
}

.contacts-info__select-wrap {
  position: relative;
  display: block;
}

.contacts-info__select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #3a5c2b;
  border-bottom: 1.5px solid #3a5c2b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.contacts-info__select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.contacts-info__textarea {
  flex: 1;
  min-height: 130px;
  resize: none;
}

.contacts-info__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
}

.contacts-info__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #5f8f4e;
  cursor: pointer;
}

.contacts-info__consent-text {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}

.contacts-info__consent-link {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.contacts-info__consent-link:hover {
  color: #3a5c2b;
}

.contacts-info__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  max-width: 100%;
  min-height: 52px;
  margin-top: auto;
  margin-inline: auto;
  flex-shrink: 0;
  padding: 16px 51px;
  border: 0;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.contacts-info__submit:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.contacts-info__submit:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.contacts-info__submit:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.55);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------- */
/*  Contacts page map                                                         */
/* -------------------------------------------------------------------------- */
.contacts-map {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: var(--color-mint-bg);
}

.contacts-map__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.contacts-map__title {
  margin-bottom: 50px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.contacts-map__frame {
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1);
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.contacts-map__frame:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.contacts-map__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 451;
  object-fit: cover;
  transition: transform var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium);
}

.contacts-map__frame:hover .contacts-map__image {
  transform: scale(1.01);
  filter: saturate(1.04);
}

/* -------------------------------------------------------------------------- */
/*  Contacts page social                                                      */
/* -------------------------------------------------------------------------- */
.contacts-social {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background-color: #ffffff;
}

.contacts-social__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.contacts-social__title {
  margin-bottom: 50px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.contacts-social__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 50px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: var(--color-mint-bg);
  box-shadow: 0 0 3px rgba(66, 104, 53, 1), var(--shadow-card-bottom);
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.contacts-social__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.contacts-social__text {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 3px;
  color: #426835;
}

.contacts-social__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.contacts-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 16px 24px;
  border-radius: 15px;
  background: #e7ffd2;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.contacts-social__btn:hover {
  transform: translateY(-2px);
  background-color: #dff8c4;
  box-shadow: var(--shadow-card-hover);
}

.contacts-social__btn:active {
  transform: translateY(0);
  opacity: 0.94;
}

.contacts-social__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.contacts-social__btn-text {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #426835;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .contacts-social__card {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 20px;
  }

  .contacts-social__actions {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .contacts-social__btn {
    width: 100%;
    justify-content: center;
  }

  .contacts-info__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contacts-info__details,
  .contacts-info__form-wrap {
    width: 100%;
  }

  .contacts-info__form-wrap {
    height: auto;
    min-height: 0;
  }

  .contacts-info__form {
    flex: none;
  }

  .contacts-info__field--full {
    flex: none;
  }

  .contacts-info__textarea {
    flex: none;
    resize: vertical;
  }

  .contacts-info__submit {
    margin-top: 0;
  }

  .contacts-info__details {
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 40px;
  }

  .contacts-info__item {
    flex: none;
    gap: 10px;
  }

  .contacts-info__value {
    width: 100%;
    max-width: none;
    flex: none;
    min-height: 88px;
    height: 88px;
  }

  .contacts-info__item:nth-child(1) .contacts-info__value {
    animation-delay: 0.12s;
  }

  .contacts-info__item:nth-child(2) .contacts-info__value {
    animation-delay: 0.18s;
  }

  .contacts-info__item:nth-child(3) .contacts-info__value {
    animation-delay: 0.24s;
  }

  .contacts-info__item:nth-child(4) .contacts-info__value {
    animation-delay: 0.3s;
  }
}

/* -------------------------------------------------------------------------- */
/*  Rooms search                                                              */
/* -------------------------------------------------------------------------- */
.rooms-search {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.rooms-search__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.rooms-search__title {
  margin-bottom: 50px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.rooms-search__form {
  width: 100%;
  padding: 50px 40px;
  border: 1px solid rgba(95, 143, 78, 0.28);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  color-scheme: light;
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.rooms-search__form:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 143, 78, 0.45);
  box-shadow: var(--shadow-card-hover-bottom);
}

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

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

.rooms-search__label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.rooms-search__control {
  width: 100%;
  min-height: 61px;
  padding: 16px 20px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background-color: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    transform var(--dur-fast) var(--ease-premium);
}

.rooms-search__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.rooms-search__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.rooms-search__control[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
  transition: opacity var(--dur-fast) var(--ease-premium);
}

.rooms-search__control[type="date"]:hover::-webkit-calendar-picker-indicator,
.rooms-search__control[type="date"]:focus::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.rooms-search__select-wrap {
  position: relative;
  display: block;
}

.rooms-search__select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #3a5c2b;
  border-bottom: 1.5px solid #3a5c2b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.rooms-search__select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.rooms-search__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 40px auto 0;
  padding: 16px 51px;
  border: 0;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.rooms-search__submit:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.rooms-search__submit:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.rooms-search__submit:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.55);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------- */
/*  Rooms catalog                                                             */
/* -------------------------------------------------------------------------- */
.rooms-catalog {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: var(--color-mint-bg);
}

.rooms-catalog__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.rooms-catalog__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.rooms-catalog__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}

.rooms-catalog__lead {
  max-width: 820px;
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.rooms-catalog__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rooms-catalog__card {
  position: relative;
  overflow: hidden;
  height: 404px;
  display: grid;
  grid-template-columns: 568px 408px auto;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  padding: 50px 40px;
  border: 0;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.rooms-catalog__card:nth-child(2) {
  animation-delay: 0.06s;
}

.rooms-catalog__card:nth-child(3) {
  animation-delay: 0.12s;
}

.rooms-catalog__card:nth-child(4) {
  animation-delay: 0.18s;
}

.rooms-catalog__card::after {
  content: "";
  position: absolute;
  right: 80px;
  top: 50px;
  width: 200px;
  height: 200px;
  background: url("../assets/images/rooms/Cube-Icon.svg") center / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.rooms-catalog__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.rooms-catalog__media {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
}

.rooms-catalog__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 304px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) var(--ease-premium);
}

.rooms-catalog__card:hover .rooms-catalog__photo {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.rooms-catalog__content {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rooms-catalog__type {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #5f8f4e;
}

.rooms-catalog__card-title {
  margin-top: 20px;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}

.rooms-catalog__description {
  max-width: 408px;
  margin-top: 20px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
}

.rooms-catalog__area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
}

.rooms-catalog__area-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.rooms-catalog__price {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  color: #426835;
}

.rooms-catalog__btn {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.rooms-catalog__btn:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.rooms-catalog__btn:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

/* -------------------------------------------------------------------------- */
/*  Rooms comfort                                                             */
/* -------------------------------------------------------------------------- */
.rooms-comfort {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.rooms-comfort__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.rooms-comfort__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.rooms-comfort__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.rooms-comfort__lead {
  margin-top: 25px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.rooms-comfort__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.rooms-comfort__card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 50px 40px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  text-align: center;
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.rooms-comfort__card:nth-child(2) {
  animation-delay: 0.04s;
}

.rooms-comfort__card:nth-child(3) {
  animation-delay: 0.08s;
}

.rooms-comfort__card:nth-child(4) {
  animation-delay: 0.12s;
}

.rooms-comfort__card:nth-child(5) {
  animation-delay: 0.16s;
}

.rooms-comfort__card:nth-child(6) {
  animation-delay: 0.2s;
}

.rooms-comfort__card:nth-child(7) {
  animation-delay: 0.24s;
}

.rooms-comfort__card:nth-child(8) {
  animation-delay: 0.28s;
}

.rooms-comfort__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.rooms-comfort__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.rooms-comfort__card-title {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}

/* -------------------------------------------------------------------------- */
/*  Rooms reservation                                                         */
/* -------------------------------------------------------------------------- */
.rooms-reservation {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, var(--color-mint-bg) 0%, #ffffff 100%);
}

.rooms-reservation__card {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.rooms-reservation__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.rooms-reservation__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.rooms-reservation__title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.rooms-reservation__text {
  max-width: 735px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: #000000;
  text-align: center;
}

.rooms-reservation__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.rooms-reservation__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.rooms-reservation__btn--primary {
  color: #ffffff;
  background-color: var(--btn-primary-bg);
}

.rooms-reservation__btn--primary:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.rooms-reservation__btn--ghost {
  color: var(--btn-ghost-text);
  background-color: #ffffff;
  box-shadow: var(--btn-ghost-shadow);
}

.rooms-reservation__btn--ghost:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.22), 0 0 6px rgba(95, 143, 78, 0.35);
}

/* -------------------------------------------------------------------------- */
/*  Services reservation                                                      */
/* -------------------------------------------------------------------------- */
.services-reservation {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, var(--color-mint-bg) 0%, #ffffff 100%);
}

.services-reservation__card {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.services-reservation__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.services-reservation__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.services-reservation__title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.services-reservation__text {
  max-width: 735px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: #000000;
  text-align: center;
}

.services-reservation__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.services-reservation__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 51px;
  border-radius: var(--radius-btn);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.services-reservation__btn--primary {
  color: #ffffff;
  background-color: var(--btn-primary-bg);
}

.services-reservation__btn--primary:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.services-reservation__btn--ghost {
  color: var(--btn-ghost-text);
  background-color: #ffffff;
  box-shadow: var(--btn-ghost-shadow);
}

.services-reservation__btn--ghost:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.22), 0 0 6px rgba(95, 143, 78, 0.35);
}

/* Mobile */
@media (max-width: 720px) {
  .site-footer {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__brand-block,
  .site-footer__column {
    align-items: center;
    text-align: center;
  }

  .site-footer__text {
    max-width: none;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
  }

  .site-footer__logo {
    width: 86px;
    height: auto;
  }

  .site-footer__btn {
    width: 100%;
    min-height: 44px;
    margin-top: 20px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .site-footer__copy {
    margin-top: 20px;
    font-size: 13px;
  }

  .site-footer__column {
    gap: 18px;
  }

  .site-footer__title {
    font-size: 22px;
  }

  .site-footer__list {
    align-items: center;
    gap: 14px;
    font-size: 16px;
  }

  .site-footer__socials {
    justify-content: center;
  }

  .site-footer__social,
  .site-footer__social img {
    width: 36px;
    height: 36px;
  }

  .services-hero {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .about-hero {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .contacts-hero {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .contacts-hero__inner {
    gap: 24px;
  }

  .contacts-hero__title {
    max-width: 330px;
    gap: 6px;
    font-size: 30px;
    line-height: 1.05;
  }

  .contacts-hero__text {
    max-width: 350px;
    font-size: 24px;
    line-height: 1.35;
    text-align: left;
  }

  .contacts-info {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .contacts-info__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.05;
  }

  .contacts-info__card {
    padding: 20px;
    border-radius: 16px;
  }

  .contacts-info__card:hover {
    transform: none;
  }

  .contacts-info__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contacts-info__details {
    gap: 20px;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .contacts-info__item {
    width: 100%;
    flex: none;
    gap: 10px;
  }

  .contacts-info__label {
    font-size: 16px;
    color: #426835;
  }

  .contacts-info__value {
    width: 100%;
    flex: none;
    min-height: 88px;
    height: 88px;
    padding: 20px;
    border-radius: 20px;
    font-size: 18px;
    line-height: 1.3;
  }

  .contacts-info__item:nth-child(1) .contacts-info__value {
    animation-delay: 0.08s;
  }

  .contacts-info__item:nth-child(2) .contacts-info__value {
    animation-delay: 0.14s;
  }

  .contacts-info__item:nth-child(3) .contacts-info__value {
    animation-delay: 0.2s;
  }

  .contacts-info__item:nth-child(4) .contacts-info__value {
    animation-delay: 0.26s;
  }

  .contacts-info__form-wrap {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .contacts-info__form-wrap:hover {
    transform: none;
  }

  .contacts-info__form-header {
    gap: 10px;
    margin-bottom: 20px;
  }

  .contacts-info__form-title {
    font-size: 22px;
  }

  .contacts-info__form-lead {
    font-size: 16px;
    line-height: 1.35;
  }

  .contacts-info__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacts-info__field-label {
    font-size: 16px;
  }

  .contacts-info__control {
    min-height: 52px;
    font-size: 16px;
  }

  .contacts-info__form {
    flex: none;
    min-height: 0;
  }

  .contacts-info__field--full {
    flex: none;
  }

  .contacts-info__textarea {
    flex: none;
    min-height: 120px;
    resize: vertical;
  }

  .contacts-info__submit {
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    font-size: 16px;
  }

  .contacts-info__consent-text {
    font-size: 14px;
    line-height: 1.35;
  }

  .contacts-map {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .contacts-map__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.05;
  }

  .contacts-map__frame {
    min-height: 230px;
  }

  .contacts-map__image {
    width: 100%;
    height: 230px;
    min-height: 230px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .contacts-map__frame:hover {
    transform: none;
  }

  .contacts-map__frame:hover .contacts-map__image {
    transform: none;
    filter: none;
  }

  .contacts-social {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .contacts-social__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.05;
  }

  .contacts-social__card {
    gap: 20px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .contacts-social__card:hover {
    transform: none;
  }

  .contacts-social__text {
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
  }

  .contacts-social__actions {
    gap: 14px;
  }

  .contacts-social__btn {
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 15px;
  }

  .contacts-social__btn:hover {
    transform: none;
    box-shadow: var(--btn-ghost-shadow);
  }

  .contacts-social__icon {
    width: 32px;
    height: 32px;
  }

  .contacts-social__btn-text {
    font-size: 16px;
  }

  .about-hero__inner {
    gap: 24px;
  }

  .about-hero__title {
    max-width: 330px;
    gap: 6px;
    font-size: 30px;
    line-height: 1.05;
  }

  .about-hero__text {
    max-width: 350px;
    font-size: 24px;
    line-height: 1.35;
    text-align: left;
  }

  .about-location {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .about-location__header {
    margin-bottom: 24px;
  }

  .about-location__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .about-location__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .about-location__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
    border-radius: 16px;
  }

  .about-location__content {
    gap: 20px;
  }

  .about-location__text {
    gap: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .about-location__distances {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-location__distance {
    padding: 14px 16px;
    gap: 12px;
  }

  .about-location__distance-icon-wrap {
    width: 40px;
    height: 40px;
  }

  .about-location__distance-icon {
    width: 22px;
    height: 22px;
  }

  .about-location__distance-name,
  .about-location__distance-time {
    font-size: 16px;
  }

  .about-location__places {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 22px;
  }

  .about-location__place {
    height: auto;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .about-location__place-icon {
    width: 22px;
    height: 22px;
  }

  .about-location__place-name {
    font-size: 16px;
  }

  .about-who {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .about-who__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.05;
  }

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

  .about-who__photo {
    order: -1;
    min-height: 220px;
    height: auto;
    border-radius: 12px;
  }

  .about-who__content {
    gap: 20px;
  }

  .about-who__card {
    gap: 16px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.45;
    border-radius: 16px;
  }

  .about-who__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .about-features {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .about-features__header {
    margin-bottom: 24px;
  }

  .about-features__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .about-features__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .about-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 14px;
  }

  .about-features__card {
    height: 100%;
    min-height: 0;
    gap: 10px;
    padding: 20px 12px;
    border-radius: 16px;
    justify-content: center;
  }

  .about-features__highlight {
    font-size: 22px;
  }

  .about-features__highlight--text {
    font-size: 22px;
  }

  .about-features__subtitle {
    font-size: 18px;
  }

  .about-features__text {
    font-size: 16px;
    line-height: 1.35;
  }

  .about-gallery {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .about-gallery__header {
    margin-bottom: 24px;
  }

  .about-gallery__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .about-gallery__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .about-gallery__layout {
    gap: 14px;
  }

  .about-gallery__viewer {
    display: block;
    width: 100%;
    height: 220px;
  }

  .about-gallery__main {
    height: 100%;
    min-height: 0;
  }

  .about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .about-gallery__thumb {
    order: unset;
    height: 72px;
    border-radius: 10px;
  }

  .about-gallery__thumb--large,
  .about-gallery__thumb--small {
    grid-column: auto;
    height: 72px;
    border-radius: 10px;
  }

  .about-gallery__thumb.is-active {
    border-color: var(--btn-primary-bg);
    box-shadow: 0 0 0 2px rgba(95, 143, 78, 0.25);
  }

  .about-gallery__photo {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .services-hero__inner {
    gap: 24px;
  }

  .services-hero__title {
    max-width: 330px;
    gap: 6px;
    font-size: 30px;
    line-height: 1.05;
  }

  .services-hero__text {
    max-width: 350px;
    font-size: 24px;
    line-height: 1.35;
  }

  .services-conference {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .services-conference__header {
    margin-bottom: 24px;
  }

  .services-conference__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .services-conference__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .services-conference__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
    border-radius: 16px;
  }

  .services-conference__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 220px 150px;
    gap: 14px;
  }

  .services-conference__photo {
    min-height: 0;
    border-radius: 12px;
  }

  .services-conference__photo--main {
    grid-column: 1 / -1;
  }

  .services-conference__content {
    gap: 22px;
  }

  .services-conference__price-card {
    padding: 10px 16px;
  }

  .services-conference__price {
    font-size: 22px;
    line-height: 1.35;
  }

  .services-conference__price-label {
    font-size: 16px;
    line-height: 1.35;
  }

  .services-conference__features {
    gap: 14px;
  }

  .services-conference__feature {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .services-conference__feature-name {
    gap: 10px;
    font-size: 16px;
    line-height: 1.35;
    white-space: normal;
  }

  .services-conference__feature-icon {
    width: 18px;
    height: 18px;
  }

  .services-conference__feature-value {
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .services-conference__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  /* Sauna mobile */
  .services-sauna {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .services-sauna__header {
    margin-bottom: 24px;
  }

  .services-sauna__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .services-sauna__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .services-sauna__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
    border-radius: 16px;
  }

  .services-sauna__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 220px 150px;
    gap: 14px;
  }

  .services-sauna__photo {
    min-height: 0;
    border-radius: 12px;
  }

  .services-sauna__photo--main {
    grid-column: 1 / -1;
  }

  .services-sauna__content {
    gap: 20px;
  }

  .services-sauna__features {
    gap: 12px;
  }

  .services-sauna__feature {
    gap: 12px;
  }

  .services-sauna__feature-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .services-sauna__feature span {
    font-size: 16px;
    line-height: 1.4;
  }

  .services-sauna__price-header,
  .services-sauna__price-footer {
    padding: 14px 16px;
  }

  .services-sauna__price-title {
    font-size: 16px;
  }

  .services-sauna__price-row {
    padding: 12px 16px;
  }

  .services-sauna__price-name,
  .services-sauna__price-value {
    font-size: 16px;
  }

  .services-sauna__price-note {
    font-size: 14px;
  }

  .services-sauna__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .services-extra {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .services-extra__header {
    margin-bottom: 24px;
  }

  .services-extra__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .services-extra__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

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

  .services-extra__card {
    min-height: 180px;
    gap: 12px;
    padding: 24px 14px;
    border-radius: 16px;
  }

  .services-extra__icon-wrap {
    width: 40px;
    height: 40px;
  }

  .services-extra__icon {
    width: 22px;
    height: 22px;
  }

  .services-extra__card-title {
    font-size: 18px;
    line-height: 1.25;
  }

  .services-extra__card-text {
    font-size: 16px;
    line-height: 1.35;
  }

  .rooms-hero {
    min-height: 166px;
    padding-block: 26px 24px;
    padding-inline: 16px;
  }

  .rooms-hero__title {
    max-width: 330px;
    font-size: 30px;
    line-height: 1.05;
  }

  .rooms-hero__text {
    max-width: 350px;
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.35;
  }

  .rooms-search {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .rooms-search__title {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 0.01em;
  }

  .rooms-search__form {
    padding: 24px 20px;
    border-radius: 15px;
  }

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

  .rooms-search__field {
    gap: 8px;
  }

  .rooms-search__label {
    font-size: 16px;
  }

  .rooms-search__control {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .rooms-search__select-wrap::after {
    right: 16px;
  }

  .rooms-search__submit {
    width: 100%;
    min-height: 44px;
    margin-top: 22px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .rooms-catalog {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .rooms-catalog__header {
    margin-bottom: 24px;
  }

  .rooms-catalog__title {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: 0.01em;
  }

  .rooms-catalog__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .rooms-catalog__list {
    gap: 18px;
  }

  .rooms-catalog__card {
    height: auto;
    min-height: unset;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
  }

  .rooms-catalog__card::after {
    right: 18px;
    top: 420px;
    bottom: 96px;
    width: 120px;
    height: 82px;
    transform: none;
    opacity: 0.8;
  }

  .rooms-catalog__photo {
    position: static;
    height: 220px;
    border-radius: 10px;
  }

  .rooms-catalog__type {
    font-size: 16px;
  }

  .rooms-catalog__card-title {
    margin-top: 14px;
    font-size: 22px;
    line-height: 1.25;
  }

  .rooms-catalog__description,
  .rooms-catalog__area {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.35;
  }

  .rooms-catalog__price {
    margin-top: 22px;
    padding-top: 0;
    font-size: 22px;
  }

  .rooms-catalog__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .rooms-comfort {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .rooms-comfort__header {
    margin-bottom: 24px;
  }

  .rooms-comfort__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .rooms-comfort__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

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

  .rooms-comfort__card {
    min-height: 150px;
    gap: 12px;
    padding: 24px 12px;
    border-radius: 16px;
  }

  .rooms-comfort__icon {
    width: 36px;
    height: 36px;
  }

  .rooms-comfort__card-title {
    font-size: 18px;
    line-height: 1.25;
  }

  .rooms-reservation {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .rooms-reservation__card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .rooms-reservation__content {
    gap: 18px;
  }

  .rooms-reservation__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .rooms-reservation__text {
    font-size: 16px;
    line-height: 1.45;
  }

  .rooms-reservation__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .rooms-reservation__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .services-reservation {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .services-reservation__card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .services-reservation__content {
    gap: 18px;
  }

  .services-reservation__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .services-reservation__text {
    font-size: 16px;
    line-height: 1.45;
  }

  .services-reservation__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .services-reservation__btn {
    width: 100%;
    min-height: 44px;
    padding-block: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Reviews page hero                                                         */
/* -------------------------------------------------------------------------- */
.reviews-hero {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, #ffffff 50%, var(--color-mint-bg) 100%);
}

.reviews-hero__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reviews-hero__inner > .reviews-summary__card {
  width: fit-content;
  max-width: 100%;
}

.reviews-hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.reviews-hero__title span:last-child {
  color: #3a5c2b;
}

.reviews-hero__text {
  max-width: 920px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
  text-align: justify;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

/* -------------------------------------------------------------------------- */
/*  Reviews page summary (inside reviews-hero)                                */
/* -------------------------------------------------------------------------- */
.reviews-summary__card {
  --reviews-summary-side-width: 150px;
  --reviews-summary-inner-gap: 40px;

  display: grid;
  grid-template-columns:
    var(--reviews-summary-side-width)
    auto
    auto
    auto
    var(--reviews-summary-side-width);
  align-items: center;
  justify-content: start;
  width: fit-content;
  max-width: 100%;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
}

.reviews-summary__col {
  min-width: 0;
  box-sizing: border-box;
}

.reviews-summary__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  padding-inline: var(--reviews-summary-inner-gap);
}

.reviews-summary__stick {
  display: block;
  width: 1px;
  height: 150px;
  flex-shrink: 0;
  object-fit: contain;
}

.reviews-summary__col--rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: var(--reviews-summary-side-width);
  max-width: var(--reviews-summary-side-width);
  flex-shrink: 0;
  padding: 0;
}

.reviews-summary__col--bars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.reviews-summary__col--totals {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: var(--reviews-summary-side-width);
  max-width: var(--reviews-summary-side-width);
  flex-shrink: 0;
  padding: 0;
}

.reviews-summary__score {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #3a5c2b;
  max-width: 100%;
  text-align: center;
}

.reviews-summary__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 100%;
}

.reviews-summary__star {
  display: block;
  width: 25px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.reviews-summary__star-half {
  position: relative;
  width: 25px;
  height: 24px;
  flex-shrink: 0;
}

.reviews-summary__star--ghost {
  opacity: 0.32;
}

.reviews-summary__star-half-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  overflow: hidden;
}

.reviews-summary__star-half-fill .reviews-summary__star {
  max-width: none;
}

.reviews-summary__caption {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
  max-width: 100%;
  text-align: center;
}

.reviews-summary__bars {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews-summary__bar-row {
  display: grid;
  grid-template-columns: 18px 18px 186px auto;
  align-items: center;
  column-gap: 6px;
}

.reviews-summary__bar-label,
.reviews-summary__bar-count {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #000000;
}

.reviews-summary__bar-count {
  min-width: 32px;
  text-align: left;
}

.reviews-summary__bar-star {
  display: block;
  width: 18px;
  height: 17px;
  object-fit: contain;
}

.reviews-summary__bar-track {
  width: 186px;
  height: 14px;
  border-radius: 999px;
  background: #f0f3ed;
  overflow: hidden;
}

.reviews-summary__bar-fill {
  display: block;
  height: 100%;
  min-width: 0;
  border-radius: inherit;
  background: #5f8f4e;
}

.reviews-summary__total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.reviews-summary__total-value {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #3a5c2b;
  max-width: 100%;
}

.reviews-summary__total-value--accent {
  color: #3a5c2b;
}

.reviews-summary__total-label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
  max-width: 100%;
}

@media (max-width: 960px) {
  .reviews-hero__inner {
    gap: 24px;
  }

  .reviews-hero__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .reviews-hero__text {
    font-size: 20px;
    line-height: 1.35;
    text-align: left;
  }

  .reviews-summary__score {
    font-size: 40px;
  }

  .reviews-summary__star {
    width: 20px;
    height: 19px;
  }

  .reviews-summary__star-half {
    width: 20px;
    height: 19px;
  }

  .reviews-summary__caption,
  .reviews-summary__bar-label,
  .reviews-summary__bar-count,
  .reviews-summary__total-label {
    font-size: 15px;
  }

  .reviews-summary__total-value {
    font-size: 36px;
  }

  .reviews-hero__inner > .reviews-summary__card {
    width: 100%;
  }

  .reviews-summary__card {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }

  .reviews-summary__col--rating,
  .reviews-summary__col--totals {
    width: 100%;
    max-width: none;
  }

  .reviews-summary__col--rating,
  .reviews-summary__col--bars {
    padding: 0 0 20px;
  }

  .reviews-summary__col--bars {
    justify-content: stretch;
    padding-bottom: 20px;
  }

  .reviews-summary__bars {
    width: 100%;
    gap: 12px;
  }

  .reviews-summary__bar-row {
    grid-template-columns: 14px 14px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .reviews-summary__bar-track {
    width: auto;
  }

  .reviews-summary__divider {
    padding: 0;
    margin-block: 4px 20px;
  }

  .reviews-summary__stick {
    width: 150px;
    height: 1px;
    transform: rotate(90deg);
  }

  .reviews-summary__col--totals {
    gap: 20px;
    padding: 20px 0 0;
  }
}

@media (max-width: 720px) {
  .reviews-hero {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .reviews-hero__inner {
    gap: 24px;
  }

  .reviews-hero__title {
    max-width: 100%;
    gap: 6px;
    font-size: 26px;
    line-height: 1.1;
  }

  .reviews-hero__text {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.35;
    text-align: left;
  }

  .reviews-summary__card {
    gap: 0;
    padding: 0;
    border-radius: 0;
  }

  .reviews-summary__col--rating,
  .reviews-summary__col--bars {
    padding: 0 0 16px;
  }

  .reviews-summary__divider {
    padding: 0;
    margin-block: 0 16px;
  }

  .reviews-summary__col--totals {
    gap: 16px;
    padding: 16px 0 0;
  }

  .reviews-summary__score {
    font-size: 32px;
  }

  .reviews-summary__star {
    width: 18px;
    height: 17px;
  }

  .reviews-summary__star-half {
    width: 18px;
    height: 17px;
  }

  .reviews-summary__caption,
  .reviews-summary__bar-label,
  .reviews-summary__bar-count,
  .reviews-summary__total-label {
    font-size: 14px;
  }

  .reviews-summary__total-value {
    font-size: 28px;
  }

  .reviews-summary__bars {
    gap: 10px;
  }

  .reviews-summary__bar-row {
    grid-template-columns: 14px 14px minmax(0, 1fr) 28px;
    gap: 8px;
  }

  .reviews-summary__bar-star {
    width: 14px;
    height: 13px;
  }

  .reviews-summary__bar-track {
    height: 10px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Reviews page list (Figma 303:2961)                                        */
/* -------------------------------------------------------------------------- */
.reviews-list {
  width: 100%;
  padding-block: 0 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.reviews-list__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reviews-list__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.reviews-list__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews-list__loading,
.reviews-list__empty {
  margin: 0;
  padding: 32px;
  border: 1.5px dashed rgba(95, 143, 78, 0.35);
  border-radius: 16px;
  font-family: var(--font-manrope);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
}

.reviews-list__card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  opacity: 0;
  transform: translateY(18px);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.reviews-list__card.is-revealed {
  animation: reviews-reveal-in 0.85s var(--ease-premium) both;
}

.reviews-list__card:nth-child(1).is-revealed {
  animation-delay: 0.04s;
}

.reviews-list__card:nth-child(2).is-revealed {
  animation-delay: 0.12s;
}

.reviews-list__card:nth-child(3).is-revealed {
  animation-delay: 0.2s;
}

.reviews-list__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover-bottom);
  border-color: rgba(95, 143, 78, 0.55);
}

.reviews-list__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-list__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews-list__star {
  display: block;
  width: 25px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.reviews-list__score {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #1a1a1a;
}

.reviews-list__text {
  margin: 24px 0 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
  text-align: justify;
}

.reviews-list__divider {
  width: 100%;
  margin-top: 24px;
  line-height: 0;
}

.reviews-list__stick {
  display: block;
  width: 100%;
  height: 1px;
  object-fit: cover;
}

.reviews-list__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.reviews-list__author-block {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.reviews-list__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f3e2;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #3a5c2b;
  text-transform: uppercase;
}

.reviews-list__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.reviews-list__author {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #1a1a1a;
}

.reviews-list__room {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #666666;
}

.reviews-list__date {
  flex-shrink: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #666666;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .reviews-list__inner {
    gap: 30px;
  }

  .reviews-list__title {
    font-size: 32px;
  }

  .reviews-list__items {
    gap: 20px;
  }

  .reviews-list__card {
    padding: 24px;
  }

  .reviews-list__score,
  .reviews-list__author {
    font-size: 16px;
  }

  .reviews-list__text {
    font-size: 16px;
  }

  .reviews-list__room,
  .reviews-list__date {
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  .reviews-list {
    padding-block: 0 30px;
    padding-inline: 16px;
  }

  .reviews-list__inner {
    gap: 24px;
  }

  .reviews-list__title {
    font-size: 26px;
    line-height: 1.05;
  }

  .reviews-list__items {
    gap: 14px;
  }

  .reviews-list__card {
    padding: 20px;
    border-radius: 16px;
  }

  .reviews-list__star {
    width: 18px;
    height: 17px;
  }

  .reviews-list__score {
    font-size: 14px;
  }

  .reviews-list__text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .reviews-list__divider {
    margin-top: 20px;
  }

  .reviews-list__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .reviews-list__avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .reviews-list__author {
    font-size: 16px;
  }

  .reviews-list__room,
  .reviews-list__date {
    font-size: 14px;
  }

  .reviews-list__date {
    white-space: normal;
  }
}

/* -------------------------------------------------------------------------- */
/*  Reviews page form (Figma 303:3036)                                        */
/* -------------------------------------------------------------------------- */
.reviews-form {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: var(--color-mint-bg);
}

.reviews-form__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reviews-form__header {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reviews-form__title {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.reviews-form__subtitle {
  max-width: 920px;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

.reviews-form__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
}

.reviews-form__card {
  padding: 40px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(66, 104, 53, 1), var(--shadow-card-bottom);
  opacity: 0;
  transform: translateY(18px);
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.reviews-form__card.is-revealed {
  animation: reviews-reveal-in 0.9s var(--ease-premium) both;
}

.reviews-form__card--form.is-revealed {
  animation-delay: 0.08s;
}

.reviews-form__card--tips.is-revealed {
  animation-delay: 0.16s;
}

.reviews-form__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.reviews-form__card.is-revealed:hover {
  transform: translateY(-3px);
}

.reviews-form__card-title {
  margin: 0 0 20px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}

.reviews-form__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.reviews-form__star-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transition: transform var(--dur-fast) var(--ease-premium);
}

.reviews-form__card.is-revealed .reviews-form__star-btn {
  animation: text-soft-in 0.75s var(--ease-premium) both;
}

.reviews-form__card.is-revealed .reviews-form__star-btn:nth-child(1) {
  animation-delay: 0.12s;
}

.reviews-form__card.is-revealed .reviews-form__star-btn:nth-child(2) {
  animation-delay: 0.18s;
}

.reviews-form__card.is-revealed .reviews-form__star-btn:nth-child(3) {
  animation-delay: 0.24s;
}

.reviews-form__card.is-revealed .reviews-form__star-btn:nth-child(4) {
  animation-delay: 0.3s;
}

.reviews-form__card.is-revealed .reviews-form__star-btn:nth-child(5) {
  animation-delay: 0.36s;
}

.reviews-form__star-btn:hover {
  transform: scale(1.08);
}

.reviews-form__star-btn.is-active:hover {
  transform: scale(1.08);
}

.reviews-form__star-btn.is-pop {
  animation: reviews-star-pop 0.42s var(--ease-premium);
}

.reviews-form__star-btn:focus-visible {
  outline: 2px solid #5f8f4e;
  outline-offset: 2px;
  border-radius: 4px;
}

.reviews-form__star {
  display: block;
  width: 25px;
  height: 24px;
  object-fit: contain;
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.reviews-form__star.is-filling {
  animation: reviews-star-fill-in 0.38s var(--ease-premium);
}

.reviews-form__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color-scheme: light;
}

.reviews-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  opacity: 0;
}

.reviews-form__card.is-revealed .reviews-form__field {
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.reviews-form__card.is-revealed .reviews-form__field:nth-child(2) {
  animation-delay: 0.42s;
}

.reviews-form__card.is-revealed .reviews-form__field:nth-child(3) {
  animation-delay: 0.5s;
}

.reviews-form__field--message {
  flex: 1;
}

.reviews-form__label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.reviews-form__control {
  width: 100%;
  min-height: 61px;
  padding: 16px 20px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background-color: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.reviews-form__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.reviews-form__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.reviews-form__control::placeholder {
  color: #000000;
  opacity: 0.55;
}

.reviews-form__textarea {
  min-height: 180px;
  resize: none;
}

.reviews-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 320px;
  max-width: 100%;
  min-height: 52px;
  margin-top: 6px;
  padding: 16px 51px;
  border: 0;
  border-radius: var(--radius-btn);
  font: var(--font-btn);
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--btn-primary-bg);
  cursor: pointer;
  opacity: 0;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.reviews-form__card.is-revealed .reviews-form__submit {
  animation: text-soft-in 0.85s var(--ease-premium) 0.58s both;
}

.reviews-form__submit:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #547d45;
  box-shadow: 0 8px 20px rgba(66, 104, 53, 0.18);
}

.reviews-form__submit:active {
  transform: translateY(0) scale(0.99);
}

.reviews-form__submit:focus-visible {
  outline: 2px solid #3a5c2b;
  outline-offset: 3px;
}

.reviews-form__tips-title {
  margin: 0 0 24px;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: #3a5c2b;
}

.reviews-form__tips-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews-form__tips-item {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
  opacity: 0;
}

.reviews-form__card.is-revealed .reviews-form__tips-item {
  animation: text-soft-in 0.75s var(--ease-premium) both;
}

.reviews-form__card.is-revealed .reviews-form__tips-item:nth-child(1) {
  animation-delay: 0.16s;
}

.reviews-form__card.is-revealed .reviews-form__tips-item:nth-child(2) {
  animation-delay: 0.24s;
}

.reviews-form__card.is-revealed .reviews-form__tips-item:nth-child(3) {
  animation-delay: 0.32s;
}

.reviews-form__card.is-revealed .reviews-form__tips-item:nth-child(4) {
  animation-delay: 0.4s;
}

.reviews-form__tips-item::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8c8c8;
  transform: translateY(-50%);
}

@media (max-width: 960px) {
  .reviews-form__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-form__card--tips {
    order: 2;
  }
}

@media (max-width: 720px) {
  .reviews-form {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .reviews-form__inner {
    gap: 24px;
  }

  .reviews-form__header {
    gap: 16px;
  }

  .reviews-form__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .reviews-form__subtitle {
    font-size: 18px;
    line-height: 1.35;
  }

  .reviews-form__card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .reviews-form__card:hover {
    transform: none;
  }

  .reviews-form__card-title {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .reviews-form__stars {
    gap: 6px;
    margin-bottom: 20px;
  }

  .reviews-form__star {
    width: 22px;
    height: 21px;
  }

  .reviews-form__form {
    gap: 20px;
  }

  .reviews-form__label {
    font-size: 16px;
  }

  .reviews-form__control {
    min-height: 52px;
    font-size: 16px;
  }

  .reviews-form__textarea {
    min-height: 130px;
  }

  .reviews-form__submit {
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    padding-inline: 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .reviews-form__tips-title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .reviews-form__tips-list {
    gap: 12px;
  }

  .reviews-form__tips-item {
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .reviews-booking {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .reviews-booking .booking-cta__card:hover {
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/*  Reviews page booking (Figma 303:3082)                                     */
/* -------------------------------------------------------------------------- */
.reviews-booking {
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.reviews-booking .booking-cta__card {
  opacity: 0;
  transform: translateY(18px);
}

.reviews-booking .booking-cta__card.is-revealed {
  animation: reviews-reveal-in 0.9s var(--ease-premium) both;
}

.reviews-booking .booking-cta__card.is-revealed .booking-cta__title {
  animation: text-soft-in 0.85s var(--ease-premium) 0.1s both;
}

.reviews-booking .booking-cta__card.is-revealed .booking-cta__text {
  animation: text-soft-in 0.85s var(--ease-premium) 0.18s both;
}

.reviews-booking .booking-cta__card.is-revealed .booking-cta__btn {
  animation: text-soft-in 0.85s var(--ease-premium) 0.26s both;
}

.reviews-booking .booking-cta__title,
.reviews-booking .booking-cta__text,
.reviews-booking .booking-cta__btn {
  opacity: 0;
}

.reviews-booking .booking-cta__card.is-revealed .booking-cta__title,
.reviews-booking .booking-cta__card.is-revealed .booking-cta__text,
.reviews-booking .booking-cta__card.is-revealed .booking-cta__btn {
  opacity: 1;
}

.reviews-booking .booking-cta__btn {
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.reviews-booking .booking-cta__btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(66, 104, 53, 0.18);
}

.reviews-booking .booking-cta__btn:active {
  transform: translateY(0) scale(0.99);
}

/* -------------------------------------------------------------------------- */
/*  Stats section                                                             */
/* -------------------------------------------------------------------------- */
.stats {
  width: 100%;
  background: linear-gradient(90deg, var(--color-mint-bg) 0%, #ffffff 100%);
  padding-block: 50px;
  padding-inline: var(--header-pad-x);
}

.stats__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border: 1.5px solid rgba(95, 143, 78, 0.3);
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.stats__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(95, 143, 78, 0.55);
}

.stats__value {
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: #3a5c2b;
}

.stats__label {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
}

/* Mobile: 2 × 2 compact */
@media (max-width: 520px) {
  .stats {
    padding-block: 28px;
    padding-inline: 16px;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 210px;
    gap: 12px;
  }

  .stats__card {
    min-height: 0;
    height: auto;
    padding: 10px;
    gap: 6px;
    border-radius: 16px;
  }

  .stats__value {
    font-size: 22px;
  }

  .stats__label {
    font-size: 18px;
    line-height: 1.15;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header__nav-item,
  .site-header__actions,
  .site-header__brand,
  .site-header__logo,
  .site-header__btn,
  .site-header__nav-link::after,
  .site-header__burger-line,
  .site-header__drawer,
  .hero,
  .hero__star,
  .hero__title,
  .hero__subtitle,
  .hero__lead,
  .hero__actions,
  .hero__booking,
  .hero__blur,
  .hero__blur-img,
  .hero__scrim,
  .hero__btn,
  .hero__submit,
  .hero__control,
  .hero__input--date,
  .reviews-list__card,
  .reviews-form__title,
  .reviews-form__subtitle,
  .reviews-form__card,
  .reviews-form__star-btn,
  .reviews-form__field,
  .reviews-form__submit,
  .reviews-form__tips-item,
  .reviews-list__title,
  .reviews-booking .booking-cta__card,
  .reviews-booking .booking-cta__title,
  .reviews-booking .booking-cta__text,
  .reviews-booking .booking-cta__btn,
  .booking-hero__title,
  .booking-hero__text,
  .login-page__welcome,
  .login-page__form-panel,
  .booking-rooms__title,
  .booking-filters__form,
  .booking-filters__card,
  .booking-rooms__card,
  .contacts-info__value {
    animation: none !important;
    transition: none !important;
  }

  .reviews-list__card,
  .reviews-form__card,
  .reviews-form__star-btn,
  .reviews-form__field,
  .reviews-form__submit,
  .reviews-form__tips-item,
  .reviews-list__title,
  .reviews-booking .booking-cta__card,
  .reviews-booking .booking-cta__title,
  .reviews-booking .booking-cta__text,
  .reviews-booking .booking-cta__btn,
  .booking-hero__title,
  .booking-hero__text,
  .login-page__welcome,
  .login-page__form-panel,
  .booking-rooms__title,
  .booking-filters__form,
  .booking-filters__card,
  .booking-rooms__card,
  .contacts-info__value {
    opacity: 1;
    transform: none;
  }

  .site-header {
    opacity: 1;
    transform: none;
  }

  .hero {
    opacity: 1;
    transform: none;
  }

  .hero__booking {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "drawer";
    row-gap: 12px;
  }

  .site-header__drawer {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    overflow: visible !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-header__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-nav);
    padding-block: 0;
  }

  .site-header__burger {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/*  404 page                                                                  */
/* -------------------------------------------------------------------------- */
.page-error {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffffff;
}

.page-error main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px var(--hero-pad-x) 50px;
  background: linear-gradient(180deg, var(--color-mint-bg) 0%, #ffffff 24%, #ffffff 100%);
}

.error-page__inner {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.error-page__code {
  margin: 0 0 28px;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #3a5c2b;
}

.error-page__title {
  margin: 0 0 20px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: #000000;
}

.error-page__text {
  margin: 0 auto 40px;
  max-width: 620px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.error-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.error-page__btn:hover {
  transform: translateY(-1px);
}

.error-page__btn img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.error-page__btn--primary {
  border: 0;
  background-color: var(--btn-primary-bg);
  color: #ffffff;
}

.error-page__btn--primary:hover {
  background-color: #547f45;
}

.error-page__btn--outline {
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  background-color: #ffffff;
  color: var(--btn-primary-bg);
}

.error-page__btn--outline:hover {
  border-color: var(--btn-primary-bg);
  background-color: rgba(95, 143, 78, 0.06);
}

@media (max-width: 960px) {
  .error-page {
    padding: 60px 40px 80px;
  }

  .error-page__code {
    font-size: 96px;
  }

  .error-page__title {
    font-size: 24px;
  }

  .error-page__text {
    font-size: 17px;
  }
}

@media (max-width: 720px) {
  .error-page {
    padding: 30px 16px 30px;
  }

  .error-page__code {
    margin-bottom: 20px;
    font-size: 72px;
  }

  .error-page__title {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .error-page__text {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.45;
  }

  .error-page__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .error-page__btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Room detail page                                                          */
/* -------------------------------------------------------------------------- */
.room-detail {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(180deg, var(--color-mint-bg) 0%, #ffffff 100%);
}

.room-detail__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 50px;
  align-items: stretch;
}

.room-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 480px;
  max-width: 100%;
  min-width: 0;
  animation: hero-card-in 0.95s var(--ease-premium) both;
}

.room-detail__viewer {
  overflow: hidden;
  border-radius: 15px;
  background: #ffffff;
}

.room-detail__main {
  display: block;
  width: 100%;
  max-height: 320px;
  aspect-ratio: 480 / 320;
  height: auto;
  object-fit: cover;
  transition: opacity var(--dur-fast) var(--ease-premium);
}

.room-detail__main.is-changing {
  opacity: 0.72;
}

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

.room-detail__thumb {
  overflow: hidden;
  padding: 0;
  border: 1.5px solid transparent;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-premium),
    transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.room-detail__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 150 / 100;
  height: auto;
  object-fit: cover;
}

.room-detail__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 143, 78, 0.45);
}

.room-detail__thumb.is-active {
  border-color: #acc396;
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.15);
}

.room-detail__thumb:focus-visible {
  outline: 3px solid rgba(95, 143, 78, 0.25);
  outline-offset: 2px;
}

.room-detail__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
  min-height: 100%;
  animation: text-soft-in 0.85s var(--ease-premium) 0.08s both;
}

.room-detail__title {
  margin: 0;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}

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

.room-detail__tag:last-child {
  grid-column: 1 / 2;
  width: 100%;
}

.room-detail__tags--five .room-detail__tag:last-child {
  grid-column: auto;
  width: auto;
}

.room-detail__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  border-radius: 12px;
  background: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
}

.room-detail__tag img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.room-detail__price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: center;
  min-height: 0;
  padding: 24px 28px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: linear-gradient(-90deg, var(--color-mint-bg) 0%, #ffffff 100%);
}

.room-detail__price-label,
.room-detail__price-note {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #000000;
}

.room-detail__price-value {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: #3a5c2b;
  transition: color var(--dur-fast) var(--ease-premium);
}

.room-detail__price.is-updated {
  animation: room-price-update 0.55s var(--ease-premium);
}

@keyframes room-price-update {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

.room-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.room-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium);
}

button.room-detail__btn {
  appearance: none;
  -webkit-appearance: none;
}

.room-detail__btn:hover {
  transform: translateY(-1px);
}

.room-detail__btn--primary {
  border: 0;
  background-color: var(--btn-primary-bg);
  color: #ffffff;
}

.room-detail__btn--primary:hover {
  background-color: #547f45;
}

.room-detail__btn--outline {
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  background-color: #ffffff;
  color: var(--btn-primary-bg);
}

.room-detail__btn--outline:hover {
  border-color: var(--btn-primary-bg);
  background-color: rgba(95, 143, 78, 0.06);
}

@media (min-width: 1181px) {
  .room-detail {
    padding-inline: 240px;
  }
}

@media (max-width: 1180px) {
  .room-detail__inner {
    gap: 32px;
  }

  .room-detail__title {
    font-size: 24px;
  }

  .room-detail__price-value {
    font-size: 24px;
  }
}

@media (max-width: 960px) {
  .room-detail {
    padding-block: 40px;
    padding-inline: 40px;
  }

  .room-detail__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .room-detail__gallery {
    width: 100%;
  }

  .room-detail__info {
    min-height: auto;
    justify-content: flex-start;
  }

  .room-detail__price {
    flex: none;
    justify-content: flex-start;
  }

  .room-detail__main {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

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

  .room-detail__tag:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .room-detail {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .room-detail__gallery {
    gap: 10px;
  }

  .room-detail__thumbs {
    gap: 8px;
  }

  .room-detail__main {
    aspect-ratio: 16 / 11;
  }

  .room-detail__title {
    font-size: 20px;
  }

  .room-detail__tag {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 15px;
  }

  .room-detail__price {
    padding: 18px 16px;
  }

  .room-detail__price-label,
  .room-detail__price-note {
    font-size: 15px;
  }

  .room-detail__price-value {
    font-size: 22px;
  }

  .room-detail__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .room-detail__btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Room payment modal                                                        */
/* -------------------------------------------------------------------------- */
.room-payment-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.room-payment-modal[hidden] {
  display: none;
}

.room-payment-modal-open {
  overflow: hidden;
}

.room-payment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(95, 143, 78, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.room-payment-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 40px 50px;
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  animation: hero-card-in 0.45s var(--ease-premium) both;
}

.room-payment-modal__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-payment-modal__title {
  margin: 0;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #000000;
}

.room-payment-modal__lead {
  margin: 0;
  max-width: 560px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
}

.room-payment-modal__divider {
  height: 1px;
  margin: 24px 0 28px;
  background: rgba(172, 195, 150, 0.65);
}

.room-payment-modal__summary {
  padding: 24px;
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  border-radius: 15px;
  background: #ffffff;
}

.room-payment-modal__summary-title {
  margin: 0 0 20px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
}

.room-payment-modal__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.room-payment-modal__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(181, 212, 168, 0.45);
}

.room-payment-modal__detail-label,
.room-payment-modal__detail-value {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: 18px;
  line-height: 1.3;
}

.room-payment-modal__detail-label {
  flex-shrink: 0;
  font-weight: 400;
  color: #426835;
}

.room-payment-modal__detail-value {
  font-weight: 500;
  color: #000000;
  text-align: right;
}

.room-payment-modal__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 0;
  padding-top: 4px;
  font-family: var(--font-manrope);
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
}

.room-payment-modal__total-label {
  font-weight: 400;
}

.room-payment-modal__total-value {
  font-weight: 700;
  font-size: 20px;
}

.room-payment-modal__total-breakdown {
  margin: 8px 0 0;
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a5f3c;
  text-align: right;
}

.room-payment-modal__demo-note {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(95, 143, 78, 0.12);
  font-family: var(--font-manrope);
  font-size: 14px;
  line-height: 1.45;
  color: #234a2f;
}

.room-payment-modal__field--demo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-family: var(--font-manrope);
  font-size: 14px;
  line-height: 1.4;
}

.room-payment-modal__field--demo input {
  margin-top: 3px;
}

.room-payment-modal__card-fields {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-payment-modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.room-payment-modal__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.room-payment-modal__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.room-payment-modal__label {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.room-payment-modal__control {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 61px;
  padding: 16px 20px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.room-payment-modal__control:hover {
  border-color: #6fa255;
}

.room-payment-modal__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

select.room-payment-modal__control {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='14' viewBox='0 0 17 14' fill='none'%3E%3Cpath d='M3.5 5L8.5 10.5L13.5 5' stroke='%233A5C2B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 17px 14px;
}

.room-payment-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.room-payment-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium);
}

.room-payment-modal__btn--primary {
  border: 0;
  background-color: var(--btn-primary-bg);
  color: #ffffff;
}

.room-payment-modal__btn--primary:hover {
  transform: translateY(-1px);
  background-color: #547d45;
}

.room-payment-modal__btn--ghost {
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  background: #ffffff;
  color: var(--btn-primary-bg);
}

.room-payment-modal__btn--ghost:hover {
  transform: translateY(-1px);
  border-color: var(--btn-primary-bg);
  background: rgba(95, 143, 78, 0.06);
}

@media (max-width: 720px) {
  .room-payment-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .room-payment-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 24px 20px;
    border-radius: 20px 20px 16px 16px;
  }

  .room-payment-modal__title {
    font-size: 28px;
  }

  .room-payment-modal__lead {
    font-size: 16px;
  }

  .room-payment-modal__divider {
    margin: 20px 0 22px;
  }

  .room-payment-modal__summary {
    padding: 18px 16px;
  }

  .room-payment-modal__summary-title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .room-payment-modal__detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-height: 0;
    padding: 12px 14px;
  }

  .room-payment-modal__detail-label,
  .room-payment-modal__detail-value {
    font-size: 16px;
  }

  .room-payment-modal__detail-value {
    text-align: left;
  }

  .room-payment-modal__total {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 16px;
    font-size: 16px;
  }

  .room-payment-modal__total-value {
    font-size: 18px;
  }

  .room-payment-modal__form {
    gap: 16px;
    margin-top: 22px;
  }

  .room-payment-modal__label {
    font-size: 16px;
  }

  .room-payment-modal__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .room-payment-modal__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .room-payment-modal__btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 24px;
    font-size: 18px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Room detail — tariffs                                                     */
/* -------------------------------------------------------------------------- */
.room-tariffs {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #FFFFFF;
}

.room-tariffs__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.room-tariffs__header {
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.room-tariffs__title {
  margin: 0;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.room-tariffs__lead {
  margin: 25px 0 0;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.room-tariffs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.room-tariffs__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  min-height: 280px;
  padding: 28px 30px 24px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.room-tariffs__card:nth-child(2) {
  animation-delay: 0.06s;
}

.room-tariffs__card:nth-child(3) {
  animation-delay: 0.12s;
}

.room-tariffs__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.room-tariffs__card.is-selected {
  border-color: #5f8f4e;
  background: rgba(246, 255, 238, 0.72);
  box-shadow: var(--shadow-card-hover-bottom);
}

.room-tariffs__card.is-selected:hover {
  transform: translateY(-3px);
}

.room-tariffs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  border-radius: 12px;
  background: #ffffff;
}

.room-tariffs__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.room-tariffs__text {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
}

.room-tariffs__price {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #3a5c2b;
}

.room-tariffs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 0;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

button.room-tariffs__btn {
  appearance: none;
  -webkit-appearance: none;
}

.room-tariffs__btn:hover {
  transform: translateY(-1px);
  background-color: #547f45;
}

@media (min-width: 1181px) {
  .room-tariffs {
    padding-inline: 240px;
  }
}

@media (max-width: 1180px) {
  .room-tariffs__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .room-tariffs__lead {
    font-size: 22px;
    line-height: 1.35;
  }
}

@media (max-width: 960px) {
  .room-tariffs {
    padding-block: 40px;
  }

  .room-tariffs__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .room-tariffs__card {
    min-height: 0;
    padding: 24px 22px 20px;
  }

  .room-tariffs__title {
    font-size: 26px;
  }

  .room-tariffs__lead {
    margin-top: 16px;
    font-size: 18px;
  }

  .room-tariffs__text {
    font-size: 16px;
  }

  .room-tariffs__price {
    font-size: 22px;
  }

  .room-tariffs__btn {
    min-height: 48px;
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .room-tariffs__title {
    font-size: 22px;
  }

  .room-tariffs__lead {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* -------------------------------------------------------------------------- */
/*  Room detail — amenities (Figma 427:100)                                   */
/* -------------------------------------------------------------------------- */
.room-amenities {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: var(--color-mint-bg);
}

.room-amenities__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.room-amenities__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.room-amenities__title {
  margin: 0;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.room-amenities__lead {
  margin: 25px 0 0;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.room-amenities__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  animation: hero-card-in 0.95s var(--ease-premium) 0.06s both;
}

.room-amenities__column-title {
  margin: 0 0 20px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  color: #000000;
}

.room-amenities__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-amenities__item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1.5px solid #acc396;
  border-radius: 12px;
  background: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium);
}

.room-amenities__item:hover {
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: 0 0 0 1px rgba(95, 143, 78, 0.08);
}

.room-amenities__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  object-fit: contain;
}

@media (min-width: 1181px) {
  .room-amenities {
    padding-inline: 240px;
  }
}

@media (max-width: 1180px) {
  .room-amenities__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .room-amenities__lead {
    font-size: 22px;
    line-height: 1.35;
  }

  .room-amenities__columns {
    gap: 32px;
  }

  .room-amenities__column-title {
    font-size: 22px;
  }

  .room-amenities__item {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .room-amenities {
    padding-block: 40px;
  }

  .room-amenities__header {
    margin-bottom: 32px;
  }

  .room-amenities__title {
    font-size: 26px;
  }

  .room-amenities__lead {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.35;
  }

  .room-amenities__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .room-amenities {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .room-amenities__header {
    margin-bottom: 24px;
  }

  .room-amenities__title {
    font-size: 26px;
    line-height: 1.15;
  }

  .room-amenities__lead {
    margin-top: 14px;
    font-size: 18px;
  }

  .room-amenities__column-title {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .room-amenities__list {
    gap: 10px;
  }

  .room-amenities__item {
    min-height: 48px;
    padding: 10px;
    font-size: 16px;
    border-radius: 12px;
  }

  .room-amenities__dot {
    width: 10px;
    height: 10px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Room detail — additional amenities                                        */
/* -------------------------------------------------------------------------- */
.room-extra {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: #ffffff;
}

.room-extra__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.room-extra__header {
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.room-extra__title {
  margin: 0;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.room-extra__lead {
  margin: 25px 0 0;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.room-extra__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.room-extra__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 28px 30px 24px;
  border: 1.5px solid #acc396;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  animation: hero-card-in 0.95s var(--ease-premium) both;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.room-extra__card:nth-child(2) {
  animation-delay: 0.06s;
}

.room-extra__card:nth-child(3) {
  animation-delay: 0.12s;
}

.room-extra__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 143, 78, 0.55);
  box-shadow: var(--shadow-card-hover-bottom);
}

.room-extra__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(172, 195, 150, 0.85);
  border-radius: 12px;
  background: #ffffff;
}

.room-extra__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.room-extra__card-title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: #000000;
}

.room-extra__card-text {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
}

@media (min-width: 1181px) {
  .room-extra {
    padding-inline: 240px;
  }
}

@media (max-width: 1180px) {
  .room-extra__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .room-extra__lead {
    font-size: 22px;
    line-height: 1.35;
  }

  .room-extra__card-title {
    font-size: 18px;
  }

  .room-extra__card-text {
    font-size: 16px;
  }
}

@media (max-width: 960px) {
  .room-extra {
    padding-block: 40px;
  }

  .room-extra__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .room-extra__title {
    font-size: 26px;
  }

  .room-extra__lead {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.35;
  }

  .room-extra__card {
    min-height: 0;
    padding: 24px 22px 20px;
  }
}

@media (max-width: 720px) {
  .room-extra {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .room-extra__title {
    font-size: 26px;
    line-height: 1.15;
  }

  .room-extra__lead {
    margin-top: 14px;
    font-size: 18px;
  }

  .room-extra__grid {
    gap: 16px;
    margin-top: 24px;
  }

  .room-extra__card {
    padding: 20px 18px 18px;
  }

  .room-extra__icon {
    width: 48px;
    height: 48px;
  }

  .room-extra__icon img {
    width: 24px;
    height: 24px;
  }

  .room-extra__card-title {
    font-size: 18px;
  }

  .room-extra__card-text {
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Room detail — booking form                                                */
/* -------------------------------------------------------------------------- */
.room-booking {
  width: 100%;
  padding-block: 50px;
  padding-inline: var(--hero-pad-x);
  background: linear-gradient(0deg, var(--color-mint-bg) 0%, #ffffff 100%);
}

.room-booking__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.room-booking__header {
  margin-bottom: 50px;
  animation: text-soft-in 0.85s var(--ease-premium) both;
}

.room-booking__title {
  margin: 0;
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.room-booking__lead {
  max-width: 820px;
  margin: 25px 0 0;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #000000;
}

.room-booking__form-wrap {
  display: flex;
  justify-content: center;
  animation: hero-card-in 0.95s var(--ease-premium) 0.08s both;
}

.room-booking__form-panel {
  width: 100%;
  max-width: 703px;
  padding: 50px 40px;
  border: 1px solid rgba(95, 143, 78, 0.28);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
  color-scheme: light;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium);
}

.room-booking__form-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 143, 78, 0.45);
  box-shadow: var(--shadow-card-hover-bottom);
}

.room-booking__form-title {
  margin: 0 0 30px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #000000;
}

.room-booking__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.room-booking__fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.room-booking__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.room-booking__label {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}

.room-booking__control {
  width: 100%;
  min-height: 61px;
  padding: 16px 20px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  outline: none;
  background-color: #ffffff;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  transition: border-color var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium);
}

.room-booking__control::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.room-booking__control:hover {
  border-color: #6fa255;
  background-color: rgba(95, 143, 78, 0.03);
}

.room-booking__control:focus {
  border-color: #5f8f4e;
  box-shadow: 0 0 0 3px rgba(95, 143, 78, 0.12);
}

.room-booking__control--date {
  color-scheme: light;
}

.room-booking__control--date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
  transition: opacity var(--dur-fast) var(--ease-premium);
}

.room-booking__control--date:hover::-webkit-calendar-picker-indicator,
.room-booking__control--date:focus::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.room-booking__select-wrap {
  position: relative;
  display: block;
}

.room-booking__select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #3a5c2b;
  border-bottom: 1.5px solid #3a5c2b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.room-booking__select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.room-booking__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 16px 51px;
  border: 0;
  border-radius: var(--radius-btn);
  background-color: var(--btn-primary-bg);
  font-family: "Aznauri Round", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) var(--ease-premium);
}

.room-booking__submit:hover {
  transform: translateY(-1px) scale(1.01);
  background-color: #547d45;
}

.room-booking__submit:active {
  transform: translateY(0) scale(0.99);
  opacity: 0.94;
}

.room-booking__submit:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.55);
  outline-offset: 3px;
}

.room-booking__tariff-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1.5px solid #acc396;
  border-radius: 12px;
  background: #f6ffee;
}

.room-booking__tariff-value {
  margin: 0;
  color: #3a5c2b;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 1181px) {
  .room-booking {
    padding-inline: 240px;
  }
}

@media (max-width: 1180px) {
  .room-booking__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .room-booking__lead {
    font-size: 22px;
    line-height: 1.35;
  }
}

@media (max-width: 720px) {
  .room-booking {
    padding-block: 30px;
    padding-inline: 16px;
  }

  .room-booking__header {
    margin-bottom: 24px;
  }

  .room-booking__title {
    font-size: 26px;
    line-height: 1.15;
  }

  .room-booking__lead {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.35;
  }

  .room-booking__form-panel {
    padding: 24px 20px;
    border-radius: 15px;
  }

  .room-booking__form-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .room-booking__form,
  .room-booking__fields {
    gap: 18px;
  }

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

  .room-booking__field {
    gap: 8px;
  }

  .room-booking__label {
    font-size: 16px;
  }

  .room-booking__submit {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 15px;
  }
}

/* Mobile — единый стиль полей, кнопок и теней (≤720px) */
@media (max-width: 720px) {
  :root {
    --booking-input-h: 48px;
    --booking-input-pad-y: 12px;
    --booking-input-pad-x: 16px;
    --booking-input-font: 16px;
    --booking-input-radius: 15px;
    --mobile-btn-pad-y: 12px;
    --mobile-btn-pad-x: 20px;
  }

  .booking-filters__fields,
  .booking-filters__field,
  .room-payment-modal__field,
  .room-booking__field,
  .hero__field {
    width: 100%;
    min-width: 0;
  }

  .booking-filters__control,
  .room-payment-modal__control,
  .room-booking__control,
  select.room-payment-modal__control,
  .rooms-search__control,
  .login-page__control,
  .contacts-info__control,
  .reviews-form__control,
  .account-settings__control,
  .admin-login__control {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: var(--booking-input-h);
    min-height: var(--booking-input-h);
    padding: var(--booking-input-pad-y) var(--booking-input-pad-x);
    border-radius: var(--booking-input-radius);
    font-family: var(--font-manrope);
    font-size: var(--booking-input-font);
    line-height: 1.25;
    -webkit-appearance: none;
    appearance: none;
  }

  .booking-filters__control[type="date"],
  .room-booking__control--date,
  .rooms-search__control[type="date"] {
    color-scheme: light;
  }

  .booking-filters__control[type="date"]::-webkit-calendar-picker-indicator,
  .room-booking__control--date::-webkit-calendar-picker-indicator,
  .rooms-search__control[type="date"]::-webkit-calendar-picker-indicator {
    margin-left: 4px;
    cursor: pointer;
    opacity: 0.72;
  }

  input.booking-filters__control[type="number"],
  input.room-booking__control[type="number"] {
    -moz-appearance: textfield;
  }

  input.booking-filters__control[type="number"]::-webkit-inner-spin-button,
  input.booking-filters__control[type="number"]::-webkit-outer-spin-button,
  input.room-booking__control[type="number"]::-webkit-inner-spin-button,
  input.room-booking__control[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }

  select.room-payment-modal__control,
  select.room-booking__select {
    padding-right: 44px;
    background-position: right var(--booking-input-pad-x) center;
    background-size: 17px 14px;
    cursor: pointer;
  }

  .hero__control--date,
  .hero__control--select {
    min-height: var(--booking-input-h);
    padding: var(--booking-input-pad-y) var(--booking-input-pad-x);
  }

  .hero__input,
  .hero__select {
    width: 100%;
    min-height: 22px;
    font-size: var(--booking-input-font);
    line-height: 1.25;
  }

  .hero__control--select {
    align-items: center;
  }

  .hero__select-chevron {
    right: var(--booking-input-pad-x);
  }

  .contacts-info__textarea,
  .reviews-form__textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 120px;
    height: auto;
    padding: var(--booking-input-pad-y) var(--booking-input-pad-x);
    font-family: var(--font-manrope);
    font-size: var(--booking-input-font);
    line-height: 1.4;
    border-radius: var(--booking-input-radius);
  }

  .reviews-form__textarea {
    min-height: 130px;
  }

  .login-page__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .hero__btn,
  .hero__submit,
  .rooms__more,
  .contacts__btn,
  .reviews__btn,
  .booking-cta__btn,
  .site-footer__btn,
  .about-who__btn,
  .services-conference__btn,
  .services-sauna__btn,
  .rooms-search__submit,
  .rooms-catalog__btn,
  .rooms-reservation__btn,
  .services-reservation__btn,
  .reviews-form__submit,
  .contacts-info__submit,
  .login-page__submit,
  .login-page__social,
  .account-settings__btn,
  .room-payment-modal__btn,
  .room-booking__submit {
    box-sizing: border-box;
    min-height: var(--booking-input-h);
    height: auto;
    padding: var(--mobile-btn-pad-y) var(--mobile-btn-pad-x);
    font-size: var(--booking-input-font);
    line-height: 1.25;
  }

  .admin-login__submit {
    min-height: var(--booking-input-h);
    padding: var(--mobile-btn-pad-y) var(--mobile-btn-pad-x);
    font-size: var(--booking-input-font);
  }

  .room-payment-modal__field,
  .service-booking-modal .room-payment-modal__field,
  .booking-filters__field,
  .room-booking__field,
  .reviews-form__field,
  .contacts-info__field,
  .login-page__field,
  .register-page__field,
  .account-settings__field {
    overflow: visible;
  }

  .room-payment-modal__dialog,
  .login-page__form-panel,
  .login-page__form-wrap,
  .admin-login__card,
  .reviews-form__card,
  .contacts-info__card {
    overflow: visible;
  }

  .contacts-social__btn {
    box-shadow: var(--btn-ghost-shadow);
  }

  .contacts-social__btn:focus-visible,
  .login-page__social:focus-visible {
    outline-offset: 2px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Desktop — card padding 40×50px; booking forms 50×40px                     */
/* -------------------------------------------------------------------------- */
@media (min-width: 1181px) {
  .advantages__card,
  .rooms__body,
  .contacts__card,
  .reviews__card,
  .booking-cta__card,
  .about-location__card,
  .about-who__card,
  .about-features__card,
  .services-conference__card,
  .services-sauna__card,
  .services-extra__card,
  .booking-filters__card,
  .booking-rooms__body,
  .contacts-info__card,
  .contacts-social__card,
  .rooms-catalog__card,
  .rooms-comfort__card,
  .rooms-reservation__card,
  .services-reservation__card,
  .reviews-list__card,
  .reviews-form__card,
  .stats__card,
  .room-tariffs__card,
  .room-extra__card,
  .contacts-info__form-wrap,
  .room-detail__price {
    padding: var(--card-pad-desktop-y) var(--card-pad-desktop-x);
  }

  .hero__booking,
  .rooms-search__form,
  .room-booking__form-panel {
    padding: var(--hero-form-pad-y) var(--hero-form-pad-x);
  }

  .room-tariffs__card,
  .room-extra__card {
    min-height: 0;
  }

  .stats__card {
    min-height: 200px;
  }

  .rooms-catalog__card {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 1fr) auto;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
    height: auto;
    min-height: unset;
  }

  .rooms-catalog__media {
    position: relative;
    align-self: stretch;
    min-width: 0;
    min-height: 0;
  }

  .rooms-catalog__photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rooms-catalog__content {
    align-self: start;
    gap: 30px;
    height: fit-content;
    min-width: 0;
  }

  .rooms-catalog__description {
    max-width: none;
  }

  .rooms-catalog__card-title,
  .rooms-catalog__description,
  .rooms-catalog__area,
  .rooms-catalog__price {
    margin-top: 0;
  }

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

  .rooms-catalog__btn {
    align-self: end;
    flex-shrink: 0;
  }
}

/* -------------------------------------------------------------------------- */
/*  Privacy policy page                                                       */
/* -------------------------------------------------------------------------- */
.page-privacy main {
  background: #ffffff;
}

.page-privacy--standalone {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
}

.privacy-policy__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1.5px solid rgba(95, 143, 78, 0.35);
  border-radius: 999px;
  background: #ffffff;
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a5f3c;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.privacy-policy__back:hover {
  background: rgba(95, 143, 78, 0.08);
  border-color: rgba(95, 143, 78, 0.55);
}

.privacy-policy__back:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.45);
  outline-offset: 2px;
}

.privacy-policy {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 6vw, 240px) clamp(56px, 8vw, 96px);
  color: #000000;
  background: #ffffff;
}

.privacy-policy__inner {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.privacy-policy__header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.privacy-policy__title {
  margin: 0 0 12px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
}

.privacy-policy__updated {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
}

.privacy-policy__section + .privacy-policy__section {
  margin-top: clamp(28px, 4vw, 36px);
}

.privacy-policy__heading {
  margin: 0 0 14px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.25;
  color: #000000;
}

.privacy-policy__section p,
.privacy-policy__lead {
  margin: 0 0 14px;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.82);
}

.privacy-policy__section p:last-child,
.privacy-policy__lead:last-child {
  margin-bottom: 0;
}

.privacy-policy__link {
  color: var(--btn-primary-bg);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-premium);
}

.privacy-policy__link:hover {
  color: #547d45;
}

.privacy-policy__list,
.privacy-policy__contacts {
  margin: 0;
  padding-left: 1.2em;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.82);
}

.privacy-policy__list li + li,
.privacy-policy__contacts li + li {
  margin-top: 8px;
}

.privacy-policy__contacts {
  list-style: none;
  padding-left: 0;
}

.privacy-policy__table-wrap {
  margin-top: 18px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
}

.privacy-policy__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-manrope);
  font-size: 15px;
  line-height: 1.55;
}

.privacy-policy__table th,
.privacy-policy__table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(95, 143, 78, 0.18);
}

.privacy-policy__table th {
  font-weight: 600;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  background: var(--color-mint-bg);
}

.privacy-policy__table td {
  color: rgba(0, 0, 0, 0.85);
}

.privacy-policy__table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 820px) {
  .privacy-policy__table thead {
    display: none;
  }

  .privacy-policy__table,
  .privacy-policy__table tbody,
  .privacy-policy__table tr,
  .privacy-policy__table td {
    display: block;
    width: 100%;
  }

  .privacy-policy__table tr {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(95, 143, 78, 0.18);
  }

  .privacy-policy__table tr:last-child {
    border-bottom: 0;
  }

  .privacy-policy__table td {
    padding: 0;
    border: 0;
  }

  .privacy-policy__table td + td {
    margin-top: 14px;
  }

  .privacy-policy__table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 720px) {
  .privacy-policy {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .privacy-policy__title {
    font-size: 26px;
  }

  .privacy-policy__heading {
    font-size: 20px;
  }

  .privacy-policy__section p,
  .privacy-policy__lead,
  .privacy-policy__list,
  .privacy-policy__contacts {
    font-size: 15px;
    line-height: 1.6;
  }

  .privacy-policy__table-wrap {
    border-radius: 12px;
  }

  .privacy-policy__table tr {
    padding: 14px 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Admin panel                                                               */
/* -------------------------------------------------------------------------- */
.page-admin main {
  background: var(--color-mint-bg);
  min-height: calc(100vh - var(--site-header-offset, 98px));
}

.admin-gate {
  margin: 0;
  padding: 48px 20px;
  text-align: center;
  font-family: var(--font-manrope);
  font-size: 18px;
  color: var(--color-text-muted, #5a6b52);
}

.admin-login {
  min-height: calc(100vh - var(--site-header-offset, 98px) - 80px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.admin-login__card {
  width: min(100%, 460px);
  padding: 36px 32px;
  border: 1px solid rgba(172, 195, 150, 0.75);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card-bottom);
}

.admin-login__title {
  margin: 0 0 10px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
}

.admin-login__text {
  margin: 0 0 24px;
  font-family: var(--font-manrope);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}

.admin-login__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-login__label {
  font-family: var(--font-manrope);
  font-size: 16px;
}

.admin-login__control {
  min-height: 52px;
  padding: 14px 16px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 15px;
  font-family: var(--font-manrope);
  font-size: 16px;
}

.admin-login__submit,
.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-transform: none;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium),
    color var(--dur-fast) var(--ease-premium);
}

.admin-login__submit {
  width: 100%;
  background: var(--btn-primary-bg);
  color: #ffffff;
}

.admin-login__message {
  margin: 14px 0 0;
  font-family: var(--font-manrope);
  font-size: 14px;
  color: #c94545;
}

.admin-panel {
  padding: 50px var(--hero-pad-x) 60px;
}

.admin-panel__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.admin-sidebar {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: fit-content;
  padding: 28px;
  border: 1px solid rgba(172, 195, 150, 0.75);
  border-radius: 16px;
  background: #ffffff;
}

.admin-sidebar__head {
  flex-shrink: 0;
}

.admin-sidebar__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 20px;
}

.admin-sidebar__subtitle {
  margin: 6px 0 0;
  font-family: var(--font-manrope);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-nav__link,
.admin-nav__logout {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: var(--font-manrope);
  font-size: 15px;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: #000000;
  outline: none;
  user-select: none;
  transition: background-color var(--dur-fast) var(--ease-premium);
}

.admin-nav__link:focus-visible,
.admin-nav__logout:focus-visible {
  outline: 2px solid rgba(95, 143, 78, 0.45);
  outline-offset: 2px;
}

.admin-nav__link:hover,
.admin-nav__link--active {
  background: rgba(95, 143, 78, 0.1);
}

.admin-nav__link--active {
  font-weight: 600;
  color: #3a5c2b;
}

.admin-nav__logout {
  margin-top: 8px;
  color: #c94545;
}

.admin-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-self: start;
  min-width: 0;
}

.admin-section {
  grid-area: 1 / 1;
  padding: 28px;
  border: 1px solid rgba(172, 195, 150, 0.75);
  border-radius: 16px;
  background: #ffffff;
}

.admin-section[hidden] {
  display: none !important;
}

.admin-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-section__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 28px;
}

.admin-section__lead {
  margin: 6px 0 0;
  width: 100%;
  font-family: var(--font-manrope);
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
}

.admin-section__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-filter {
  padding: 8px 14px;
  border: 1px solid rgba(95, 143, 78, 0.25);
  border-radius: 8px;
  background: #ffffff;
  font-family: var(--font-manrope);
  font-size: 14px;
  cursor: pointer;
}

.admin-filter--active {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  color: #ffffff;
}

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

.admin-form {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 14px;
  background: var(--color-mint-bg);
  border: 1px solid rgba(95, 143, 78, 0.18);
}

.admin-form__title {
  margin: 0 0 16px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.admin-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-manrope);
  font-size: 14px;
}

.admin-form__field--full {
  grid-column: 1 / -1;
}

.admin-form__control {
  min-height: 46px;
  padding: 10px 14px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 12px;
  font-family: var(--font-manrope);
  font-size: 14px;
}

.admin-form__textarea {
  min-height: 80px;
  resize: vertical;
}

.admin-card__photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 14px;
  border-radius: 12px;
  object-fit: cover;
}

.admin-card--compact {
  padding: 14px 16px;
}

.admin-card--compact .admin-card__title {
  font-size: 16px;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-modal[hidden] {
  display: none !important;
}

.admin-modal-open {
  overflow: hidden;
}

.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.admin-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(80vh, 720px);
  overflow: auto;
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.admin-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-modal__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 22px;
}

.admin-modal__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(95, 143, 78, 0.1);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.admin-modal__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-stat-card {
  padding: 22px 20px;
  border-radius: 14px;
  background: var(--color-mint-bg);
  border: 1px solid rgba(95, 143, 78, 0.18);
}

.admin-stat-card__value {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: #3a5c2b;
}

.admin-stat-card__label {
  margin: 10px 0 0;
  font-family: var(--font-manrope);
  font-size: 15px;
}

.admin-stat-card__meta {
  margin: 8px 0 0;
  font-family: var(--font-manrope);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-card {
  padding: 20px;
  border: 1px solid rgba(95, 143, 78, 0.18);
  border-radius: 14px;
  background: #ffffff;
}

.admin-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-card__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.admin-badge--pending {
  background: rgba(255, 193, 7, 0.15);
  color: #9a7200;
}

.admin-badge--confirmed,
.admin-badge--approved,
.admin-badge--completed {
  background: rgba(95, 143, 78, 0.15);
  color: #3a5c2b;
}

.admin-badge--cancelled,
.admin-badge--rejected {
  background: rgba(201, 69, 69, 0.12);
  color: #c94545;
}

.admin-badge--rejected {
  background: rgba(120, 120, 120, 0.14);
  color: #5c5c5c;
}

.admin-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0 0 16px;
}

.admin-card__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-card__meta dt {
  font-family: var(--font-manrope);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-card__meta dd {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: 15px;
}

.admin-card__rating,
.admin-card__text,
.admin-card__note {
  margin: 0 0 10px;
  font-family: var(--font-manrope);
  font-size: 15px;
  line-height: 1.55;
}

.admin-card__note {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
}

.admin-card__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-manrope);
  font-size: 14px;
}

.admin-card__prices {
  margin-bottom: 14px;
}

.admin-card__prices .admin-card__field {
  margin-bottom: 0;
}

.admin-card__control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--hero-input-border);
  border-radius: 12px;
  font-family: var(--font-manrope);
  font-size: 14px;
  resize: vertical;
}

.admin-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-service-bookings {
  margin: 8px 0 18px;
  padding: 16px;
  border: 1px solid rgba(95, 143, 78, 0.14);
  border-radius: 12px;
  background: rgba(95, 143, 78, 0.04);
}

.admin-service-bookings__title {
  margin: 0 0 12px;
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 700;
}

.admin-service-bookings__empty {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}

.admin-service-bookings__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-service-bookings__item {
  padding: 14px;
  border: 1px solid rgba(95, 143, 78, 0.16);
  border-radius: 10px;
  background: #ffffff;
}

.admin-service-bookings__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-service-bookings__date {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 700;
}

.admin-service-bookings__meta {
  margin-bottom: 10px;
}

.admin-btn--primary {
  background: var(--btn-primary-bg);
  color: #ffffff;
}

.admin-btn--outline {
  background: #ffffff;
  color: var(--btn-primary-bg);
  border: 1.5px solid var(--btn-primary-bg);
}

.admin-btn--danger {
  background: #ffffff;
  color: #c94545;
  border: 1.5px solid #e8a0a0;
}

.admin-empty {
  margin: 0;
  padding: 28px 16px;
  text-align: center;
  font-family: var(--font-manrope);
  color: rgba(0, 0, 0, 0.5);
}

.admin-toast {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 40;
  width: min(calc(100% - 32px), 480px);
  margin: 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: #3a5c2b;
  color: #ffffff;
  font-family: var(--font-manrope);
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(58, 92, 43, 0.18);
  transform: translateX(-50%);
}

.admin-toast--error {
  background: #c94545;
}

@media (max-width: 1200px) {
  .admin-panel {
    padding: 50px clamp(20px, 5vw, 80px) 60px;
  }

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

@media (min-width: 540px) and (max-width: 960px) {
  .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .admin-panel {
    padding: 24px 16px 40px;
  }

  .admin-panel__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .admin-sidebar {
    position: sticky;
    top: var(--site-header-offset, 98px);
    z-index: 40;
    padding: 12px;
    gap: 10px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(58, 92, 43, 0.08);
  }

  .admin-sidebar__head {
    display: none;
  }

  .admin-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .admin-nav__link,
  .admin-nav__logout {
    width: 100%;
    flex: none;
    white-space: normal;
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
    line-height: 1.25;
  }

  .admin-nav__logout {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .admin-section__filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .admin-section__filters::-webkit-scrollbar {
    display: none;
  }

  .admin-filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .admin-card__prices {
    grid-template-columns: 1fr;
  }

  .admin-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-form__grid {
    grid-template-columns: 1fr;
  }

  .admin-modal__dialog {
    padding: 20px 16px;
  }

  .admin-card__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-admin .admin-panel {
    padding: 20px 12px 28px;
  }

  .admin-sidebar {
    padding: 10px;
    border-radius: 12px;
  }

  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .admin-nav__link,
  .admin-nav__logout {
    padding: 9px 6px;
    font-size: 12px;
  }

  .admin-section {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .admin-section__title {
    font-size: 22px;
  }

  .admin-section__lead {
    font-size: 14px;
  }

  .admin-section__filters {
    gap: 6px;
  }

  .admin-filter {
    padding: 7px 12px;
    font-size: 13px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-stat-card {
    padding: 18px 16px;
  }

  .admin-stat-card__value {
    font-size: 28px;
  }

  .admin-form {
    padding: 16px;
  }

  .admin-form__grid {
    grid-template-columns: 1fr;
  }

  .admin-card {
    padding: 16px;
    border-radius: 12px;
  }

  .admin-card__title {
    font-size: 16px;
  }

  .admin-card__meta {
    grid-template-columns: 1fr;
  }

  .admin-card__actions {
    flex-direction: column;
  }

  .admin-card__actions .admin-btn {
    width: 100%;
  }

  .admin-modal__dialog {
    width: calc(100% - 24px);
    max-height: calc(100vh - 32px);
    padding: 20px 16px;
    overflow-y: auto;
  }

  .admin-toast {
    bottom: 12px;
    font-size: 13px;
  }

  .admin-login__card {
    padding: 28px 20px;
  }
}

@media (max-width: 720px) {
  main > section[class]:not(.admin-panel) {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* Скрыть кнопку a11y, пока открыта модалка (на мобильных не перекрывает «Оплатить») */
body.room-payment-modal-open .a11y-launcher,
body.about-gallery-lightbox-open .a11y-launcher,
body.account-settings-modal-open .a11y-launcher,
body.admin-modal-open .a11y-launcher {
  visibility: hidden;
  pointer-events: none;
}

/* Версия для слабовидящих — кнопка на всех страницах */
.a11y-launcher {
  position: fixed;
  top: 50%;
  right: -6px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  border: 3px solid #1a1a1a;
  border-radius: 50% 0 0 50%;
  background: #ffff00;
  color: #1a1a1a;
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transform: translateY(-50%);
  transition: right 0.2s ease, background-color 0.2s ease;
}

.a11y-launcher:hover {
  right: 0;
  background: #000000;
  color: #ffff00;
}

.a11y-launcher:focus-visible {
  right: 0;
  outline: 4px solid #000000;
  outline-offset: 2px;
}

.a11y-launcher__icon {
  display: block;
  width: 28px;
  height: 28px;
}

@media (max-width: 720px) {
  .a11y-launcher {
    top: auto;
    bottom: 24px;
    right: -4px;
    transform: none;
    width: 52px;
    height: 52px;
  }

  .a11y-launcher:hover,
  .a11y-launcher:focus-visible {
    right: 0;
  }
}
