:root {
  color-scheme: light;
  --ink: #18241f;
  --muted: #5f6c65;
  --paper: #fbfaf5;
  --mist: #edf4ef;
  --leaf: #1f6f57;
  --leaf-dark: #154b3c;
  --river: #256f8c;
  --coral: #d86f52;
  --line: rgba(24, 36, 31, 0.14);
  --shadow: 0 24px 70px rgba(19, 54, 43, 0.18);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --glass-soft: rgba(255, 255, 255, 0.34);
  --glass-border: rgba(255, 255, 255, 0.54);
  --glass-line: rgba(24, 36, 31, 0.1);
  --glass-shadow: 0 22px 70px rgba(20, 49, 43, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(237, 244, 239, 0.94), transparent 32%),
    linear-gradient(245deg, rgba(221, 236, 232, 0.88), transparent 38%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.66);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 34px rgba(20, 49, 43, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.brand,
.nav-links,
.header-controls,
.hero-actions,
.form-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(231, 244, 236, 0.58));
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 10px 24px rgba(31, 111, 87, 0.12);
  color: var(--leaf);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.mark-sun {
  fill: #e6b65d;
}

.mark-leaf {
  fill: var(--leaf);
}

.mark-wave {
  fill: none;
  stroke: var(--river);
  stroke-linecap: round;
  stroke-width: 2.6;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover,
.telegram-action:hover,
.instagram-action:hover,
.site-footer a:hover {
  color: var(--leaf-dark);
}

.header-controls {
  gap: 10px;
}

.social-action,
.menu-toggle,
.gallery-arrow,
.story-arrow {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.48));
  color: var(--ink);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 30px rgba(20, 49, 43, 0.1);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.social-action {
  width: 46px;
  height: 46px;
}

.social-action svg {
  width: 22px;
  height: 22px;
}

.telegram-action svg {
  fill: #229ed9;
}

.instagram-action {
  color: #c13584;
}

.instagram-action:hover {
  color: #e1306c;
}

.instagram-action svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.44fr);
  min-height: calc(100svh - 72px);
  padding: clamp(28px, 5vw, 70px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background: #153b34;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 33, 29, 0.84), rgba(12, 33, 29, 0.42) 54%, rgba(12, 33, 29, 0.74)),
    linear-gradient(0deg, rgba(12, 33, 29, 0.42), transparent 38%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content,
.lead-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 830px;
  min-height: 560px;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.9;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 34px rgba(20, 49, 43, 0.14);
}

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

.button.primary {
  background: linear-gradient(145deg, rgba(226, 124, 92, 0.98), rgba(199, 91, 66, 0.96));
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

.lead-panel,
.booking-form {
  position: relative;
  align-self: center;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(248, 249, 240, 0.58));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.lead-panel::before,
.booking-form::before,
.feature-grid article::before,
.booking-copy address::before,
.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 34%, rgba(255, 255, 255, 0.18));
  pointer-events: none;
}

.lead-panel > *,
.booking-form > *,
.feature-grid article > *,
.booking-copy address > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.lead-panel h2,
.booking-section h2,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.lead-panel h2 {
  margin-bottom: 20px;
  font-size: 30px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(24, 36, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(20, 49, 43, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--river);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(37, 111, 140, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lead-panel,
.booking-form {
  display: grid;
  gap: 15px;
}

.compact-lead {
  gap: 12px;
  padding: 22px;
}

.compact-lead h2 {
  margin-bottom: 8px;
}

.compact-lead input,
.compact-lead select {
  min-height: 44px;
  padding-block: 10px;
}

.compact-grid {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 12px;
}

.compact-more {
  display: grid;
  gap: 12px;
}

.compact-more summary {
  width: max-content;
  cursor: pointer;
  color: var(--river);
  font-size: 14px;
  font-weight: 850;
}

.compact-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.form-row {
  gap: 12px;
}

.form-row > label {
  flex: 1;
  min-width: 0;
}

.quick-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-time-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
}

.booking-contact-row,
.booking-date-row,
.booking-time-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 750;
}

.form-status[data-tone="error"] {
  color: #a7422b;
}

.section,
.feature-grid,
.place-gallery,
.house-showcase,
.booking-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.intro,
.split,
.house-showcase,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.section p,
.house-copy p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.house-showcase {
  grid-template-columns: minmax(0, 1fr);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(237, 244, 239, 0.64)),
    linear-gradient(250deg, rgba(216, 111, 82, 0.08), transparent 42%);
  gap: clamp(22px, 3vw, 34px);
  padding-block: clamp(46px, 5vw, 72px);
}

.house-copy {
  position: static;
  display: grid;
  width: min(100%, 860px);
  gap: 12px;
  align-self: start;
}

