﻿:root {
  --bg: #071515;
  --bg-2: #0d2423;
  --ink: #f4fbf5;
  --muted: rgba(244, 251, 245, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --aqua: #24d6ca;
  --sun: #ffcb68;
  --coral: #ff5f55;
  --deep: #051010;
  --glass: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 8%, rgba(36, 214, 202, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(255, 203, 104, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--bg), #081b1b 48%, #f3f0e7 48%, #f3f0e7 100%);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.policy-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 16, 16, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  transition: background 0.3s ease, top 0.3s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(5, 16, 16, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06201e;
  background: linear-gradient(135deg, var(--aqua), var(--sun));
}

.nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: rgba(244, 251, 245, 0.82);
  font-size: 14px;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--sun);
}

.header-phone {
  padding: 12px 16px;
  border-radius: 999px;
  color: #06201e;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #071515;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: saturate(1.12) contrast(1.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 16, 16, 0.95) 0%, rgba(5, 16, 16, 0.68) 42%, rgba(5, 16, 16, 0.32) 100%),
    radial-gradient(circle at 76% 28%, rgba(255, 203, 104, 0.36), transparent 18rem),
    linear-gradient(180deg, transparent 58%, #071515 100%);
}

.water-grid {
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  z-index: -1;
  opacity: 0.46;
  background:
    repeating-radial-gradient(ellipse at center, rgba(36, 214, 202, 0.22) 0 1px, transparent 2px 28px),
    linear-gradient(180deg, transparent, rgba(36, 214, 202, 0.12));
  transform: perspective(620px) rotateX(64deg);
  transform-origin: bottom;
  animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
  from { translate: -1% 0; }
  to { translate: 1% 10px; }
}

.hero__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 142px 0 76px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.02;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 920;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.hero__lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.messenger-btn {
  gap: 10px;
}

.messenger-btn__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}

.messenger-btn--wa .messenger-btn__icon {
  background: #20bf62;
}

.messenger-btn--tg .messenger-btn__icon {
  background: #28a8e9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  color: #06201e;
  background: linear-gradient(135deg, var(--sun), var(--aqua));
  box-shadow: 0 18px 48px rgba(36, 214, 202, 0.24);
}

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.btn--full {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
}

.hero__stats span {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 13px;
}

.hero__stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.booking-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.booking-card__head h2 {
  font-size: 30px;
  line-height: 1.05;
}

.booking-card label {
  display: block;
  margin-bottom: 14px;
}

.booking-card span {
  display: block;
  margin: 0 0 7px 4px;
  color: rgba(244, 251, 245, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.booking-card input,
.booking-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(5, 16, 16, 0.54);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.booking-card input:focus,
.booking-card textarea:focus {
  border-color: rgba(36, 214, 202, 0.72);
  background: rgba(5, 16, 16, 0.72);
}

.booking-card textarea {
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(244, 251, 245, 0.62);
  font-size: 13px;
  text-align: center;
}

.section {
  padding: 112px 0;
}

.section__head {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 42px;
}

.section__head h2 {
  max-width: 850px;
}

.section__head p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-section {
  background: var(--bg);
}

.pricing-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    #0b1f1f;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.price-card--accent {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 203, 104, 0.34), transparent 14rem),
    linear-gradient(150deg, rgba(36, 214, 202, 0.18), rgba(255, 255, 255, 0.06)),
    #0b1f1f;
}

.price-card__label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #06201e;
  background: var(--sun);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card h3 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.95;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}


.pricing-note {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-note div,
.delivery-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.pricing-note div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.pricing-note strong {
  color: var(--sun);
  font-size: 18px;
}

.pricing-note span {
  color: var(--muted);
  line-height: 1.55;
}

.delivery-card {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(36, 214, 202, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.07);
}

.delivery-card h3 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
}

.delivery-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.delivery-card a {
  color: var(--sun);
  font-weight: 900;
}
.boards-section {
  background: var(--bg);
}

.slider {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.slider__viewport {
  overflow: hidden;
  border-radius: 28px;
}

.slider__track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.board-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #0b1f1f;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.board-card img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.board-card:hover img {
  transform: scale(1.045);
}

.board-card__body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(5, 16, 16, 0.62);
  backdrop-filter: blur(18px);
}

.board-card__body h3 {
  margin: 0;
  font-size: 20px;
}

.slider__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: min(760px, 100%);
}

.slider__dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider__dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--aqua);
}

.safety-section {
  color: #09201f;
  background:
    radial-gradient(circle at 12% 20%, rgba(36, 214, 202, 0.34), transparent 20rem),
    linear-gradient(135deg, #f3f0e7, #dff7f1);
}

.safety-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: 42px;
  border: 1px solid rgba(9, 32, 31, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48)),
    repeating-linear-gradient(135deg, rgba(9, 32, 31, 0.04) 0 1px, transparent 1px 12px);
  box-shadow: 0 30px 90px rgba(9, 32, 31, 0.12);
}

.safety-panel .eyebrow {
  color: #00897d;
}

.safety-title {
  max-width: 520px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.safety-lead {
  color: rgba(9, 32, 31, 0.74);
  font-size: 20px;
  line-height: 1.55;
}

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

.safety-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(9, 32, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: #09201f;
  font-weight: 850;
}

.safety-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06201e;
  background: linear-gradient(135deg, var(--sun), var(--aqua));
  font-size: 12px;
}

.contacts-section {
  color: #09201f;
  background: #f3f0e7;
}

