/* ============================================================
   Москва на воде — тёмно-синий + приглушённое золото
   Палитра:
     #0B1A2F — основной фон
     #132C42 — карточки / блоки
     #C8A96E — акцент (золото)
     #E8E4D9 — сливочный текст
     #1A2A3A — тёмный текст на светлых элементах
   ============================================================ */
:root {
  --bg: #0b1a2f;
  --bg-soft: #132c42;
  --bg-blue: #10263a;
  --ink: #e8e4d9;
  --ink-soft: rgba(232, 228, 217, 0.72);
  --ink-faint: rgba(232, 228, 217, 0.48);
  --ink-dark: #1a2a3a;
  --gold: #c8a96e;
  --gold-soft: #d4bc8a;
  --gold-deep: #a88b4f;
  --blue: var(--gold);
  --blue-dark: var(--gold-deep);
  --blue-bright: var(--gold-soft);
  --sky: var(--gold-soft);
  --line: rgba(200, 169, 110, 0.28);
  --line-soft: rgba(200, 169, 110, 0.14);
  --card: #132c42;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow: 0 18px 45px -18px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(200, 169, 110, 0.12);
  --shadow-lg: 0 36px 70px -28px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(200, 169, 110, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --grad: linear-gradient(135deg, #d4bc8a 0%, #c8a96e 45%, #a88b4f 100%);
  --grad-soft: linear-gradient(145deg, rgba(200, 169, 110, 0.14) 0%, rgba(19, 44, 66, 0.9) 100%);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #0b1a2f;
  color: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 90% 70% at 12% 18%, rgba(19, 44, 66, 0.95) 0%, transparent 58%),
    radial-gradient(ellipse 80% 60% at 88% 78%, rgba(16, 38, 58, 0.9) 0%, transparent 55%),
    linear-gradient(155deg, #0b1a2f 0%, #132c42 46%, #0b1a2f 100%);
  background-color: #0b1a2f;
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 20% 30%, #132c42 0%, transparent 62%),
    radial-gradient(ellipse 65% 50% at 82% 70%, #0b1a2f 0%, transparent 60%),
    linear-gradient(120deg, #0b1a2f 0%, #132c42 50%, #0b1a2f 100%);
  background-size: 140% 140%, 140% 140%, 200% 200%;
  background-position: 0% 40%, 100% 60%, 0% 50%;
  animation: bg-blend 22s ease-in-out infinite alternate;
}

@keyframes bg-blend {
  0% {
    background-position: 0% 35%, 100% 65%, 0% 40%;
    opacity: 1;
  }
  50% {
    background-position: 40% 55%, 55% 35%, 50% 50%;
    opacity: 0.95;
  }
  100% {
    background-position: 85% 70%, 10% 25%, 100% 60%;
    opacity: 1;
  }
}

body.is-locked { overflow: hidden; }

h1, h2, h3 {
  font-family: "Prata", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--gold);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: var(--ink); }

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.muted { color: var(--ink-soft); }
em { font-style: italic; color: var(--gold); }

.kicker {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.kicker-light { color: var(--gold-soft); }

/* ---------- CTA buttons ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  background: var(--grad);
  color: var(--ink-dark);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(200, 169, 110, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(200, 169, 110, 0.55); filter: brightness(1.06); }
.cta:active { transform: translateY(0); }

.cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.cta-ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: none; filter: none; }
.cta-wide { width: 100%; }

.hero .cta-ghost { color: var(--ink); border-color: rgba(232, 228, 217, 0.55); }
.hero .cta-ghost:hover { background: rgba(200, 169, 110, 0.14); color: var(--gold-soft); border-color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header.is-scrolled {
  background: rgba(11, 26, 47, 0.94);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--line-soft);
}
.header-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: "Prata", serif;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand-name em { font-style: italic; color: var(--gold); }
.brand-tag { font-size: 0.68rem; letter-spacing: 0.05em; color: var(--ink-faint); text-transform: uppercase; }
.header:not(.is-scrolled) .brand-name { color: var(--ink); }
.header:not(.is-scrolled) .brand-name em { color: var(--gold); }
.header:not(.is-scrolled) .brand-tag { color: rgba(232, 228, 217, 0.7); }

.nav { display: flex; gap: 1.25rem; margin-left: auto; }
.nav a { color: var(--ink); opacity: 0.85; transition: opacity 0.2s, color 0.2s; font-weight: 600; font-size: 0.92rem; }
.nav a:hover { opacity: 1; color: var(--gold); }
.header:not(.is-scrolled) .nav a { color: var(--ink); opacity: 0.9; }
.header:not(.is-scrolled) .nav a:hover { color: var(--gold); opacity: 1; }

.header-book {
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: var(--grad);
  color: var(--ink-dark);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 26px -12px rgba(200, 169, 110, 0.55);
  transition: transform 0.2s var(--ease), filter 0.2s;
}
.header-book:hover { transform: translateY(-1px); filter: brightness(1.05); }
.burger { display: none; }

/* ---------- Hero (без фото) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--ink);
  overflow: hidden;
  background: transparent;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 75% 15%, rgba(200, 169, 110, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, transparent 72%, rgba(11, 26, 47, 0.8) 100%);
}
.hero-glow::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.4), transparent);
}
.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4.5rem;
  width: 100%;
}
.hero-brand {
  font-family: "Prata", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.hero-brand em {
  font-style: italic;
  color: var(--gold);
}
.hero h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin: 0;
}
.hero-copy {
  max-width: 520px;
  margin: 1.1rem 0 1.8rem;
  color: rgba(232, 228, 217, 0.82);
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(200, 169, 110, 0.22);
  max-width: 640px;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-value { font-family: "Prata", serif; font-size: 1.45rem; color: var(--gold); }
.hero-stat-label { font-size: 0.85rem; color: rgba(232, 228, 217, 0.65); }

/* ---------- Marquee ---------- */
.marquee {
  background: transparent;
  color: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.6rem;
  white-space: nowrap;
}
.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
}
.marquee-group span::after {
  content: "•";
  opacity: 0.5;
  color: var(--gold-soft);
}

/* ---------- Block base ---------- */
.block { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.block-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.block-head { max-width: 720px; margin-bottom: 2.8rem; }
.block-lead { margin-top: 1rem; font-size: 1.08rem; }

.block-perks,
.block-menu,
.block-featured,
.block-routes,
.block-steps,
.block-reviews,
.block-faq,
.block-book,
.block-formats {
  background: transparent;
}

/* ---------- Perks ---------- */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.perk-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(200, 169, 110, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(200, 169, 110, 0.35);
  border-color: rgba(200, 169, 110, 0.45);
}
.perk-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.perk-card h3 { margin-bottom: 0.5rem; color: var(--ink); }
.perk-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Featured / Fleet ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
}
.featured-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(200, 169, 110, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.55);
}
.featured-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.featured-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 26, 47, 0.78);
  color: var(--gold);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}