.house-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.map-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
  color: var(--leaf-dark);
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(20, 49, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.house-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  align-items: start;
}

.house-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 48px rgba(20, 49, 43, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.house-card-large {
  grid-row: auto;
}

.house-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(0deg, rgba(6, 22, 20, 0.74), transparent);
  pointer-events: none;
}

.house-card img,
.house-card video {
  display: block;
  width: 100%;
  height: auto;
}

.house-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 1;
  color: white;
  font-size: 16px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.place-gallery {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(237, 244, 239, 0.62)),
    linear-gradient(0deg, rgba(37, 111, 140, 0.08), transparent 44%);
}

.place-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.place-gallery h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(310px, 430px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}

.story-viewer {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: #102624;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 80px rgba(19, 54, 43, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.story-progress {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 5px;
}

.story-progress span {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.story-progress span::after {
  position: absolute;
  inset: 0;
  width: 0;
  content: "";
  border-radius: inherit;
  background: white;
}

.story-progress span.is-seen::after {
  width: 100%;
}

.story-progress span.is-active::after {
  animation: storyProgress var(--story-duration, 6s) linear forwards;
}

@keyframes storyProgress {
  to {
    width: 100%;
  }
}

.story-brand {
  display: none;
}

.story-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 38%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.story-hit-prev {
  left: 0;
}

.story-hit-next {
  right: 0;
}

.story-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(10, 28, 25, 0.42);
  color: white;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.story-arrow:hover {
  background: rgba(10, 28, 25, 0.62);
}

.story-arrow-prev {
  left: 14px;
}

.story-arrow-next {
  right: 14px;
}

.story-arrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.story-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(22px) scale(1.015);
  transition: opacity 0.28s ease, transform 0.34s ease;
}

.story-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}

.story-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(0deg, rgba(6, 22, 20, 0.76), transparent);
  pointer-events: none;
}

.story-slide img,
.story-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 36px;
  left: 18px;
  z-index: 3;
  color: white;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.story-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.story-thumb {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #102624;
  color: white;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 34px rgba(20, 49, 43, 0.12);
}

.story-thumb.is-active {
  border-color: rgba(216, 111, 82, 0.92);
  box-shadow: 0 18px 44px rgba(216, 111, 82, 0.18);
}

.story-thumb img,
.story-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.story-thumb:hover img,
.story-thumb:hover video,
.story-thumb.is-active img,
.story-thumb.is-active video {
  transform: scale(1.04);
  opacity: 1;
}

.story-thumb span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.story-thumb::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(0deg, rgba(6, 22, 20, 0.72), transparent);
  pointer-events: none;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  color: var(--leaf-dark);
}

.gallery-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.place-slider {
  position: relative;
  min-height: clamp(380px, 56vw, 660px);
  overflow: hidden;
  border-radius: 8px;
  background: #122e2d;
}

.place-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.place-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.place-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(11, 32, 29, 0.68), transparent 52%);
}

.place-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-slide figcaption {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 2;
  display: grid;
  gap: 7px;
  color: white;
  font-size: clamp(26px, 5vw, 56px);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  text-align: right;
}

.place-slide figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery-dots button {
  width: 36px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 36, 31, 0.2);
  cursor: pointer;
}

.gallery-dots button.is-active {
  background: var(--leaf);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(237, 244, 239, 0.9), rgba(255, 255, 255, 0.46)),
    linear-gradient(230deg, rgba(216, 111, 82, 0.08), transparent 42%);
}

.feature-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 49, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: #e5f0ec;
  color: var(--leaf-dark);
  font-size: 22px;
  font-weight: 900;
}

.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

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

.format-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 75, 60, 0.96), rgba(31, 111, 87, 0.88)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent 42%);
  color: white;
}

.format-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.format-section > * {
  position: relative;
  z-index: 1;
}

.format-section .section-kicker {
  color: rgba(255, 215, 192, 0.94);
}

.format-section h2 {
  color: white;
}

.format-section .format-list div {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.format-section .format-list span {
  color: rgba(255, 215, 192, 0.94);
}

.format-section .format-list p {
  color: rgba(255, 255, 255, 0.94);
}

.format-list {
  display: grid;
  gap: 12px;
}

.format-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.format-list span {
  color: var(--river);
  font-weight: 900;
}

.format-list p {
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
}

.booking-section {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.84), rgba(237, 244, 239, 0.7)),
    linear-gradient(250deg, rgba(37, 111, 140, 0.08), transparent 44%);
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-copy address {
  position: relative;
  display: grid;
  gap: 7px;
  margin-top: 32px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.36));
  color: var(--muted);
  font-style: normal;
  box-shadow: 0 16px 44px rgba(20, 49, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.booking-copy address strong {
  color: var(--ink);
  font-size: 22px;
}

.booking-copy address a {
  color: var(--river);
  font-weight: 800;
}

.booking-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(248, 249, 240, 0.52));
  box-shadow: var(--glass-shadow);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  overflow: hidden;
  background: rgba(243, 247, 243, 0.72);
  color: var(--muted);
  border-top: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.footer-brand,