.contacts-section .eyebrow {
  color: #00897d;
}

.contacts-section .section__head p:not(.eyebrow) {
  color: rgba(9, 32, 31, 0.66);
}

.contacts-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) 1.28fr;
  gap: 22px;
}

.contact-card,
.map-card {
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(9, 32, 31, 0.1);
  background: #fff;
  box-shadow: 0 24px 70px rgba(9, 32, 31, 0.1);
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.contact-card h3 {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.contact-address {
  margin-bottom: 0;
  color: rgba(9, 32, 31, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

.contact-phone {
  display: block;
  margin: 26px 0;
  color: #071515;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.messengers a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #071515;
  font-weight: 900;
}

.contact-note {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.contact-note span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  color: rgba(9, 32, 31, 0.74);
  background: #eef8f4;
  font-weight: 800;
}

.policy-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(9, 32, 31, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  color: #09201f;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.icon-wa,
.icon-tg {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.icon-wa {
  background: #20bf62;
}

.icon-tg {
  background: #28a8e9;
}

.map-card {
  position: relative;
  min-height: 440px;
  background: #dff7f1;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #20bf62;
  box-shadow: 0 18px 44px rgba(32, 191, 98, 0.36);
  font-weight: 950;
}

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

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 10, 0.72);
  backdrop-filter: blur(16px);
}

.modal__dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(36, 214, 202, 0.18), transparent 14rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
    #071515;
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

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

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.modal__close span {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.modal__close span:first-child {
  transform: rotate(45deg);
}

.modal__close span:last-child {
  transform: rotate(-45deg);
}

.modal__dialog h2 {
  margin-bottom: 12px;
  padding-right: 42px;
  font-size: 38px;
}

.modal__lead {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.modal-form label {
  display: block;
  margin-bottom: 14px;
}

.modal-form span {
  display: block;
  margin: 0 0 7px 4px;
  color: rgba(244, 251, 245, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.modal-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(5, 16, 16, 0.62);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-form input:focus {
  border-color: rgba(36, 214, 202, 0.72);
  background: rgba(5, 16, 16, 0.78);
}

.modal-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 6px 0 18px !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--aqua);
}

.consent span {
  margin: 0 !important;
  color: rgba(244, 251, 245, 0.74);
  font-size: 13px;
  line-height: 1.35;
}

.consent a {
  color: var(--sun);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.policy-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #071515;
  box-shadow: var(--shadow);
}

.policy-modal__dialog h2 {
  padding-right: 44px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.policy-text {
  display: grid;
  gap: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-text p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  width: min(420px, calc(100% - 44px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(5, 16, 16, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: rgba(244, 251, 245, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 0 18px;
  flex: 0 0 auto;
}

.site-footer {
  color: var(--ink);
  background: #071515;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 36px;
  padding: 54px 0 34px;
}

.site-footer__brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span {
  display: block;
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 251, 245, 0.86);
  font-weight: 800;
}

.site-footer a:not(.brand):hover {
  color: var(--sun);
}

.site-footer__bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
}

.policy-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 12%, rgba(36, 214, 202, 0.18), transparent 22rem),
    linear-gradient(180deg, #071515, #0d2423);
}

.policy-header {
  position: sticky;
  top: 18px;
  transform: none;
  left: auto;
  margin: 18px auto 0;
}

.policy-document {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 80px;
}

.policy-document h1 {
  max-width: 840px;
  font-size: clamp(38px, 6vw, 68px);
}

.policy-date {
  margin-bottom: 38px;
  color: var(--muted);
}

.policy-document section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.policy-document h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.policy-document p {
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav.is-open {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 16, 16, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 14px 8px;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 122px;
  }

  .booking-card {
    max-width: 560px;
  }

  .board-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .safety-panel,
  .contacts-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    height: 60px;
    top: 10px;
    padding: 0 10px 0 14px;
  }

  .brand__text {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero__inner {
    width: min(100% - 24px, 1180px);
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(34px, 9.6vw, 44px);
  }

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

  .booking-card {
    padding: 20px;
    border-radius: 22px;
  }

  .section {
    padding: 76px 0;
  }

  .section__head,
  .slider,
  .safety-panel,
  .contacts-grid,
  .pricing-grid {
    width: min(100% - 24px, 1180px);
  }

  .board-card {
    flex-basis: 100%;
    border-radius: 22px;
  }

  .board-card img {
    height: 360px;
  }

  .slider__controls {
    gap: 12px;
  }

  .slider__dots {
    order: 3;
    width: 100%;
    gap: 6px;
  }

  .slider__dots button {
    width: 7px;
    height: 7px;
  }

  .slider__dots button.is-active {
    width: 24px;
  }

  .price-card {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
  }

  .safety-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .safety-list div {
    grid-template-columns: 44px 1fr;
    font-size: 15px;
  }

  .contact-card,
  .map-card {
    min-height: 310px;
    border-radius: 24px;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }

  .contact-card {
    padding: 24px;
  }

  .messengers a {
    width: 100%;
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .policy-document {
    padding-top: 70px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}


@media (max-width: 760px) {
  .pricing-note {
    grid-template-columns: 1fr;
  }

  .pricing-note,
  .delivery-card {
    width: min(100% - 24px, 1180px);
  }

  .delivery-card {
    padding: 22px;
    border-radius: 22px;
  }

  .delivery-card p:not(.eyebrow) {
    font-size: 16px;
  }
}