.featured-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.featured-tag { font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.01em; }
.featured-desc { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.featured-price { font-weight: 700; color: var(--gold); }
.featured-book, .menu-book {
  font-weight: 700;
  color: var(--ink-dark);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--grad);
  transition: filter 0.2s, transform 0.2s;
}
.featured-book:hover, .menu-book:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ---------- Routes ---------- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.route-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.6rem;
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200, 169, 110, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 169, 110, 0.5);
}
.route-num {
  font-family: "Prata", serif;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.65;
}
.route-card h3 { margin: 0.4rem 0 0.5rem; color: var(--ink); }
.route-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Formats ---------- */
.block-formats {
  background: transparent;
  color: var(--ink);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.formats-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.formats-copy .kicker { color: var(--gold); }
.formats-copy h2 { color: var(--gold); }
.formats-copy p { color: var(--ink-soft); margin-top: 1rem; }
.formats-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.format-chip {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.format-chip:hover {
  transform: translateY(-3px);
  background: rgba(200, 169, 110, 0.22);
  border-color: var(--gold);
  color: var(--gold-soft);
}

/* ---------- Menu list ---------- */
.menu-list { display: flex; flex-direction: column; gap: 0.9rem; }
.menu-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(200, 169, 110, 0.06);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.menu-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 169, 110, 0.55);
}
.menu-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.menu-num { font-family: "Prata", serif; font-size: 1.4rem; color: var(--gold); opacity: 0.55; min-width: 2ch; }
.menu-info { flex: 1; }
.menu-tag { font-size: 0.8rem; font-weight: 600; color: var(--gold); }
.menu-info h3 { margin: 0.2rem 0; color: var(--ink); }
.menu-desc { color: var(--ink-soft); font-size: 0.94rem; }
.menu-action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; text-align: right; }
.menu-price { font-weight: 700; color: var(--gold); }
.empty-msg { text-align: center; padding: 2rem; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.step-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: var(--bg);
}
.step-num {
  font-family: "Prata", serif;
  font-size: 2.4rem;
  color: var(--gold);
}
.step-card h3 { margin: 0.4rem 0 0.5rem; color: var(--ink); }
.step-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.review-card {
  position: relative;
  padding: 2.2rem 1.8rem 1.8rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(200, 169, 110, 0.06);
}
.review-quote {
  font-family: "Prata", serif;
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
}
.review-text { margin: 0.8rem 0 1.4rem; color: var(--ink); }
.review-meta { display: flex; flex-direction: column; gap: 0.15rem; border-top: 1px solid var(--line-soft); padding-top: 1rem; }
.review-name { font-weight: 700; color: var(--ink); }
.review-activity { font-size: 0.85rem; color: var(--gold); }
.reviews-empty-wrap { display: flex; justify-content: center; }
.reviews-empty {
  text-align: center;
  max-width: 460px;
  padding: 3rem 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.reviews-empty-title { font-weight: 700; font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--ink); }
