:root {
  --ink: #11150f;
  --forest: #171c14;
  --forest-soft: #20261c;
  --moss: #68734d;
  --copper: #c98249;
  --copper-light: #e0a66f;
  --ivory: #f1eadf;
  --paper: #e7dfd1;
  --blue: #7394a1;
  --text: #f7f1e7;
  --muted: rgba(247, 241, 231, 0.64);
  --line: rgba(245, 232, 211, 0.14);
  --dark-line: rgba(25, 29, 22, 0.16);
  --radius: 8px;
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; color: var(--text); background: var(--forest); text-rendering: optimizeLegibility; }
body, button, input, select, textarea { font: inherit; }
button, input, select, textarea { border: 0; }
button { color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(224, 166, 111, 0.8);
  outline-offset: 3px;
}
[hidden] { display: none !important; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 clamp(18px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 17, 12, 0.76);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(224, 166, 111, 0.6);
  border-radius: 50%;
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}
.brand > span:last-child { display: grid; line-height: 1; }
.brand b { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 400; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; }
.site-header nav { display: flex; justify-content: center; gap: 4px; }
.site-header nav a { padding: 10px 12px; color: #d3ccbf; font-size: 12px; }
.site-header nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-weather { color: #ddd6ca; font-size: 12px; white-space: nowrap; }
.menu-button { display: none; width: 42px; height: 42px; padding: 12px 10px; border: 1px solid var(--line); border-radius: 50%; background: rgba(26, 32, 22, 0.8); }
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: #fff; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-copper { color: #20160e; background: var(--copper); box-shadow: 0 18px 42px rgba(105, 58, 26, 0.26); }
.button-copper:hover { background: var(--copper-light); }
.button-glass { border-color: var(--line); background: rgba(20, 25, 17, 0.58); backdrop-filter: blur(10px); }
.button-quiet { border-color: var(--line); color: #cfc7bb; background: transparent; }
.button-small { min-height: 40px; padding: 9px 16px; font-size: 12px; }
.button-block { width: 100%; }
.play-icon { display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50%; font-size: 9px; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(22px, 5vw, 80px) 150px;
  isolation: isolate;
}
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-media {
  background-color: #151b14;
  background-image: url("assets/hero-wide.png");
  background-repeat: no-repeat;
  background-position: center 54%, center;
  background-size: cover, cover;
  filter: saturate(0.92) contrast(1.03);
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 14, 10, 0.88), rgba(10, 14, 10, 0.42) 52%, rgba(10, 14, 10, 0.08)),
    linear-gradient(0deg, rgba(11, 15, 10, 0.8), transparent 46%);
}
.hero-content { width: min(720px, 60vw); }
.eyebrow { margin-bottom: 18px; color: var(--copper-light); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.hero h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(62px, 8vw, 128px); line-height: 0.86; }
.hero-content > p:not(.eyebrow) { max-width: 520px; margin-bottom: 28px; color: #e0d8cb; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-review {
  position: absolute;
  top: 100px;
  right: clamp(22px, 5vw, 80px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 23, 15, 0.68);
  backdrop-filter: blur(12px);
}
.hero-review strong { grid-row: span 2; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.hero-review span { color: #edb455; font-size: 10px; letter-spacing: 0.08em; }
.hero-review small { color: var(--muted); font-size: 9px; }
.hero-film {
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  bottom: 130px;
  width: min(340px, 28vw);
  display: grid;
  grid-template-columns: 96px 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(20, 25, 17, 0.72);
  backdrop-filter: blur(12px);
  text-align: left;
}
.film-image { width: 96px; aspect-ratio: 4 / 3; border-radius: 5px; background: url("assets/visual-01.png") center / cover; }
.film-play { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #21160e; background: var(--copper); font-size: 10px; }
.hero-film > span:last-child { display: grid; gap: 5px; }
.hero-film b { font-family: Georgia, "Times New Roman", serif; font-size: 13px; font-weight: 400; line-height: 1.25; }
.hero-film small { color: var(--muted); font-size: 9px; }
.hero-footer {
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  bottom: 28px;
  left: clamp(22px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-footer > span { display: grid; grid-template-columns: 28px auto; column-gap: 8px; font-size: 12px; }
.hero-footer > span b { grid-row: span 2; color: var(--copper-light); font-size: 20px; }
.hero-footer small { color: var(--muted); font-size: 9px; }
.hero-footer > a { margin-left: auto; color: #ddd6ca; font-size: 11px; }

.section { padding: 104px clamp(20px, 5vw, 80px); }
.section-heading { margin-bottom: 34px; }
.heading-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 470px); align-items: end; gap: 42px; }
.heading-row h2 { max-width: 900px; margin: 0; font-size: clamp(46px, 5.8vw, 88px); line-height: 0.94; }
.heading-row > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.houses-section { background: #171c14; }
.catalog-toolbar { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.catalog-tabs, .amenity-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.catalog-tabs button {
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #b9b4a8;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}
.catalog-tabs button.is-active { border-color: var(--moss); color: #f3eee3; background: var(--moss); }
.amenity-filters label { position: relative; }
.amenity-filters input { position: absolute; opacity: 0; }
.amenity-filters span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #b9b4a8;
  cursor: pointer;
  font-size: 11px;
}
.amenity-filters input:checked + span { border-color: var(--copper); color: #21160e; background: var(--copper); }
.filter-status { min-height: 18px; margin: 0 0 18px; color: var(--muted); font-size: 10px; }
.house-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.house-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #1d2319; transition: transform 0.25s ease, border-color 0.25s ease; }
.house-card:hover { transform: translateY(-4px); border-color: rgba(201, 130, 73, 0.52); }
.house-card.featured { border-color: var(--copper); }
.house-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.house-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; transition: transform 0.5s ease; }
.house-card:nth-child(2) .house-media img { object-position: center 46%; }
.house-card:nth-child(3) .house-media img { object-position: center 45%; }
.house-card:nth-child(4) .house-media img { object-position: center 52%; }
.house-card:hover .house-media img { transform: scale(1.04); }
.favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(20, 24, 17, 0.55);
  font-size: 19px;
  backdrop-filter: blur(8px);
}
.favorite.is-active { color: #2a1710; background: var(--copper); }
.house-badge { position: absolute; bottom: 10px; left: 10px; padding: 7px 9px; border-radius: 4px; color: #1f160e; background: var(--copper); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.house-body { display: grid; gap: 12px; padding: 18px; }
.house-body > div:first-child small { color: var(--muted); font-size: 9px; }
.house-body h3 { margin: 3px 0 0; font-size: 26px; }
.house-body > p { min-height: 54px; margin: 0; color: #aba89d; font-size: 12px; line-height: 1.5; }
.amenity-list { display: flex; flex-wrap: wrap; gap: 5px; }
.amenity-list span { padding: 5px 7px; border: 1px solid var(--line); border-radius: 4px; color: #bbb6aa; font-size: 9px; }
.house-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.house-bottom strong { color: #f1e9dc; font-size: 17px; }
.house-bottom strong small { color: var(--muted); font-size: 9px; font-weight: 400; }
.house-bottom button { min-height: 36px; padding: 8px 12px; border-radius: 4px; color: #20160e; background: var(--copper); font-size: 10px; font-weight: 800; }
.comfort-row { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 14px; border: 1px solid var(--line); border-radius: var(--radius); }
.comfort-row span { padding: 16px 12px; color: #aaa69a; font-size: 10px; text-align: center; }
.comfort-row span + span { border-left: 1px solid var(--line); }

.availability-section { color: var(--ink); background: var(--paper); }
.availability-section .eyebrow { color: #9b5f31; }
.availability-section .heading-row > p { color: #60675b; }
.availability-layout { display: grid; grid-template-columns: minmax(240px, 0.65fr) minmax(390px, 1fr) minmax(300px, 0.72fr); gap: 12px; align-items: start; }
.stay-settings, .stay-calendar, .stay-summary { border: 1px solid var(--dark-line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.44); }
.stay-settings { display: grid; gap: 14px; padding: 22px; }
.stay-settings > label, .guest-stepper { display: grid; gap: 7px; }
.stay-settings label > span, .guest-stepper > span { color: #61685c; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.stay-settings input[type="date"], .stay-settings select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--dark-line);
  border-radius: 5px;
  color: #1d211b;
  background: rgba(255, 255, 255, 0.74);
}
.guest-stepper > div { display: grid; grid-template-columns: 44px 1fr 44px; border: 1px solid var(--dark-line); border-radius: 5px; background: rgba(255, 255, 255, 0.74); }
.guest-stepper button { color: #2d322a; background: transparent; font-size: 21px; }
.guest-stepper strong { display: grid; min-height: 44px; place-items: center; border-right: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.stay-settings fieldset { min-width: 0; margin: 3px 0 0; padding: 0; border: 0; }
.stay-settings legend { margin-bottom: 9px; color: #3e443a; font-size: 12px; font-weight: 800; }
.extra-list { display: grid; gap: 7px; }
.extra-list label { position: relative; }
.extra-list input { position: absolute; opacity: 0; }
.extra-list label > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--dark-line);
  border-radius: 5px;
  color: #3e443a;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-transform: none;
}
.extra-list input:checked + span { border-color: #8c6f45; background: #e4d5bf; box-shadow: inset 3px 0 0 var(--copper); }
.extra-list b { font-size: 10px; }
.extra-list small { color: #70766c; font-size: 9px; }
.stay-calendar { padding: 22px; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.calendar-head strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.calendar-head button { width: 36px; height: 36px; border: 1px solid var(--dark-line); border-radius: 50%; color: #30352c; background: rgba(255, 255, 255, 0.62); }
.calendar-week, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.calendar-week { margin-bottom: 6px; color: #7a8076; font-size: 9px; text-align: center; }
.calendar-day {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #34392f;
  background: transparent;
  font-size: 11px;
}
.calendar-day:hover:not(:disabled) { border-color: #9b6f49; }
.calendar-day.is-in-range { border-radius: 4px; background: rgba(201, 130, 73, 0.2); }
.calendar-day.is-edge { color: #fff; background: var(--copper); }
.calendar-day.is-today::after { position: absolute; bottom: 3px; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); content: ""; }
.calendar-day:disabled { color: #b2b2aa; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.is-empty { visibility: hidden; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 18px; color: #6f756b; font-size: 9px; }
.calendar-legend span { display: flex; align-items: center; gap: 6px; }
.calendar-legend i { width: 8px; height: 8px; border: 1px solid #9aa093; border-radius: 50%; }
.calendar-legend i.selected { border-color: var(--copper); background: var(--copper); }
.calendar-legend i.busy { border-color: #b9b9b2; background: #b9b9b2; }
.stay-summary { padding: 24px; color: #f7f1e7; background: #22281d; }
.stay-summary > small { color: var(--copper-light); font-weight: 800; text-transform: uppercase; }
.summary-house { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center; margin: 14px 0 20px; }
.summary-house img { width: 72px; aspect-ratio: 1; border-radius: 5px; object-fit: cover; }
.summary-house div { display: grid; gap: 5px; }
.summary-house span { color: var(--muted); font-size: 10px; }
.summary-lines { display: grid; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary-lines div { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 11px; }
.summary-lines b { color: #f2ece2; }
.summary-total { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding: 18px 0 8px; }
.summary-total span { color: var(--muted); }
.summary-total strong { color: var(--copper-light); font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 400; }
.stay-summary > p { color: var(--muted); font-size: 10px; line-height: 1.5; }

.packages-section { background: #11160f; }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.package-card { position: relative; overflow: hidden; min-height: 500px; display: grid; align-items: end; border: 1px solid var(--line); border-radius: var(--radius); background: #1b2117; }
.package-card.featured { border-color: var(--copper); }
.package-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.package-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 15, 11, 0.08), rgba(12, 15, 11, 0.96) 76%); content: ""; }
.package-card > div { position: relative; z-index: 2; padding: 22px; }
.package-card small { color: var(--copper-light); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.package-card h3 { margin: 7px 0 14px; font-size: 31px; }
.package-card ul { display: grid; gap: 7px; margin: 0 0 20px; padding: 0; list-style: none; color: #c1bcaf; font-size: 10px; }
.package-card li::before { margin-right: 7px; color: var(--copper-light); content: "✓"; }
.package-card strong { display: block; margin-bottom: 14px; font-size: 19px; }
.package-card button { width: 100%; min-height: 40px; border: 1px solid rgba(224, 166, 111, 0.5); border-radius: 4px; color: #f1e9de; background: rgba(23, 28, 20, 0.76); font-size: 10px; font-weight: 800; }
.package-card button:hover { color: #21160e; background: var(--copper); }

.quiz-section { background: #1b2117; }
.quiz-shell { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr); gap: 12px; }
.quiz-main, .quiz-result { border: 1px solid var(--line); border-radius: var(--radius); background: #20271c; }
.quiz-main { display: grid; align-content: start; min-height: 520px; padding: clamp(24px, 4vw, 46px); }
.quiz-progress { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; margin-bottom: 40px; color: var(--muted); font-size: 10px; }
.quiz-progress > div { overflow: hidden; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.1); }
.quiz-progress i { display: block; width: 25%; height: 100%; background: var(--copper); transition: width 0.25s ease; }
.quiz-question { margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3vw, 46px); line-height: 1.08; }
.quiz-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.quiz-options button { min-height: 72px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 5px; color: #c8c3b7; background: #191f16; text-align: left; font-size: 12px; }
.quiz-options button.is-selected { border-color: var(--copper); color: #f5ede1; background: rgba(201, 130, 73, 0.14); box-shadow: inset 3px 0 0 var(--copper); }
.quiz-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 34px; }
.quiz-result { display: grid; align-content: start; padding: 24px; }
.quiz-result > small { color: var(--copper-light); font-weight: 800; text-transform: uppercase; }
.quiz-result h3 { margin: 8px 0 10px; font-size: 36px; }
.quiz-result > p { color: var(--muted); font-size: 12px; line-height: 1.6; }
.result-image { overflow: hidden; margin: 10px 0 18px; border-radius: 6px; aspect-ratio: 4 / 3; }
.result-image img { width: 100%; height: 100%; object-fit: cover; }
.quiz-result .button { margin-top: auto; }

.place-section { color: var(--ink); background: var(--ivory); }
.place-section .eyebrow { color: #985c30; }
.place-section .heading-row > p { color: #62695e; }
.place-layout { display: grid; grid-template-columns: 0.75fr 1.25fr 0.72fr; gap: 12px; }
.map-panel, .gallery-grid, .activity-panel { overflow: hidden; border: 1px solid var(--dark-line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.5); }
.map-art { position: relative; min-height: 360px; overflow: hidden; background: url("assets/location-map.png") center / cover no-repeat; }
.map-art::before, .map-art::after { display: none; }
.map-road { display: none; }
.road-one { top: 38%; left: 12%; width: 90%; transform: rotate(24deg); }
.road-two { top: 68%; left: 8%; width: 72%; transform: rotate(-18deg); }
.map-pin { position: absolute; z-index: 2; padding: 7px 9px; border-radius: 4px; color: #f5efe5; background: #263124; box-shadow: 0 7px 20px rgba(0, 0, 0, 0.22); font-style: normal; font-size: 9px; }
.map-pin::before { margin-right: 5px; color: var(--copper-light); content: "●"; }
.pin-main { top: 28%; left: 54%; }
.pin-moscow { right: 9%; bottom: 14%; }
.pin-trail { bottom: 31%; left: 14%; }
.map-panel > div:last-child { display: grid; gap: 5px; padding: 18px; }
.map-panel > div:last-child span { color: #687064; font-size: 10px; }
.map-panel button { width: fit-content; margin-top: 8px; padding: 8px 0; color: #8e552c; background: transparent; font-size: 10px; font-weight: 800; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 4px; padding: 4px; background: #d4ccbd; }
.gallery-grid button { position: relative; min-height: 180px; overflow: hidden; padding: 0; background: #283023; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid button:hover img { transform: scale(1.04); }
.gallery-grid span { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 8px; border-radius: 4px; color: #fff; background: rgba(15, 19, 13, 0.62); font-size: 9px; font-weight: 800; backdrop-filter: blur(8px); }
.activity-panel { padding: 20px; }
.activity-head { margin-bottom: 16px; }
.activity-head h3 { margin-bottom: 4px; font-size: 28px; }
.activity-head span { color: #71786d; font-size: 9px; }
.activity-list { display: grid; gap: 8px; }
.activity-list button { display: grid; grid-template-columns: 36px 1fr; gap: 3px 10px; align-items: center; padding: 12px; border: 1px solid var(--dark-line); border-radius: 5px; color: #2e342c; background: rgba(255, 255, 255, 0.48); text-align: left; }
.activity-list button:hover { border-color: #a66c3e; }
.activity-list button > span { grid-row: span 2; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #fff; background: #6b7659; }
.activity-list b { font-size: 10px; }
.activity-list small { color: #747a70; font-size: 9px; }

.reviews-section { display: grid; grid-template-columns: 1fr 0.72fr; gap: 12px; background: #161b13; }
.review-slider, .guarantee-grid { border: 1px solid var(--line); border-radius: var(--radius); background: #1e241a; }
.review-slider { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; min-height: 300px; padding: clamp(24px, 4vw, 44px); }
.review-stars { color: #edb455; letter-spacing: 0.1em; }
.review-copy blockquote { max-width: 850px; margin: 20px 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 44px); line-height: 1.17; }
.review-copy p { display: grid; gap: 4px; margin: 0; }
.review-copy p span { color: var(--muted); font-size: 10px; }
.review-controls { display: flex; align-items: center; gap: 10px; }
.review-controls button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.review-controls span { color: var(--muted); font-size: 10px; white-space: nowrap; }
.guarantee-grid { display: grid; align-content: center; padding: 20px; }
.guarantee-grid article { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
.guarantee-grid article:first-child { border-top: 0; }
.guarantee-grid article > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(224, 166, 111, 0.28); border-radius: 50%; color: var(--copper-light); }
.guarantee-grid div { display: grid; gap: 5px; }
.guarantee-grid small { color: var(--muted); }

.booking-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr); gap: clamp(40px, 7vw, 110px); align-items: center; color: var(--ink); background: var(--paper); }
.booking-copy h2 { margin-bottom: 22px; font-size: clamp(52px, 6vw, 88px); line-height: 0.94; }
.booking-copy > p:not(.eyebrow) { max-width: 580px; color: #5f665b; line-height: 1.65; }
.booking-copy .eyebrow { color: #975a2e; }
.manager-card { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: center; max-width: 480px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--dark-line); }
.manager-card img { width: 72px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; object-position: 70% center; }
.manager-card div { display: grid; gap: 4px; }
.manager-card small, .manager-card span { color: #6c7368; font-size: 10px; }
.booking-form { display: grid; gap: 13px; padding: clamp(24px, 3vw, 36px); border: 1px solid var(--dark-line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.58); box-shadow: 0 24px 70px rgba(57, 52, 42, 0.1); }
.booking-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.booking-form label { display: grid; gap: 7px; }
.booking-form label > span, .payment-fieldset legend { color: #5e655a; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.booking-form input, .booking-form select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--dark-line); border-radius: 5px; color: #22271f; background: rgba(255, 255, 255, 0.78); }
.payment-fieldset { min-width: 0; margin: 2px 0; padding: 0; border: 0; }
.payment-fieldset legend { margin-bottom: 8px; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.payment-options label { position: relative; }
.payment-options input { position: absolute; opacity: 0; }
.payment-options span { min-height: 42px; display: grid; place-items: center; border: 1px solid var(--dark-line); border-radius: 5px; color: #62695e; background: rgba(255, 255, 255, 0.55); cursor: pointer; font-size: 10px; font-weight: 800; }
.payment-options input:checked + span { border-color: #9d693f; color: #fff; background: #6a7656; }
.booking-form .consent { grid-template-columns: 18px 1fr; align-items: start; gap: 9px; }
.booking-form .consent input { width: 17px; min-height: 17px; padding: 0; accent-color: #6a7656; }
.booking-form .consent span { text-transform: none; line-height: 1.4; }
.booking-total { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding: 15px 0 3px; border-top: 1px solid var(--dark-line); }
.booking-total span { color: #666d62; font-size: 11px; }
.booking-total strong { font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 400; }
.form-message { min-height: 18px; margin: 0; color: #a23b27; font-size: 10px; font-weight: 800; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 34px clamp(20px, 5vw, 80px); border-top: 1px solid var(--line); background: #11160f; }
.site-footer > div { display: flex; justify-content: center; gap: 22px; color: #aaa69b; font-size: 10px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 10px; text-align: right; line-height: 1.6; }
.site-footer p a { color: #e6ddd0; font-weight: 800; }

.media-modal, .lightbox, .success-modal { position: fixed; z-index: 80; inset: 0; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7, 10, 7, 0.88); backdrop-filter: blur(8px); }
.media-dialog, .lightbox-dialog, .success-dialog { position: relative; z-index: 1; width: min(980px, 100%); border: 1px solid var(--line); border-radius: var(--radius); background: #171c14; box-shadow: 0 34px 110px rgba(0, 0, 0, 0.56); }
.modal-close { position: absolute; z-index: 2; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; color: #fff; background: rgba(16, 20, 14, 0.72); font-size: 24px; }
.modal-film { position: relative; min-height: min(70vh, 680px); overflow: hidden; background: #11160f; }
.modal-film > img { width: 100%; height: min(70vh, 680px); object-fit: cover; }
.modal-film p { position: absolute; right: 24px; bottom: 24px; left: 24px; margin: 0; padding: 18px 150px 18px 20px; border-radius: 5px; background: rgba(16, 21, 14, .78); font-family: Georgia, "Times New Roman", serif; font-size: 28px; backdrop-filter: blur(12px); }
.tour-controls { position: absolute; right: 36px; bottom: 35px; display: flex; align-items: center; gap: 10px; }
.tour-controls button { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: #fff; background: rgba(12,16,11,.76); }
.tour-controls span { min-width: 42px; text-align: center; font-size: 10px; }
.lightbox-dialog { overflow: hidden; width: min(1100px, 100%); }
.lightbox-dialog img { width: 100%; max-height: 82vh; object-fit: contain; background: #0d100c; }
.success-dialog { width: min(440px, 100%); padding: 36px; text-align: center; }
.success-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 16px; place-items: center; border-radius: 50%; color: #1d2319; background: var(--copper); font-size: 22px; font-weight: 900; }
.success-dialog > small { color: var(--copper-light); font-weight: 800; text-transform: uppercase; }
.success-dialog h2 { margin: 7px 0 12px; font-size: 42px; }
.success-dialog p { color: var(--muted); line-height: 1.6; }
.toast { position: fixed; z-index: 90; right: 20px; bottom: 20px; max-width: min(360px, calc(100% - 40px)); padding: 14px 18px; border: 1px solid rgba(224, 166, 111, 0.35); border-radius: 5px; color: #f3e9dc; background: #283020; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34); opacity: 0; pointer-events: none; transform: translateY(12px); transition: 0.2s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-header nav a { padding-inline: 8px; }
  .header-weather { display: none; }
  .house-grid, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .availability-layout { grid-template-columns: 0.72fr 1.28fr; }
  .stay-summary { grid-column: 1 / -1; }
  .place-layout { grid-template-columns: 1fr 1fr; }
  .activity-panel { grid-column: 1 / -1; }
  .activity-list { grid-template-columns: repeat(4, 1fr); }
  .reviews-section { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: repeat(3, 1fr); }
  .guarantee-grid article { border-top: 0; border-left: 1px solid var(--line); padding: 8px 16px; }
  .guarantee-grid article:first-child { border-left: 0; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 68px; }
  .site-header { min-height: 66px; }
  .menu-button { display: block; }
  .site-header nav { position: absolute; top: 66px; right: 0; left: 0; display: none; padding: 10px 18px 16px; border-bottom: 1px solid var(--line); background: #12170f; }
  .site-header nav.is-open { display: grid; }
  .site-header nav a { min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .hero-content { width: 100%; }
  .hero-film { width: 350px; max-width: calc(100% - 40px); }
  .heading-row { grid-template-columns: 1fr; gap: 16px; }
  .catalog-toolbar { align-items: start; flex-direction: column; }
  .comfort-row { grid-template-columns: repeat(3, 1fr); }
  .comfort-row span:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .comfort-row span:nth-child(n+5) { border-top: 1px solid var(--line); }
  .quiz-shell { grid-template-columns: 1fr; }
  .place-layout { grid-template-columns: 1fr; }
  .activity-panel { grid-column: auto; }
  .activity-list { grid-template-columns: repeat(2, 1fr); }
  .booking-section { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer > div { flex-wrap: wrap; }
  .site-footer p { text-align: center; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 14px; }
  .header-actions .button { display: none; }
  .section { padding: 72px 16px; }
  .hero { min-height: 880px; align-items: start; padding: 112px 16px 150px; }
  .hero-media { background-position: 58% center, center; }
  .hero-shade { background: linear-gradient(180deg, rgba(10, 14, 10, 0.72), rgba(10, 14, 10, 0.2) 38%, rgba(10, 14, 10, 0.88) 74%); }
  .hero h1 { font-size: 56px; }
  .hero-review { top: auto; right: 16px; bottom: 258px; }
  .hero-film { right: 16px; bottom: 126px; left: 16px; width: auto; grid-template-columns: 82px 32px 1fr; }
  .film-image { width: 82px; }
  .hero-footer { right: 16px; bottom: 18px; left: 16px; justify-content: space-between; gap: 8px; }
  .hero-footer > span:nth-child(2) { display: none; }
  .hero-footer > a { margin-left: 0; }
  .heading-row h2 { font-size: 47px; }
  .house-grid, .package-grid { grid-template-columns: 1fr; }
  .comfort-row { grid-template-columns: repeat(2, 1fr); }
  .comfort-row span:nth-child(odd) { border-left: 0; }
  .comfort-row span:nth-child(n+3) { border-top: 1px solid var(--line); }
  .availability-layout { grid-template-columns: 1fr; }
  .stay-summary { grid-column: auto; }
  .calendar-grid, .calendar-week { gap: 2px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-grid button { min-height: 240px; }
  .activity-list { grid-template-columns: 1fr; }
  .review-slider { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-grid article { border-top: 1px solid var(--line); border-left: 0; }
  .guarantee-grid article:first-child { border-top: 0; }
  .booking-form-row, .payment-options { grid-template-columns: 1fr; }
  .modal-film { min-height: 68vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
