/* ============================================================
   ТВОЯ ВОЛНА — landing page
   Brand DNA: deep teal-navy / lime / orange / electric blue
   ============================================================ */

:root {
  /* Palette */
  --navy-1: #032734;
  --navy-2: #01222c;
  --navy-deep: #011820;
  --lime: #cbee4c;
  --lime-soft: #d9f377;
  --orange: #e76c13;
  --orange-2: #ff7700;
  --orange-3: #ff5900;
  --blue: #1323e7;
  --blue-2: #0f1bb8;
  --amber: #ffb303;
  --white: #ffffff;
  --ink: #0a1418;
  --muted: rgba(255, 255, 255, 0.62);

  /* Page background gradient */
  --page-bg: linear-gradient(160deg, #032734 0%, #01222c 60%, #011820 100%);

  /* Type */
  --font-display: "Playfair Display SC", Georgia, serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radii */
  --r-xl: 44px;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --r-pill: 999px;

  /* Spacing rhythm */
  --gutter: clamp(16px, 4vw, 40px);
  --section-gap: clamp(30px, 4.5vw, 66px);

  --shadow-card: 0 30px 60px -28px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 18px 40px -24px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Captain photo column width / aspect ratio */
  --captain-col: 1.1fr;
  --captain-ar: 3.2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--page-bg);
  background-attachment: fixed;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  width: min(1240px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--gutter);
  background: linear-gradient(90deg, rgba(3, 39, 52, 0.4), rgba(1, 34, 44, 0.4));
  backdrop-filter: blur(2px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.scrolled {
  background: linear-gradient(90deg, rgba(3, 39, 52, 0.95), rgba(1, 34, 44, 0.95));
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.7);
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
}
.logo-img {
  height: clamp(30px, 3.6vw, 42px);
  width: auto;
  display: block;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.phone-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(203, 238, 76, 0.6);
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  flex: none;
}
.icon-btn svg {
  width: 26px;
  height: 26px;
}
.icon-btn--max {
  background: transparent;
  overflow: hidden;
}
.icon-btn--max img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
}
.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  padding: 18px 32px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-2), var(--orange-3));
  box-shadow: 0 16px 32px -14px rgba(255, 89, 0, 0.7);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    filter 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -14px rgba(255, 89, 0, 0.85);
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(-1px);
}
.btn--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 32px -14px rgba(203, 238, 76, 0.6);
}
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: none;
}
.btn--block {
  width: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px var(--gutter) clamp(48px, 7vw, 90px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(1, 24, 32, 0.55) 0%,
      rgba(1, 24, 32, 0.25) 40%,
      rgba(1, 24, 32, 0.85) 100%
    ),
    linear-gradient(90deg, rgba(1, 24, 32, 0.6), rgba(1, 24, 32, 0.1));
}