.reviews-empty-text { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* ---------- CTA band ---------- */
.block-cta { padding: clamp(3rem, 6vw, 5rem) 0; }
.cta-band-inner {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(200, 169, 110, 0.12);
}
.cta-band-copy { max-width: 620px; }
.cta-band-copy .kicker { color: var(--gold); }
.cta-band-copy h2 { color: var(--gold); margin-bottom: 0.6rem; }
.cta-band-copy p { color: var(--ink-soft); }
.cta-band-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.cta-band-actions .cta { background: var(--grad); color: var(--ink-dark); box-shadow: 0 14px 30px -12px rgba(200, 169, 110, 0.45); }
.cta-band-actions .cta-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.cta-band-actions .cta-ghost:hover { background: rgba(200, 169, 110, 0.12); border-color: var(--gold); color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.4rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 1.3rem; }

/* ---------- Booking ---------- */
.block-book { background: transparent; }
.book-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.book-info h2 { margin-bottom: 0.7rem; }
.book-contact { margin: 1.8rem 0; }
.book-phone { font-family: "Prata", serif; font-size: 1.6rem; color: var(--gold); }
.book-messengers { display: flex; gap: 1rem; margin-top: 0.7rem; }
.book-messengers a { font-weight: 700; color: var(--gold); }
.book-messengers a:hover { text-decoration: underline; color: var(--gold-soft); }
.book-usp { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: 0.7rem; }
.book-usp li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.book-usp li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad);
  color: var(--ink-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.book-form {
  background: linear-gradient(165deg, rgba(19, 44, 66, 0.95) 0%, rgba(11, 26, 47, 0.98) 100%);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 28px;
  padding: 2.2rem 2rem 2rem;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.book-field { display: flex; flex-direction: column; gap: 0.55rem; }
.book-field[hidden],
.book-captain-note[hidden],
#book-variant-field[hidden] {
  display: none !important;
}
.book-label {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.book-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book-form input:not([type="checkbox"]),
.book-form select {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 18px;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--ink);
  background: rgba(8, 20, 33, 0.55);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.book-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8A96E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
}
.book-form input:not([type="checkbox"]):focus,
.book-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(8, 20, 33, 0.75);
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.14);
}
.book-form select option { background: #0b1a2f; color: var(--ink); }

.book-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.book-pill {
  min-height: 54px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 110, 0.28);
  background: rgba(8, 20, 33, 0.45);
  color: var(--ink-soft);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.book-pill:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.book-pill.is-active {
  background: var(--grad);
  border-color: transparent;
  color: var(--ink-dark);
  box-shadow: 0 12px 24px -14px rgba(200, 169, 110, 0.7);
}
.book-captain-note {
  margin: -0.25rem 0 0;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.28);
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.phone-input {
  display: flex;
  align-items: center;
  min-height: 56px;
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(8, 20, 33, 0.55);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-input:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.14);
  background: rgba(8, 20, 33, 0.75);
}
.phone-prefix { padding: 0 0.35rem 0 1.15rem; font-weight: 700; color: var(--gold-soft); font-size: 1.05rem; }
.phone-input input {
  border: none;
  box-shadow: none;
  min-height: 54px;
  padding-left: 0.35rem;
  background: transparent;
  border-radius: 0;
}
.phone-input input:focus { box-shadow: none; background: transparent; }