.footer-links,
.footer-telegram {
  display: flex;
  align-items: center;
}

.footer-brand {
  gap: 12px;
}

.footer-brand .brand-mark {
  flex: 0 0 auto;
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  color: var(--ink);
  font-weight: 850;
}

.footer-brand span {
  font-size: 14px;
}

.footer-links {
  gap: 8px;
}

.footer-links a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  border-color: var(--glass-border);
  background: rgba(255, 255, 255, 0.56);
  color: var(--leaf-dark);
}

.footer-telegram {
  gap: 9px;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44));
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(19, 54, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-telegram svg {
  width: 21px;
  height: 21px;
  fill: #229ed9;
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
    padding: 13px 18px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    z-index: -1;
    display: grid;
    min-width: 190px;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(251, 250, 245, 0.84), rgba(255, 255, 255, 0.58));
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(20px) saturate(1.12);
    -webkit-backdrop-filter: blur(20px) saturate(1.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links a {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--ink);
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  }

  .menu-open .nav-links {
    z-index: 20;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    order: 3;
  }

  .instagram-action {
    order: 1;
  }

  .telegram-action {
    order: 2;
  }

  .hero,
  .intro,
  .split,
  .house-showcase,
  .booking-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding: 32px 20px 42px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(12, 33, 29, 0.76), rgba(12, 33, 29, 0.38) 48%, rgba(12, 33, 29, 0.7)),
      linear-gradient(90deg, rgba(12, 33, 29, 0.64), rgba(12, 33, 29, 0.22));
  }

  .hero-content {
    min-height: 430px;
    justify-content: flex-end;
  }

  .lead-panel {
    align-self: stretch;
    width: min(100%, 520px);
    margin-inline: auto;
  }

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

  .booking-copy {
    position: static;
  }

  .house-copy {
    position: static;
  }

  .house-showcase {
    padding-block: 48px;
  }

  .place-gallery-head {
    align-items: start;
  }

  .story-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-viewer {
    justify-self: center;
  }

  .story-thumbs {
    display: flex;
    gap: 10px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .story-thumb {
    flex: 0 0 112px;
    min-height: 150px;
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: center;
  }

  .brand {
    min-width: 0;
    flex: 1;
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand-mark svg {
    width: 30px;
    height: 30px;
  }

  .social-action,
  .menu-toggle {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 28px 20px 36px;
  }

  .hero-content {
    min-height: 330px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 0.95;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .lead-panel,
  .booking-form {
    padding: 22px;
  }

  .lead-panel h2,
  .booking-section h2,
  .section h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .section,
  .feature-grid,
  .place-gallery,
  .house-showcase,
  .booking-section {
    padding: 48px 20px;
  }

  .section p,
  .house-copy p,
  .booking-copy p {
    font-size: 16px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row > label,
  .quick-date-row > label,
  .quick-time-row > label,
  .booking-contact-row > label,
  .booking-date-row > label,
  .booking-time-row > label {
    width: 100%;
  }

  .quick-date-row,
  .quick-time-row,
  .compact-grid,
  .compact-more-grid,
  .booking-contact-row,
  .booking-date-row,
  .booking-time-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .feature-grid article {
    min-height: 0;
    padding: 22px;
  }

  .icon {
    margin-bottom: 22px;
  }

  .house-media-grid {
    display: flex;
    gap: 12px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .house-card,
  .house-card-large {
    flex: 0 0 min(76vw, 280px);
    min-height: 0;
    scroll-snap-align: start;
  }

  .place-gallery-head {
    display: grid;
  }

  .gallery-controls {
    justify-self: start;
  }

  .place-slider {
    min-height: 430px;
  }

  .story-viewer {
    width: min(100%, 390px);
  }

  .story-slide figcaption {
    bottom: 34px;
    font-size: 22px;
  }

  .place-slide figcaption {
    right: 20px;
    bottom: 20px;
  }

  .format-list div {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .format-list p {
    font-size: 19px;
  }

  .booking-copy address {
    margin-top: 22px;
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 24px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-links a {
    background: rgba(255, 255, 255, 0.54);
  }

  .footer-telegram {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span:last-child {
    font-size: 14px;
  }

  .social-action,
  .menu-toggle {
    padding-inline: 10px;
  }

  .hero,
  .section,
  .feature-grid,
  .place-gallery,
  .house-showcase,
  .booking-section {
    padding-inline: 16px;
  }

  .lead-panel,
  .booking-form {
    padding: 18px;
  }
}