.hero__inner {
  width: min(1240px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(203, 238, 76, 0.16);
  border: 1px solid rgba(203, 238, 76, 0.5);
  color: var(--lime);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  font-size: clamp(2.8rem, 8.5vw, 8.2rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  max-width: 14ch;
}
.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(20px, 4vw, 60px);
  margin-top: clamp(26px, 4vw, 44px);
}
.hero__price {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}
.hero__price span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero__tag {
  margin-left: auto;
  max-width: 22ch;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.3;
  border-left: 3px solid var(--lime);
  padding-left: 18px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 56px);
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__stats .stat b {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}
.hero__stats .stat span {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero__scroll:hover {
  color: var(--white);
  transform: translateY(4px);
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section {
  position: relative;
}
.section {
  padding-block: var(--section-gap);
}
.panel {
  border-radius: var(--r-xl);
  padding: clamp(34px, 6vw, 96px) clamp(24px, 5vw, 80px);
  box-shadow: var(--shadow-card);
}
.panel--orange {
  background: radial-gradient(120% 140% at 50% 0%, #f0791a 0%, var(--orange) 55%, #cf5c0c 100%);
}
.panel--blue {
  background: radial-gradient(120% 140% at 50% 0%, #2433ff 0%, var(--blue) 55%, var(--blue-2) 100%);
}

.section-head {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head h2 {
  font-weight: 900;
  font-size: clamp(2.1rem, 5.5vw, 5rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-head.left {
  text-align: left;
  margin-inline: 0;
}
.h2-lime {
  color: var(--lime);
}

/* ============================================================
   SERVICES (orange panel)
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.service-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -28px rgba(0, 0, 0, 0.55);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.service-card__body {
  padding: 26px 26px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card__body h3 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.service-card__body p {
  margin: 0;
  font-size: 1.02rem;
  color: #354049;
  line-height: 1.45;
}
.service-card__tag {
  margin-top: auto;
  align-self: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.services-note {
  margin: clamp(34px, 5vw, 56px) auto 0;
  max-width: 620px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.4;
}
.services-note span {
  background: rgba(255, 255, 255, 0.16);
  border-radius: var(--r-pill);
  padding: 14px 26px;
  display: inline-block;
}

/* ============================================================
   ABOUT / experience
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr var(--captain-col);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.about__title {
  font-weight: 900;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 28px;
}
.about__text p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 20px;
  max-width: 46ch;
}
.about__sign {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-weight: 800;
  color: var(--lime);
}
.about__sign svg {
  width: 30px;
  height: 30px;
}
.about__media {
  position: relative;
}
.about__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / var(--captain-ar);
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  display: block;
}
.about__media .float-card {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: var(--lime);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 18px 24px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  line-height: 1;
}
.about__media .float-card b {
  display: block;
  font-size: 2.2rem;
}
.about__media .float-card span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   BIGBOOSTER (blue panel)
   ============================================================ */
.boat__rating {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.stars {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 12px;
}
.stars svg {
  width: clamp(34px, 4vw, 48px);
  height: clamp(34px, 4vw, 48px);
  color: var(--amber);
  filter: drop-shadow(0 6px 14px rgba(255, 179, 3, 0.4));
}
.boat__rating p {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.boat__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.boat__media {
  order: -1;
}
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.amenities li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  white-space: nowrap;
}
.amenities li .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
}
.amenities li .tick svg {
  width: 13px;
  height: 13px;
}
.boat__desc {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.9);
  max-width: none;
  margin: 0;
}
.boat__media {
  position: relative;
  min-width: 0;
}
.carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, #04222e 0%, #03161f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.carousel__track.dragging {
  transition: none;
}
.carousel__track img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  display: block;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: rgba(3, 28, 38, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.carousel__nav:hover {
  background: var(--lime);
  color: var(--ink);
}
.carousel__nav:active {
  transform: translateY(-50%) scale(0.92);
}
.carousel__nav--prev {
  left: 16px;
}
.carousel__nav--next {
  right: 16px;
}
.carousel__nav svg {
  width: 22px;
  height: 22px;
}
.carousel__count {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(3, 28, 38, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  font-variant-numeric: tabular-nums;
}
.carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.carousel__dots button.active {
  background: var(--lime);
  width: 26px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.reviews-head h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4rem);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.reviews-head .rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 179, 3, 0.14);
  border: 1px solid rgba(255, 179, 3, 0.4);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-weight: 800;
}
.reviews-head .rating-chip b {
  color: var(--amber);
  font-size: 1.3rem;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.review {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.review:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 238, 76, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.review .stars-sm {
  display: flex;
  gap: 4px;
}
.review .stars-sm svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
}
.review p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review .who .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--navy-2);
  background: var(--lime);
  flex: none;
}
.review .who b {
  display: block;
  font-size: 1rem;
}
.review .who span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   CHAT (orange panel) — "у нас можно всё"
   ============================================================ */
.chat {
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bubble {
  position: relative;
  padding: 22px 28px;
  border-radius: 26px;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.32;
  max-width: 80%;
  box-shadow: var(--shadow-soft);
}
.bubble--client {
  align-self: flex-start;
  background: var(--lime);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}
.bubble--captain {
  align-self: flex-end;
  background: var(--white);
  color: var(--ink);
  border-bottom-right-radius: 6px;
}
.bubble .who-mini {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.55;
  margin-bottom: 6px;
}
.chat__cta {
  text-align: center;
  margin-top: clamp(34px, 5vw, 56px);
}
.chat__cta p {
  font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  margin: 0 0 22px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(20px, 3vw, 34px);
}
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 52px);
}
.contact-card h2 {
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.contact-card > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin: 0 0 28px;
  max-width: 44ch;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.1);
}
.field.invalid input {
  border-color: #ff6b5e;
  background: rgba(255, 107, 94, 0.08);
}
.field .err {
  display: none;
  margin-top: 7px;
  font-size: 0.82rem;
  color: #ff9a90;
  font-weight: 600;
}
.field.invalid .err {
  display: block;
}
.consent {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}
.form-ok {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-ok.show {
  display: block;
  animation: pop 0.5s var(--ease);
}
@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
}
.form-ok .check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy-2);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.form-ok .check svg {
  width: 40px;
  height: 40px;
}
.form-ok h3 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.form-ok p {
  color: var(--muted);
  margin: 0;
}

/* Messenger tiles */
.messengers {
  display: grid;
  grid-template-rows: 1fr;
  gap: clamp(20px, 3vw, 34px);
}
.msg-tile {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  color: var(--white);
  min-height: 180px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.msg-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -22px rgba(0, 0, 0, 0.6);
}
.msg-tile::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.msg-tile--max {
  background: linear-gradient(135deg, #6a5bff 0%, #2c1eb8 100%);
}
.msg-tile .m-ico {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.msg-tile--max .m-ico {
  background: transparent;
}
.msg-tile--max .m-ico img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: block;
}
.msg-tile .m-ico svg {
  width: 34px;
  height: 34px;
}
.msg-tile .m-body {
  position: relative;
  z-index: 1;
}
.msg-tile .m-body b {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 900;
  display: block;
  line-height: 1;
}
.msg-tile .m-body span {
  font-size: 0.98rem;
  opacity: 0.9;
}
.msg-tile .m-go {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.msg-tile .m-go svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
}
.msg-tile:hover .m-go svg {
  transform: translateX(5px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: clamp(48px, 7vw, 90px) var(--gutter) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.footer-top .logo {
  font-size: 1.8rem;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.05rem;
}
.footer-contacts a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer-contacts a:hover {
  color: var(--lime);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__media img {
    animation: none;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about__media {
    order: -1;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .messengers {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }
  .hero__tag {
    margin-left: 0;
    flex-basis: 100%;
  }
}

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

@media (max-width: 620px) {
  .header-actions .phone-pill span.full {
    display: none;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .amenities {
    grid-template-columns: 1fr;
  }
  .messengers {
    grid-template-columns: 1fr;
  }
  .bubble {
    max-width: 92%;
  }
  .hero__stats {
    gap: 22px;
  }
  .panel {
    border-radius: var(--r-lg);
  }
}

@media (max-width: 420px) {
  .phone-pill {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

/* блок доверия: лицензия + страховка */
.assure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(22px, 2.8vw, 32px) clamp(22px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
}
.assure__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}
.assure__item .ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  flex: none;
}
.assure__item .ico svg { width: 23px; height: 23px; }
.assure__item b {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 3px;
}
.assure__item span {
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 720px) {
  .assure { grid-template-columns: 1fr; }
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: rgba(203, 238, 76, 0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--lime);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .faq-a {
  margin: 0;
  padding: 0 clamp(18px, 2.4vw, 26px) 20px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

/* откуда отправляемся */
.loc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(22px, 3.4vw, 48px);
  align-items: center;
}
.loc-addr {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 6px 0 22px;
}
.loc-pin {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(203, 238, 76, 0.14);
  border: 1px solid rgba(203, 238, 76, 0.4);
  color: var(--lime);
  display: grid;
  place-items: center;
  flex: none;
}
.loc-pin svg { width: 22px; height: 22px; }
.loc-addr b {
  display: block;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3px;
}
.loc-addr span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.loc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--lime);
  font-size: 1.02rem;
}
.loc-link svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.loc-link:hover svg { transform: translateX(5px); }
.loc-pickup {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 0 22px;
  padding: 14px 18px;
  background: rgba(203, 238, 76, 0.08);
  border: 1px solid rgba(203, 238, 76, 0.28);
  border-radius: var(--r-md);
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
.loc-pickup svg {
  width: 20px;
  height: 20px;
  color: var(--lime);
  margin-top: 2px;
  flex: none;
}
.loc-pickup b { color: var(--white); }
.map-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 11px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: var(--shadow-card);
  pointer-events: none;
}
.map-badge svg { width: 17px; height: 17px; color: var(--lime); flex: none; }
.map-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  height: clamp(300px, 34vw, 440px);
  background: #04293a;
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 920px) {
  .loc-grid { grid-template-columns: 1fr; }
  .map-card { height: clamp(260px, 60vw, 380px); }
}
