:root {
  --ink: #173b38;
  --ink-strong: #0d2c2a;
  --green: #174744;
  --green-2: #28615c;
  --green-soft: #dce9df;
  --sage: #8ba58b;
  --cream: #f5f1e7;
  --cream-2: #ece6d8;
  --paper: #fffdf8;
  --sand: #d4bd8e;
  --gold: #e6c67f;
  --orange: #bc6f42;
  --red: #a44941;
  --muted: #667875;
  --line: rgba(23, 59, 56, 0.14);
  --shadow: 0 24px 70px rgba(21, 63, 61, 0.13);
  --shadow-soft: 0 14px 38px rgba(21, 63, 61, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1240px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.is-hidden { display: none !important; }
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  left: -10000px !important;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(23, 59, 56, 0.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: var(--paper);
  background: var(--green);
}
.brand-mark svg { width: 29px; height: 29px; }
.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand > span:last-child { display: grid; line-height: 1.05; }
.brand strong { font-size: 16px; letter-spacing: -0.02em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.header-nav a:not(.nav-book):hover { color: var(--green-2); }
.nav-book {
  padding: 11px 18px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
}
.nav-book:hover { background: var(--ink-strong); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 98px;
  background:
    radial-gradient(circle at 2% 12%, rgba(230, 198, 127, 0.23), transparent 30%),
    linear-gradient(180deg, var(--paper), #f1ede2);
}
.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -280px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(23, 71, 68, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(23, 71, 68, 0.03), 0 0 0 180px rgba(23, 71, 68, 0.02);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
}
.hero-copy { padding: 24px 0; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.light { color: #e6d7b7; }
.eyebrow.centered { justify-content: center; }
.hero h1,
.section-heading h2,
.place-copy h2,
.rules-section h2,
.telegram-card h2,
.legal-content h1,
.error-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero h1 { max-width: 650px; font-size: clamp(58px, 6.2vw, 92px); color: var(--ink-strong); }
.hero h1 em { color: var(--green-2); font-weight: 500; }
.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #536967;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}
.feature-pills { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.feature-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(23, 71, 68, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 700;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-social-links { display: flex; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 14px 28px rgba(23, 71, 68, 0.22); }
.button-primary:hover:not(:disabled) { background: var(--ink-strong); box-shadow: 0 17px 34px rgba(23, 71, 68, 0.28); }
.button-ghost { color: var(--green); border-color: rgba(23, 71, 68, 0.18); background: rgba(255, 255, 255, 0.58); }
.button-ghost:hover { border-color: rgba(23, 71, 68, 0.36); background: #fff; }
.button-social { padding-inline: 14px; gap: 7px; font-size: 13px; }
.button-social::after { content: "↗"; font-size: 12px; transition: transform 0.18s ease; }
.button-social:hover::after { transform: translate(2px, -2px); }
.button-light { color: var(--ink-strong); background: var(--paper); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16); }
.button-light:hover { background: #fff; }
.button-wide { width: 100%; }
.button-wide svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding-inline: 16px; }
.hero-note { margin: 17px 0 0; color: #7a8986; font-size: 12px; }
.hero-visual {
  position: relative;
  width: min(100%, 610px);
  min-width: 0;
  justify-self: end;
  isolation: isolate;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 38px;
  background: #173f3c;
  box-shadow: 0 35px 80px rgba(20, 57, 54, 0.2);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 38, 35, 0.01) 42%, rgba(8, 38, 35, 0.14) 100%),
    radial-gradient(circle at 52% 48%, transparent 56%, rgba(8, 31, 30, 0.09) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.hero-photo picture,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo img {
  object-fit: cover;
  object-position: 50% 58%;
}
.route-card {
  position: absolute;
  left: -36px;
  bottom: 48px;
  min-width: 236px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}
.route-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-size: 21px;
  font-weight: 700;
}
.route-card > span:last-child { display: grid; }
.route-card small { color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.route-card strong { margin-top: 3px; font-size: 13px; line-height: 1.35; }
.water-badge {
  position: absolute;
  top: 32px;
  right: 28px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(20, 67, 64, 0.44);
  backdrop-filter: blur(8px);
}
.route-card,
.water-badge { z-index: 2; }
.water-badge span { font-family: Georgia, serif; font-size: 13px; font-style: italic; }
.water-badge i { position: absolute; width: 92px; height: 92px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 50%; }

.booking-section { padding: 104px 0 116px; background: var(--paper); }
.section-heading {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.section-heading h2 { font-size: clamp(44px, 5vw, 66px); color: var(--ink-strong); }
.section-heading > p { max-width: 450px; margin: 0 0 4px; color: var(--muted); }
.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.56fr) minmax(330px, 0.72fr);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.calendar-panel { position: relative; min-height: 600px; padding: 34px 38px 30px; }
.calendar-toolbar {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.calendar-toolbar > div { text-align: center; }
.calendar-toolbar strong { display: block; color: var(--ink-strong); font-size: 17px; }
.calendar-toolbar small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--green);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.icon-button:hover:not(:disabled) { border-color: rgba(23, 71, 68, 0.32); background: var(--green-soft); }
.icon-button:disabled { opacity: 0.35; cursor: not-allowed; }
.icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.calendar-months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; padding-top: 28px; }
.calendar-month h3 { margin: 0 0 15px; color: var(--ink-strong); font-size: 15px; text-align: center; text-transform: capitalize; }
.weekdays,
.days-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.weekdays { margin-bottom: 6px; }
.weekdays span { padding: 6px 0; color: #82908d; font-size: 10px; font-weight: 800; text-align: center; text-transform: uppercase; }
.calendar-blank { aspect-ratio: 1 / 0.92; }
.calendar-day {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.92;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.calendar-day:hover:not(:disabled):not(.is-selected) { border-color: rgba(23, 71, 68, 0.22); background: var(--green-soft); transform: translateY(-1px); }
.calendar-day.is-today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.calendar-day.is-past,
.calendar-day.is-busy {
  color: #9ca6a3;
  background: #f1f1ec;
  cursor: not-allowed;
}
.calendar-day.is-busy::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: #a9b0ae;
  transform: rotate(-35deg);
}
.calendar-day.is-selected {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 8px 18px rgba(23, 71, 68, 0.22);
}
.calendar-day.is-selected::before { display: none; }
.calendar-day:focus-visible,
.button:focus-visible,
.icon-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(230, 198, 127, 0.78);
  outline-offset: 2px;
}
.calendar-legend {
  margin-top: 26px;
  padding-top: 21px;
  display: flex;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 11px; height: 11px; border-radius: 4px; }
.legend-free { border: 1px solid rgba(23, 71, 68, 0.22); background: #fff; }
.legend-selected { background: var(--green); }
.legend-busy { background: #e8e8e2; }
.calendar-loading {
  position: absolute;
  z-index: 3;
  inset: 110px 30px 64px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-content: start;
  padding: 20px;
  background: #fff;
}
.calendar-loading span {
  height: 42px;
  grid-column: span 2;
  border-radius: 12px;
  background: linear-gradient(90deg, #f1f0eb, #faf9f5, #f1f0eb);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
}
.calendar-loading span:nth-child(2) { grid-column: span 3; }
.calendar-loading span:nth-child(3) { grid-column: span 2; }
@keyframes shimmer { to { background-position: -200% 0; } }

.booking-form-card {
  padding: 38px 34px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(230, 198, 127, 0.17), transparent 35%),
    var(--green);
}
.selected-box {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
}
.selected-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--ink-strong);
  background: var(--gold);
}
.selected-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.selected-box > span:last-child { display: grid; min-width: 0; }
.selected-box small { color: rgba(255, 255, 255, 0.65); font-size: 10px; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; }
.selected-box strong { margin-top: 4px; color: #fff; font-size: 14px; line-height: 1.35; }
.booking-form-card form { margin-top: 27px; }
.field { display: grid; gap: 8px; margin-bottom: 17px; }
.field > span { color: rgba(255, 255, 255, 0.8); font-size: 12px; font-weight: 700; }
.field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder { color: rgba(255, 255, 255, 0.42); }
.field input:focus { border-color: var(--gold); background: rgba(255, 255, 255, 0.13); outline: none; }
.consent { margin: 3px 0 20px; display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--gold); }
.consent span { color: rgba(255, 255, 255, 0.67); font-size: 11px; line-height: 1.45; }
.consent a { color: #fff; text-underline-offset: 2px; }
.booking-form-card .button-primary { color: var(--ink-strong); background: var(--gold); box-shadow: 0 13px 26px rgba(0, 0, 0, 0.16); }
.booking-form-card .button-primary:hover:not(:disabled) { color: var(--ink-strong); background: #efd697; }
.form-message { display: none; margin: -3px 0 14px; padding: 10px 12px; border-radius: 11px; font-size: 12px; line-height: 1.4; }
.form-message.is-visible { display: block; }
.form-message.is-error { color: #fff; background: rgba(164, 73, 65, 0.52); }
.form-message.is-info { color: #fff; background: rgba(255, 255, 255, 0.11); }
.form-footnote { margin: 17px 0 0; color: rgba(255, 255, 255, 0.55); font-size: 11px; line-height: 1.5; }

.place-section { padding: 108px 0; color: #fff; background: var(--ink-strong); }
.place-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; }
.place-copy h2 { max-width: 530px; font-size: clamp(44px, 5vw, 68px); }
.place-copy > p:last-child { max-width: 520px; margin: 28px 0 0; color: rgba(255, 255, 255, 0.64); font-size: 17px; }
.place-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-self: end; }
.place-features article {
  min-height: 282px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}
.place-features article:nth-child(2) { transform: translateY(-24px); background: rgba(230, 198, 127, 0.09); }
.place-features span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; }
.place-features h3 { margin: auto 0 12px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1.15; }
.place-features p { margin: 0; color: rgba(255, 255, 255, 0.55); font-size: 13px; }

.rules-section { padding: 110px 0; background: var(--cream); }
.rules-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 100px; }
.rules-section h2 { max-width: 470px; color: var(--ink-strong); font-size: clamp(44px, 5vw, 66px); }
.rules-intro { max-width: 440px; margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.rules-list { margin: 0; padding: 0; list-style: none; }
.rules-list li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(23, 59, 56, 0.14); }
.rules-list li:first-child { padding-top: 4px; }
.rules-list li > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(23, 71, 68, 0.18); border-radius: 50%; color: var(--green-2); font-family: Georgia, serif; font-size: 18px; }
.rules-list strong { color: var(--ink-strong); font-size: 17px; }
.rules-list p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.telegram-section { padding: 78px 0; background: var(--paper); }
.telegram-card {
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 27px;
  color: #fff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 0%, rgba(230, 198, 127, 0.26), transparent 34%),
    linear-gradient(130deg, #1b5652, #103735);
  box-shadow: var(--shadow);
}
.telegram-symbol { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 20px; color: var(--ink-strong); background: var(--gold); }
.telegram-symbol svg { width: 36px; height: 36px; }
.telegram-symbol path { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.telegram-card small { color: rgba(255, 255, 255, 0.58); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.telegram-card h2 { margin-top: 5px; font-size: clamp(29px, 3vw, 40px); }
.telegram-card p { max-width: 680px; margin: 9px 0 0; color: rgba(255, 255, 255, 0.62); font-size: 13px; }

.site-footer { padding: 33px 0; color: #fff; background: #0c2b29; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: var(--ink-strong); background: var(--gold); }
.footer-brand small { color: rgba(255, 255, 255, 0.5); }
.footer-inner > p { margin: 0; color: rgba(255, 255, 255, 0.48); font-size: 12px; }
.footer-inner > div:last-child { display: flex; gap: 20px; }
.footer-inner > div:last-child a { color: rgba(255, 255, 255, 0.6); font-size: 12px; text-decoration: none; }
.footer-inner > div:last-child a:hover { color: #fff; }

.modal { position: fixed; z-index: 100; inset: 0; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7, 27, 26, 0.72); backdrop-filter: blur(7px); }
.modal-card { position: relative; z-index: 1; width: min(480px, 100%); max-height: calc(100vh - 40px); overflow: auto; border-radius: 28px; background: var(--paper); box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3); }
.success-card { padding: 42px 38px 34px; text-align: center; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--muted); background: var(--cream); cursor: pointer; font-size: 24px; line-height: 1; }
.success-check { width: 74px; height: 74px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 15px 32px rgba(23, 71, 68, 0.24); }
.success-check svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.success-card .eyebrow { margin-bottom: 12px; }
.success-card h2 { margin: 0; color: var(--ink-strong); font-family: Georgia, serif; font-size: 39px; font-weight: 500; line-height: 1.05; }
.success-card > p:not(.eyebrow):not(.success-note) { margin: 15px 0 0; color: var(--muted); }
.booking-number { margin: 24px 0; padding: 17px; display: grid; border: 1px dashed rgba(23, 71, 68, 0.24); border-radius: 16px; background: var(--cream); }
.booking-number small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.booking-number strong { margin-top: 5px; color: var(--green); font-size: 21px; letter-spacing: 0.03em; }
.success-note { margin: 0 0 24px; color: var(--muted); font-size: 12px; }

.toast {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: 24px;
  max-width: min(440px, calc(100% - 32px));
  padding: 12px 17px;
  color: #fff;
  border-radius: 13px;
  background: var(--ink-strong);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 13px;
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast.is-error { background: var(--red); }

.legal-page { background: var(--cream); }
.legal-header { position: static; }
.legal-content { max-width: 860px; padding-top: 70px; padding-bottom: 90px; }
.legal-content h1 { max-width: 780px; color: var(--ink-strong); font-size: clamp(46px, 6vw, 70px); }
.legal-date { margin: 18px 0 42px; color: var(--muted); }
.legal-content section { padding: 23px 0; border-top: 1px solid var(--line); }
.legal-content section h2 { margin: 0 0 10px; color: var(--ink-strong); font-size: 20px; }
.legal-content section p { margin: 0; color: #526663; }
.legal-notice { margin: 0 0 36px; padding: 20px; border: 1px solid rgba(188, 111, 66, 0.28); border-radius: 17px; background: #fff8eb; }
.legal-notice strong { color: #8d4e2b; }
.legal-notice p { margin: 6px 0 0; color: #765c4d; font-size: 14px; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: var(--cream); }
.error-page main { max-width: 560px; text-align: center; }
.error-page main > span { color: var(--sand); font-family: Georgia, serif; font-size: 80px; }
.error-page h1 { margin-top: 5px; color: var(--ink-strong); font-size: 58px; }
.error-page p { margin: 18px 0 28px; color: var(--muted); }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr); gap: 50px; }
  .hero h1 { font-size: clamp(55px, 6.8vw, 77px); }
  .booking-shell { grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.75fr); }
  .calendar-panel { padding-inline: 25px; }
  .calendar-months { gap: 20px; }
  .place-grid { gap: 55px; }
  .place-features { grid-template-columns: 1fr; }
  .place-features article { min-height: auto; }
  .place-features article:nth-child(2) { transform: none; }
  .place-features h3 { margin-top: 48px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .container { width: min(var(--container), calc(100% - 28px)); }
  .header-nav a:not(.nav-book) { display: none; }
  .nav-book { padding: 10px 15px; font-size: 12px !important; }
  .hero { padding: 44px 0 74px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero h1 { max-width: 720px; }
  .hero-visual { width: min(100%, 680px); justify-self: center; }
  .route-card { left: 18px; bottom: 20px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .booking-shell { grid-template-columns: 1fr; }
  .calendar-panel { min-height: 520px; }
  .calendar-months { grid-template-columns: 1fr; }
  .booking-form-card { padding: 32px; }
  .place-grid, .rules-grid { grid-template-columns: 1fr; gap: 55px; }
  .place-features { grid-template-columns: repeat(3, 1fr); }
  .place-features h3 { margin-top: 70px; }
  .telegram-card { grid-template-columns: 64px 1fr; }
  .telegram-card .button { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; }
  .nav-book { min-height: 40px; display: inline-flex; align-items: center; }
  .hero { padding-top: 34px; }
  .eyebrow { margin-bottom: 15px; font-size: 10px; }
  .hero h1 { font-size: clamp(49px, 15vw, 66px); }
  .hero-lead { margin-top: 22px; font-size: 17px; }
  .feature-pills { margin-top: 22px; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-social-links { width: 100%; }
  .hero-actions .button-social { width: calc(50% - 6px); flex: 1 1 calc(50% - 6px); }
  .hero-photo { aspect-ratio: 4 / 3; border-radius: 25px; }
  .hero-photo::after { border-radius: 25px; }
  .hero-photo img { object-position: 64% center; }
  .route-card { left: 12px; right: 12px; bottom: 12px; min-width: 0; padding: 12px; }
  .route-icon { width: 39px; height: 39px; }
  .water-badge { top: 16px; right: 16px; width: 64px; height: 64px; }
  .water-badge i { width: 73px; height: 73px; }
  .booking-section, .place-section, .rules-section { padding: 74px 0; }
  .section-heading { margin-bottom: 27px; }
  .section-heading h2, .place-copy h2, .rules-section h2 { font-size: 45px; }
  .section-heading > p { font-size: 14px; }
  .booking-shell { border-radius: 24px; }
  .calendar-panel { min-height: 500px; padding: 22px 14px 20px; }
  .calendar-toolbar { grid-template-columns: 42px 1fr 42px; gap: 7px; }
  .icon-button { width: 42px; height: 42px; }
  .calendar-toolbar strong { font-size: 14px; }
  .calendar-toolbar small { font-size: 10px; }
  .calendar-months { padding-top: 20px; }
  .calendar-day { min-height: 39px; font-size: 12px; border-radius: 10px; }
  .weekdays, .days-grid { gap: 3px; }
  .calendar-legend { gap: 14px; font-size: 10px; }
  .calendar-loading { inset: 96px 8px 50px; }
  .booking-form-card { padding: 26px 20px 24px; }
  .place-features { grid-template-columns: 1fr; }
  .place-features article { min-height: 230px; }
  .place-features h3 { margin-top: auto; }
  .rules-grid { gap: 38px; }
  .rules-list li { grid-template-columns: 43px 1fr; gap: 14px; }
  .rules-list li > span { width: 40px; height: 40px; }
  .telegram-section { padding: 54px 0; }
  .telegram-card { padding: 28px 22px; grid-template-columns: 52px 1fr; gap: 17px; border-radius: 24px; }
  .telegram-symbol { width: 52px; height: 52px; border-radius: 16px; }
  .telegram-symbol svg { width: 28px; height: 28px; }
  .telegram-card h2 { font-size: 29px; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-inner > div:last-child { flex-wrap: wrap; }
  .success-card { padding: 38px 23px 26px; }
  .success-card h2 { font-size: 34px; }
  .legal-header .brand small { display: none; }
  .legal-content { padding-top: 50px; }
  .legal-content h1 { font-size: 46px; }
}

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