.book-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.9rem;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.35rem 0.1rem;
  cursor: pointer;
  user-select: none;
}
.book-consent-check {
  appearance: none;
  -webkit-appearance: none;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px;
  min-height: 26px;
  margin: 0.1rem 0 0;
  flex: 0 0 auto;
  border: 1.5px solid rgba(200, 169, 110, 0.55);
  border-radius: 8px;
  background: rgba(8, 20, 33, 0.65);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.book-consent-check:hover {
  border-color: var(--gold);
}
.book-consent-check:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.2);
}
.book-consent-check:checked {
  background: var(--grad);
  border-color: transparent;
}
.book-consent-check:checked::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #1a2a3a;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.book-consent-text a { color: var(--gold); text-decoration: underline; }
.book-consent.is-error { color: #e8a0a0; }
.book-consent.is-error .book-consent-check {
  border-color: #e8a0a0;
  box-shadow: 0 0 0 3px rgba(232, 160, 160, 0.2);
}

.book-submit {
  min-height: 58px;
  margin-top: 0.35rem;
  font-size: 1.08rem;
  border-radius: 999px;
}
.book-status {
  margin: 0;
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}
.book-status.is-error { background: rgba(192, 57, 43, 0.18); color: #f0b4ae; border: 1px solid rgba(192, 57, 43, 0.35); }
.book-status.is-success { background: rgba(30, 125, 71, 0.18); color: #9fd9b4; border: 1px solid rgba(30, 125, 71, 0.35); }
.book-note { text-align: center; font-size: 0.88rem; margin-top: 0.15rem; }

/* ---------- Footer ---------- */
.footer {
  background: #081421;
  color: var(--ink-soft);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line-soft);
}
.footer-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; }
.footer .brand-name { color: var(--ink); }
.footer .brand-name em { color: var(--gold); }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-text { color: var(--ink-faint); max-width: 320px; }
.footer-kicker { font-weight: 700; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.04em; }
.footer-phone { font-family: "Prata", serif; font-size: 1.35rem; color: var(--ink); }
.footer-social { display: flex; gap: 1rem; margin-top: 0.8rem; }
.footer-social a { color: var(--gold); font-weight: 600; }
.footer-social a:hover { text-decoration: underline; color: var(--gold-soft); }
.footer-docs { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-docs a { color: var(--ink-soft); font-size: 0.92rem; }
.footer-docs a:hover { color: var(--gold); text-decoration: underline; }
.footer-rule summary { cursor: pointer; color: var(--ink-soft); font-size: 0.92rem; list-style: none; }
.footer-rule summary::-webkit-details-marker { display: none; }
.footer-rule summary::before { content: "▸ "; color: var(--gold); }
.footer-rule[open] summary::before { content: "▾ "; }
.footer-rule ul { margin: 0.6rem 0 0.8rem; padding-left: 1.1rem; color: var(--ink-faint); font-size: 0.85rem; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ---------- Sticky bar (mobile) ---------- */
.sticky-bar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 200%);
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.5rem;
  background: rgba(19, 44, 66, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}
.sticky-bar.is-visible { transform: translate(-50%, 0); }
.sticky-book {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--grad);
  color: var(--ink-dark);
  font-weight: 700;
}
.sticky-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 110, 0.12);
  color: var(--gold);
  border: 1px solid var(--line-soft);
}
.sticky-icon svg { width: 22px; height: 22px; }
.sticky-icon:hover { background: var(--grad); color: var(--ink-dark); border-color: transparent; }

/* ---------- Detail sheet ---------- */
.sheet { position: fixed; inset: 0; z-index: 200; display: none; }
.sheet.open { display: block; }
.sheet-backdrop { position: absolute; inset: 0; background: rgba(8, 20, 33, 0.82); animation: fade 0.3s; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.sheet-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  animation: pop 0.35s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: translate(-50%, -46%) scale(0.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.sheet-x {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(11, 26, 47, 0.85);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.sheet-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 24px 24px 0 0; background: var(--bg); }
.sheet-carousel { position: relative; width: 100%; height: 100%; }
.sheet-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s var(--ease); }
.sheet-slide.is-active { opacity: 1; }
.sheet-slide img { width: 100%; height: 100%; object-fit: cover; }
.sheet-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(11, 26, 47, 0.85);
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.sheet-carousel-prev { left: 0.8rem; }
.sheet-carousel-next { right: 0.8rem; }
.sheet-carousel-dots { position: absolute; bottom: 0.8rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.4rem; z-index: 2; }
.sheet-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(232, 228, 217, 0.45); cursor: pointer; }
.sheet-dot.is-active { background: var(--gold); width: 22px; border-radius: 5px; }
.sheet-body { padding: 1.8rem; }
.sheet-tag { font-size: 0.82rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; }
.sheet-body h3 { margin: 0.4rem 0 0.6rem; font-size: 1.6rem; color: var(--ink); }
.sheet-time { color: var(--ink-soft); font-weight: 600; margin-bottom: 0.6rem; }
.sheet-desc { color: var(--ink-soft); margin-bottom: 1rem; }
.sheet-price { font-weight: 700; margin-bottom: 0.7rem; font-size: 1.05rem; color: var(--gold); }
.sheet-meta { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 1rem; }
.sheet-lists { display: grid; gap: 1rem; margin: 0 0 1.4rem; }
.sheet-list-title {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.sheet-list ul {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.sheet-list strong { color: var(--ink); font-weight: 700; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { transform: none !important; }
  body::before { animation: none; }
  html { scroll-behavior: auto; }
}

.block,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 560px;
}
.block-perks,
.block-featured {
  content-visibility: visible;
}
.featured-img img,
.sheet-slide img {
  content-visibility: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .formats-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .book-split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Legal pages ---------- */
.legal-body { background: var(--bg); color: var(--ink); }
.legal-page { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.legal-header { padding-bottom: 2rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.legal-back { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--gold); margin-bottom: 1.4rem; }
.legal-back:hover { text-decoration: underline; }
.legal-kicker { font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-size: 0.75rem; margin: 0 0 0.6rem; }
.legal-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--gold); }
.legal-lead { margin-top: 0.8rem; color: var(--ink-soft); }
.legal-meta { margin-top: 0.6rem; font-size: 0.85rem; color: var(--ink-faint); }
.legal-content section { margin-bottom: 2rem; }
.legal-content h2 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin-bottom: 0.8rem; color: var(--gold); }
.legal-content h3 { font-size: 1.1rem; margin: 1rem 0 0.5rem; color: var(--ink); }
.legal-content p { margin-bottom: 0.8rem; color: var(--ink); }
.legal-content ul, .legal-content ol { margin: 0 0 1rem; padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-content li { color: var(--ink-soft); }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}
.legal-note {
  background: rgba(200, 169, 110, 0.08);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft);
}
.legal-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-faint); }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    gap: 1.4rem;
    background: var(--bg-soft);
    border-left: 1px solid var(--line);
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 95;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { color: var(--ink) !important; font-size: 1.1rem; opacity: 1; }
  .header-book { display: none; }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 96;
  }
  .burger i { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
  .header:not(.is-scrolled) .burger i { background: var(--ink); }
  .burger[aria-expanded="true"] i { background: var(--ink); }
  .burger[aria-expanded="true"] i:first-child { transform: translateY(7.5px) rotate(45deg); }
  .burger[aria-expanded="true"] i:last-child { transform: translateY(-7.5px) rotate(-45deg); }

  .hero-stats { gap: 1.4rem; }
  .menu-item { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .menu-action { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
