﻿@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/onest/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/onest/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f5a52;
  --paper: #f7f3ea;
  --card: #efe4cf;
  --dark: #171717;
  --white: #f7f3ea;
  --gold: #c9a24a;
  --gold-dark: #a88233;
  --red: #a88233;
  --teal: #244a5a;
  --coral: #c9a24a;
  --sun: #c9a24a;
  --fresh-green: #244a5a;
  --aqua: #244a5a;
  --line: rgba(201, 162, 74, 0.32);
  --shadow: 0 22px 64px rgba(28, 28, 28, 0.14);
  --soft-shadow: 0 16px 42px rgba(28, 28, 28, 0.1);
  --panel-bg: var(--card);
  --panel-border: rgba(28, 28, 28, 0.12);
  --panel-shadow: 0 18px 52px rgba(28, 28, 28, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  --grad-fresh: linear-gradient(135deg, var(--gold), var(--teal));
  --grad-warm: linear-gradient(135deg, var(--gold), var(--gold-dark));
  --grad-green: linear-gradient(135deg, var(--teal), #183541);
  --grad-gold: linear-gradient(135deg, #d9bb6a, var(--gold));
  --font-base: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 104px;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes gradientFlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 7px),
    linear-gradient(120deg, #07131a 0%, #101124 42%, #261229 100%);
  background-attachment: fixed;
  background-size: auto;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(430px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  padding: 9px 12px;
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.14), rgba(0, 184, 168, 0.1)),
    rgba(14, 10, 7, 0.9);
  border: 1px solid rgba(255, 196, 49, 0.34);
  border-radius: 8px;
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
  animation: headerDrop 0.62s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: var(--ink);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(0, 184, 168, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--gold);
  font-size: 12px;
  line-height: 1.25;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 22px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  text-align: center;
  transition: color 0.2s ease;
}

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

.nav a,
.phone-list,
.phone {
  text-decoration: none;
}

.phone-list {
  display: grid;
  gap: 2px;
  justify-items: end;
  line-height: 1.1;
}

.phone {
  font-weight: 800;
  color: var(--sun);
}

.messenger-list,
.hero__messengers,
.footer__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.messenger-list {
  justify-content: flex-end;
}

.messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(201, 162, 74, 0.34);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.messenger-link svg,
.messenger-link img {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.messenger-link svg {
  fill: currentColor;
}

.messenger-link img {
  display: block;
  border-radius: 6px;
}

.messenger-link strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  font-size: 10px;
  letter-spacing: 0;
}

.messenger-link--icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 50%;
}

.messenger-link--icon svg,
.messenger-link--icon img {
  width: 20px;
  height: 20px;
}

.messenger-link--icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
}

.messenger-link:hover {
  color: var(--white);
  background: var(--gold-dark);
  border-color: rgba(201, 162, 74, 0.6);
  transform: translateY(-1px);
}

.messenger-link--max {
  color: var(--white);
  background: var(--teal);
  border-color: rgba(36, 74, 90, 0.45);
}

.messenger-link--max:hover {
  background: var(--dark);
}

.hero__messengers {
  margin-top: 14px;
}

.hero__messengers .messenger-link {
  min-height: 48px;
  padding: 0 16px;
}

.footer__messengers {
  margin: 2px 0 4px;
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--grad-warm);
  border-radius: 6px;
}

.icon-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(110deg, rgba(255, 98, 79, 0.18), rgba(255, 196, 49, 0.1) 36%, rgba(0, 184, 168, 0.16)),
    url("assets/khv-hero-team.jpg") center / cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__shade {
  background:
    linear-gradient(100deg, rgba(14, 10, 7, 0.95), rgba(14, 10, 7, 0.78) 45%, rgba(0, 184, 168, 0.22) 72%, rgba(255, 98, 79, 0.1)),
    linear-gradient(0deg, rgba(14, 10, 7, 0.94), rgba(14, 10, 7, 0) 36%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 48px;
  padding: 140px 0 56px;
}

.hero__content > * {
  min-width: 0;
}

.hero__logo,
.hero .eyebrow,
.hero h1,
.lead,
.hero__actions,
.hero__facts,
.hero__form {
  opacity: 0;
  animation: fadeUp 0.72s ease both;
}

.hero__logo {
  animation-delay: 0.12s;
}

.hero .eyebrow {
  animation-delay: 0.2s;
}

.hero h1 {
  animation-delay: 0.28s;
}

.lead {
  animation-delay: 0.38s;
}

.hero__actions {
  animation-delay: 0.48s;
}

.hero__facts {
  animation-delay: 0.58s;
}

.hero__form {
  animation-delay: 0.68s;
}

.hero h1,
.section h2,
.footer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.14;
  text-transform: none;
}

.hero h1 {
  max-width: 780px;
  font-size: 64px;
  line-height: 1.08;
}

.lead {
  max-width: 640px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.hero__logo {
  display: block;
  width: 124px;
  height: 124px;
  margin: 0 0 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 196, 49, 0.76);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(14, 10, 7, 0.82), rgba(14, 10, 7, 0.82)) padding-box,
    var(--grad-fresh) border-box;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero .eyebrow {
  color: var(--sun);
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.28) 48%, transparent 62% 100%);
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button--primary {
  color: var(--ink);
  background: var(--grad-warm);
  box-shadow: 0 14px 32px rgba(255, 98, 79, 0.22), 0 8px 22px rgba(241, 189, 59, 0.2);
}

.button--primary:hover {
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-1px);
}

.button--ghost {
  color: var(--white);
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(14, 10, 7, 0.48), rgba(14, 10, 7, 0.48)) padding-box,
    var(--grad-green) border-box;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(241, 189, 59, 0.28);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero__facts li {
  padding: 16px;
  border: 1px solid rgba(255, 196, 49, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.12), rgba(0, 184, 168, 0.08)),
    rgba(14, 10, 7, 0.64);
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  font-size: 26px;
  color: var(--sun);
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.lead-form {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.2), rgba(255, 196, 49, 0.1) 38%, rgba(0, 184, 168, 0.12)),
    linear-gradient(180deg, rgba(33, 23, 17, 0.82), rgba(14, 10, 7, 0.98)),
    var(--card);
  border: 1px solid rgba(255, 196, 49, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form::before,
.feeling-card::before,
.format-card::before,
.atmosphere-card::before,
.experience__notes p::before,
.feature-list div::before,
.steps span::before,
.proof-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-fresh);
  background-size: 220% 100%;
  animation: gradientFlow 9s ease-in-out infinite alternate;
}

.lead-form h2,
.lead-form h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.2;
}

.lead-form p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 196, 49, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(14, 10, 7, 0.72);
  font: inherit;
}

.lead-form input::placeholder {
  color: rgba(255, 246, 223, 0.55);
}

.lead-form option {
  color: var(--white);
  background: var(--card);
}

.lead-form .button {
  width: 100%;
}

.lead-form small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 246, 223, 0.6);
  font-size: 12px;
}

.section {
  padding: 88px 0;
}

.section--intro {
  padding: 58px 0;
  background:
    linear-gradient(105deg, rgba(255, 98, 79, 0.14), rgba(255, 196, 49, 0.1) 36%, rgba(0, 184, 168, 0.12)),
    linear-gradient(90deg, rgba(14, 10, 7, 0.94), rgba(14, 10, 7, 0.98)),
    var(--ink);
  border-top: 1px solid rgba(255, 196, 49, 0.18);
  border-bottom: 1px solid rgba(0, 184, 168, 0.18);
}

.intro-grid,
.split,
.price-layout,
.footer__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.section h2,
.footer h2 {
  font-size: 46px;
}

.intro-grid p:last-child,
.muted,
.footer p {
  color: var(--muted);
  font-size: 18px;
}

.section--intro .eyebrow,
.section--intro p:last-child {
  color: rgba(255, 246, 223, 0.88);
}

.section--feelings {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.16), rgba(255, 196, 49, 0.08) 34%, rgba(56, 201, 103, 0.1) 66%, rgba(0, 184, 168, 0.12)),
    linear-gradient(180deg, rgba(21, 16, 12, 0.98), rgba(14, 10, 7, 0.96)),
    var(--paper);
  border-bottom: 1px solid rgba(0, 184, 168, 0.18);
}

.section--feelings::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.section--feelings .container {
  position: relative;
  z-index: 2;
}

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

.feeling-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px 22px;
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.12), rgba(255, 196, 49, 0.08) 42%, rgba(0, 184, 168, 0.1)),
    linear-gradient(180deg, rgba(33, 23, 17, 0.9), rgba(14, 10, 7, 0.98)),
    var(--card);
  border: 1px solid rgba(255, 196, 49, 0.2);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feeling-card:hover {
  border-color: rgba(0, 184, 168, 0.38);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 184, 168, 0.12);
  transform: translateY(-4px);
}

.feeling-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.22;
}

.feeling-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.atmosphere {
  position: relative;
  padding: 86px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.12) 0 18%, transparent 34%, rgba(56, 201, 103, 0.1) 52%, rgba(0, 184, 168, 0.13) 78%, transparent 100%),
    linear-gradient(180deg, rgba(21, 16, 12, 0.96), rgba(14, 10, 7, 0.98)),
    var(--paper);
  border-top: 1px solid rgba(255, 196, 49, 0.18);
  border-bottom: 1px solid rgba(0, 184, 168, 0.18);
}

.cost-quiz {
  background: var(--paper);
}

.cost-quiz__panel {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(14, 10, 7, 0.98), rgba(64, 32, 18, 0.9) 38%, rgba(255, 196, 49, 0.28) 64%, rgba(0, 184, 168, 0.2)),
    var(--ink);
  border-top: 1px solid rgba(255, 196, 49, 0.2);
  border-bottom: 1px solid rgba(0, 184, 168, 0.18);
}

.cost-quiz__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(255, 196, 49, 0.14) 34% 35%, transparent 35% 64%, rgba(0, 184, 168, 0.13) 64% 65%, transparent 65%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 220px 220px, 36px 36px;
  opacity: 0.9;
}

.cost-quiz__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  min-height: 410px;
  gap: 40px;
}

.cost-quiz__copy {
  max-width: 560px;
}

.cost-quiz__copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
}

.cost-quiz__copy h2 span {
  display: block;
  color: var(--sun);
}

.cost-quiz__copy p {
  max-width: 520px;
  margin: 46px 0 34px;
  padding-left: 20px;
  color: var(--white);
  border-left: 4px solid var(--aqua);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.42;
}

.cost-quiz__copy .button {
  min-width: 280px;
  min-height: 70px;
}

.cost-quiz__visual {
  align-self: stretch;
  position: relative;
  min-height: 410px;
}

.cost-quiz__visual::before {
  content: none;
}

.cost-quiz__visual img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 100%);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
  filter: contrast(1.05) saturate(1.1);
}

.atmosphere::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: 180px;
  width: 190px;
  height: 190px;
  background: url("assets/fort-boyard-khabarovsk-logo.jpg") center / cover;
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px rgba(241, 189, 59, 0.4));
  opacity: 0.1;
  transform: rotate(-16deg);
}

.atmosphere__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 78px;
  align-items: start;
  margin-bottom: 56px;
}

.atmosphere > .container {
  position: relative;
  z-index: 2;
}

.atmosphere__head h2 {
  margin: 0;
  max-width: 620px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
}

.atmosphere__head p {
  margin: 22px 0 0;
  padding-left: 34px;
  color: var(--muted);
  border-left: 4px solid var(--gold);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.42;
}

.atmosphere-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.atmosphere-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 20px 20px 30px;
  min-height: 440px;
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.1), rgba(255, 196, 49, 0.07) 44%, rgba(0, 184, 168, 0.08)),
    linear-gradient(180deg, rgba(33, 23, 17, 0.84), rgba(14, 10, 7, 0.98)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.atmosphere-card--wide {
  grid-column: auto;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 440px;
}

.atmosphere-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border: 1px solid rgba(241, 189, 59, 0.18);
  border-radius: 8px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.atmosphere-card:hover img,
.visual-panel:hover img,
.experience__photo:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.atmosphere-card--wide img {
  height: 235px;
  grid-row: auto;
}

.atmosphere-card--wide .atmosphere-card__title,
.atmosphere-card--wide p {
  grid-column: auto;
}

.atmosphere-card__title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
}

.atmosphere-card__title span {
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.atmosphere-card__title h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.28;
}

.atmosphere-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.experience {
  position: relative;
  padding: 72px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.12), transparent 28%, rgba(255, 196, 49, 0.1) 48%, rgba(0, 184, 168, 0.12) 78%),
    linear-gradient(180deg, rgba(33, 23, 17, 0.98), rgba(14, 10, 7, 0.98)),
    var(--paper);
  border-top: 1px solid rgba(255, 196, 49, 0.18);
  border-bottom: 1px solid rgba(0, 184, 168, 0.18);
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 196, 49, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 196, 49, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.9;
}

.experience__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 24px 56px;
}

.experience__kicker,
.experience__subhead,
.experience__intro {
  grid-column: 1;
  margin: 0;
  text-align: left;
}

.experience__kicker {
  color: var(--sun);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience h2 {
  grid-column: 1;
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.06;
  text-align: left;
  text-transform: none;
}

.experience__subhead {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
}

.experience__intro {
  max-width: 430px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.experience__photo {
  grid-column: 2;
  grid-row: 1 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 168, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience__photo img {
  height: 420px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.experience__notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.experience__notes p {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.1), rgba(0, 184, 168, 0.09)),
    linear-gradient(180deg, rgba(33, 23, 17, 0.9), rgba(14, 10, 7, 0.98)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
  text-align: left;
}

.experience__notes p:nth-child(even) {
  justify-self: stretch;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.format-card,
.proof-item {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.1), rgba(255, 196, 49, 0.07) 42%, rgba(0, 184, 168, 0.08)),
    linear-gradient(180deg, rgba(33, 23, 17, 0.9), rgba(14, 10, 7, 0.98)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.format-card:hover,
.feeling-card:hover,
.atmosphere-card:hover,
.proof-item:hover,
.feature-list div:hover,
.steps span:hover {
  border-color: rgba(0, 184, 168, 0.38);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 184, 168, 0.12);
  transform: translateY(-4px);
}

.format-card h3 {
  min-height: 62px;
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.18;
  text-transform: none;
}

.format-card p {
  color: var(--muted);
}

.format-card a {
  color: var(--sun);
  font-weight: 800;
}

.section--band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 98, 79, 0.13), rgba(255, 196, 49, 0.08) 44%, rgba(0, 184, 168, 0.12)),
    linear-gradient(180deg, rgba(14, 10, 7, 0.96), rgba(14, 10, 7, 0.92)),
    #18110d;
}

.section--band > .container {
  position: relative;
  z-index: 2;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 184, 168, 0.24);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.visual-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.visual-panel--program {
  align-self: center;
}

.visual-panel--program img {
  min-height: 430px;
  aspect-ratio: 4 / 5;
}

.visual-panel__badge {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 14px;
  max-width: none;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.section--gallery {
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.08), transparent 30%, rgba(56, 201, 103, 0.08) 55%, rgba(0, 184, 168, 0.08)),
    linear-gradient(180deg, rgba(14, 10, 7, 0.98), rgba(21, 16, 12, 0.96)),
    var(--ink);
  border-top: 1px solid rgba(255, 196, 49, 0.14);
  border-bottom: 1px solid rgba(0, 184, 168, 0.14);
}

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

.photo-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 196, 49, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.photo-card:hover {
  border-color: rgba(0, 184, 168, 0.38);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.photo-card--wide {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72));
}

.photo-card figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.feature-list div,
.steps span {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.08), rgba(0, 184, 168, 0.08)),
    rgba(14, 10, 7, 0.58);
  border: 1px solid rgba(255, 196, 49, 0.2);
  border-radius: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-list strong,
.steps span {
  color: var(--white);
}

.feature-list span {
  color: var(--muted);
}

.price-layout {
  align-items: start;
}

.steps {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.lead-form--light {
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.22), rgba(255, 196, 49, 0.1) 40%, rgba(0, 184, 168, 0.12)),
    linear-gradient(180deg, rgba(14, 10, 7, 0.86), rgba(14, 10, 7, 0.98)),
    var(--ink);
  color: var(--white);
}

.lead-form--light input,
.lead-form--light select {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form--light input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.lead-form--light small,
.lead-form--light p {
  color: rgba(255, 255, 255, 0.64);
}

.section--proof {
  padding: 42px 0;
  background:
    linear-gradient(105deg, rgba(255, 98, 79, 0.2), rgba(255, 196, 49, 0.09) 42%, rgba(0, 184, 168, 0.14)),
    linear-gradient(90deg, rgba(33, 23, 17, 0.94), rgba(14, 10, 7, 0.96)),
    var(--card);
  color: var(--white);
  border-top: 1px solid rgba(255, 196, 49, 0.18);
  border-bottom: 1px solid rgba(0, 184, 168, 0.18);
}

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

.proof-item {
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.09), rgba(0, 184, 168, 0.08)),
    rgba(14, 10, 7, 0.58);
  border-color: var(--line);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.75);
}

.policy-main {
  padding-top: 104px;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.16), rgba(255, 196, 49, 0.08) 34%, rgba(0, 184, 168, 0.16)),
    linear-gradient(180deg, rgba(21, 16, 12, 0.98), rgba(14, 10, 7, 0.96)),
    var(--paper);
  border-bottom: 1px solid rgba(0, 184, 168, 0.18);
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.policy-hero__inner {
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.08;
}

.policy-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(14, 10, 7, 0.8), rgba(14, 10, 7, 0.8)) padding-box,
    var(--grad-fresh) border-box;
  font-size: 13px;
  font-weight: 800;
}

.policy-section {
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.08), transparent 36%, rgba(0, 184, 168, 0.1)),
    var(--paper);
}

.policy-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 98, 79, 0.08), rgba(0, 184, 168, 0.08)),
    linear-gradient(180deg, rgba(33, 23, 17, 0.9), rgba(14, 10, 7, 0.98)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-fresh);
  background-size: 220% 100%;
  animation: gradientFlow 9s ease-in-out infinite alternate;
}

.policy-card--accent {
  position: sticky;
  top: 112px;
}

.policy-card h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.22;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.policy-card p {
  margin: 0 0 12px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding-left: 20px;
}

.policy-card strong {
  color: var(--white);
}

.policy-card a,
.lead-form small a {
  color: var(--sun);
  font-weight: 800;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.footer {
  padding: 72px 0 96px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 98, 79, 0.12), transparent 36%, rgba(0, 184, 168, 0.12)),
    linear-gradient(180deg, rgba(33, 23, 17, 0.82), rgba(14, 10, 7, 1)),
    var(--ink);
  border-top: 1px solid rgba(255, 196, 49, 0.24);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer__contacts {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer__contacts a {
  color: var(--sun);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: 16px;
  bottom: 16px;
  display: none;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--grad-warm);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 800;
  text-decoration: none;
}

.toast {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 24px;
  width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--grad-green);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast--error {
  background: #7a2e2a;
}

.cookie-consent {
  position: fixed;
  z-index: 35;
  box-sizing: border-box;
  bottom: 16px;
  left: 50%;
  display: flex;
  gap: 12px;
  align-items: center;
  width: min(520px, calc(100% - 32px));
  padding: 10px 12px;
  color: var(--white);
  background: rgba(23, 23, 23, 0.94);
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent * {
  box-sizing: border-box;
}

.cookie-consent p {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cookie-consent a {
  color: var(--sun);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-consent__accept {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--grad-warm);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

main {
  padding-bottom: 32px;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  min-height: 720px;
  margin: 108px auto 28px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
}

.section,
.atmosphere,
.experience,
.cost-quiz,
.section--intro,
.section--feelings,
.section--band,
.section--gallery,
.section--proof,
.footer,
.policy-hero,
.policy-section {
  background: transparent;
  border: 0;
}

.section,
.atmosphere,
.experience,
.cost-quiz {
  padding: 28px 0;
}

.footer {
  margin: 0;
  padding: 28px 0 32px;
}

:where(
  .section:not(.policy-section) > .container,
  .atmosphere > .container,
  .experience__inner,
  .cost-quiz__panel,
  .footer__grid,
  .policy-hero__inner,
  .policy-layout
) {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
}

:where(
  .section:not(.policy-section) > .container,
  .atmosphere > .container,
  .experience__inner,
  .cost-quiz__panel,
  .footer__grid,
  .policy-hero__inner,
  .policy-layout
)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, rgba(255, 98, 79, 0.06), transparent 36%, rgba(0, 184, 168, 0.08));
  background-size: auto, 100% 100%;
  pointer-events: none;
}

:where(
  .section:not(.policy-section) > .container,
  .atmosphere > .container,
  .experience__inner,
  .cost-quiz__panel,
  .footer__grid,
  .policy-hero__inner,
  .policy-layout
) > * {
  position: relative;
  z-index: 1;
}

.section--feelings::before,
.experience::before,
.atmosphere::after,
.cost-quiz__panel::before,
.policy-hero::before {
  content: none;
}

.cost-quiz__panel {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.cost-quiz__content {
  width: 100%;
}

.has-reveal [data-animate] {
  opacity: 0;
  translate: 0 28px;
  filter: blur(8px);
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    translate 0.72s ease var(--reveal-delay, 0ms),
    filter 0.72s ease var(--reveal-delay, 0ms);
  will-change: opacity, translate, filter;
}

.has-reveal [data-animate].is-visible {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}

.has-reveal .experience__notes[data-animate].is-visible p {
  animation: trustCardIn 0.42s ease both;
}

.has-reveal .experience__notes[data-animate].is-visible p:nth-child(2) {
  animation-delay: 45ms;
}

.has-reveal .experience__notes[data-animate].is-visible p:nth-child(3) {
  animation-delay: 90ms;
}

.has-reveal .experience__notes[data-animate].is-visible p:nth-child(4) {
  animation-delay: 135ms;
}

@keyframes trustCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    animation: fadeUp 0.24s ease both;
  }

  .nav a {
    padding: 13px 10px;
  }

  .icon-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero__content,
  .cost-quiz__content,
  .intro-grid,
  .split,
  .price-layout,
  .policy-layout,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 128px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .section h2,
  .footer h2 {
    font-size: 40px;
  }

  .format-grid,
  .feeling-grid,
  .proof-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .atmosphere__head,
  .atmosphere-grid,
  .atmosphere-card--wide {
    grid-template-columns: 1fr;
  }

  .atmosphere__head {
    gap: 22px;
  }

  .atmosphere__head h2 {
    max-width: none;
    font-size: 34px;
  }

  .atmosphere__head p {
    margin-top: 0;
  }

  .atmosphere-grid {
    gap: 22px;
  }

  .atmosphere-card,
  .feeling-card,
  .atmosphere-card--wide {
    min-height: auto;
  }

  .atmosphere-card--wide img {
    height: 235px;
    grid-row: auto;
  }

  .atmosphere-card--wide .atmosphere-card__title,
  .atmosphere-card--wide p {
    grid-column: auto;
  }

  .experience h2 {
    font-size: 46px;
  }

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

  .experience__kicker,
  .experience__subhead,
  .experience__intro,
  .experience h2,
  .experience__photo {
    grid-column: 1;
  }

  .experience__photo {
    grid-row: auto;
  }

  .experience__photo img {
    height: 320px;
  }

  .experience__notes {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 12px;
  }

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

  .cost-quiz__content {
    gap: 0;
    padding-top: 54px;
  }

  .cost-quiz__copy {
    max-width: none;
  }

  .cost-quiz__copy h2 {
    font-size: 34px;
  }

  .cost-quiz__copy p {
    margin: 28px 0;
    font-size: 21px;
  }

  .cost-quiz__visual {
    min-height: 280px;
  }

  .cost-quiz__visual img {
    width: 100%;
    object-position: center 22%;
  }

  .photo-card--wide {
    grid-column: span 2;
  }

  .policy-card--accent {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    gap: 8px;
  }

  .brand small,
  .phone-list,
  .phone {
    display: none;
  }

  .brand__logo {
    width: 46px;
    height: 46px;
  }

  .hero__logo {
    width: 112px;
    height: 112px;
  }

  .hero__content {
    gap: 28px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .policy-main {
    padding-top: 80px;
  }

  .policy-hero {
    padding: 54px 0 42px;
  }

  .policy-hero h1 {
    font-size: 36px;
  }

  .policy-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .policy-card {
    padding: 22px 18px;
  }

  .policy-card h2 {
    font-size: 22px;
  }

  .policy-card p,
  .policy-card li {
    font-size: 16px;
  }

  .atmosphere {
    padding: 56px 0;
  }

  .atmosphere__head {
    margin-bottom: 30px;
  }

  .atmosphere__head h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .atmosphere__head p {
    padding-left: 18px;
    font-size: 19px;
  }

  .atmosphere-card {
    padding: 14px 14px 24px;
    gap: 16px;
  }

  .atmosphere-card img,
  .atmosphere-card--wide img {
    height: 210px;
  }

  .atmosphere-card__title {
    gap: 10px;
  }

  .atmosphere-card__title span {
    font-size: 42px;
  }

  .atmosphere-card__title h3 {
    font-size: 20px;
  }

  .experience {
    padding: 54px 0 64px;
  }

  .experience__inner {
    display: block;
  }

  .experience__kicker,
  .experience__subhead,
  .experience__intro {
    text-align: left;
  }

  .experience__kicker {
    font-size: 13px;
  }

  .experience h2 {
    margin: 8px 0;
    font-size: 36px;
    text-align: left;
  }

  .experience__subhead {
    font-size: 21px;
  }

  .experience__intro {
    margin-top: 24px;
  }

  .experience__photo {
    margin: 26px 0;
  }

  .experience__photo img {
    height: 230px;
  }

  .experience__notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
  }

  .experience__notes p,
  .experience__notes p:nth-child(even) {
    max-width: none;
    justify-self: stretch;
    padding: 18px;
    color: var(--ink);
    background: rgba(247, 243, 234, 0.78);
    border: 1px solid rgba(201, 162, 74, 0.24);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(28, 28, 28, 0.08);
    text-align: left;
  }

  .cost-quiz__panel,
  .cost-quiz__content {
    min-height: auto;
  }

  .cost-quiz__content {
    padding-top: 42px;
  }

  .cost-quiz__copy h2 {
    font-size: 28px;
  }

  .cost-quiz__copy p {
    padding-left: 16px;
    font-size: 18px;
  }

  .cost-quiz__copy .button {
    width: 100%;
    min-width: 0;
  }

  .cost-quiz__visual {
    min-height: 230px;
  }

  .cost-quiz__visual::before {
    left: 2%;
    bottom: 18px;
    transform: scale(0.72);
    transform-origin: left bottom;
  }

  .section h2,
  .footer h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 16px;
  }

  .hero__facts,
  .feeling-grid,
  .format-grid,
  .proof-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card img {
    min-height: 230px;
  }

  .photo-card--wide {
    grid-column: span 1;
  }

  .section {
    padding: 60px 0;
  }

  .section--proof {
    padding: 28px 0;
  }

  .hero {
    width: calc(100% - 16px);
    margin: 86px auto 18px;
  }

  .section,
  .atmosphere,
  .experience,
  .cost-quiz {
    padding: 18px 0;
  }

  .footer {
    padding: 18px 0 28px;
  }

  .cost-quiz__panel {
    width: calc(100% - 16px);
  }

  :where(
    .section:not(.policy-section) > .container,
    .atmosphere > .container,
    .experience__inner,
    .cost-quiz__panel,
    .footer__grid,
    .policy-hero__inner,
    .policy-layout
  ) {
    padding: 20px 16px;
  }

  .format-card h3 {
    min-height: auto;
  }

  .sticky-cta {
    display: inline-flex;
  }
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 34%),
    #f1ead8;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

.site-header {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.94);
  border-color: rgba(28, 28, 28, 0.12);
  box-shadow: 0 16px 48px rgba(28, 28, 28, 0.12);
}

.brand__logo {
  background: var(--dark);
  box-shadow: 0 8px 22px rgba(28, 28, 28, 0.18), 0 0 0 2px rgba(201, 162, 74, 0.22);
}

.brand small,
.nav a:hover,
.phone-list,
.phone,
.footer__contacts a,
.format-card a,
.policy-card a,
.lead-form small a {
  color: var(--gold-dark);
}

.nav.is-open {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(28, 28, 28, 0.12);
}

.icon-button,
.sticky-cta {
  color: var(--ink);
  background: var(--gold);
}

.hero,
.cost-quiz__panel,
.footer__grid,
.policy-hero__inner {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(36, 74, 90, 0.22), transparent 48%, rgba(201, 162, 74, 0.08)),
    var(--dark);
  border-color: rgba(201, 162, 74, 0.28);
  box-shadow: 0 26px 76px rgba(28, 28, 28, 0.22);
}

.hero__media {
  background:
    linear-gradient(110deg, rgba(23, 23, 23, 0.22), rgba(23, 23, 23, 0.08) 48%, rgba(36, 74, 90, 0.18)),
    url("assets/khv-hero-team.jpg") center / cover;
}

.hero__shade {
  background:
    linear-gradient(100deg, rgba(23, 23, 23, 0.96), rgba(23, 23, 23, 0.78) 46%, rgba(23, 23, 23, 0.26) 76%),
    linear-gradient(0deg, rgba(23, 23, 23, 0.88), rgba(23, 23, 23, 0) 38%);
}

.hero .eyebrow,
.hero__facts strong,
.cost-quiz__copy h2 span,
.experience__kicker,
.policy-hero .eyebrow,
.footer .eyebrow {
  color: var(--gold);
}

.hero .lead,
.hero__facts span,
.cost-quiz__copy p,
.footer p,
.policy-hero p:not(.eyebrow) {
  color: rgba(247, 243, 234, 0.78);
}

.hero__meta span,
.policy-meta span {
  color: var(--white);
  background: rgba(247, 243, 234, 0.08);
  border-color: rgba(201, 162, 74, 0.36);
}

.hero__facts li {
  background: rgba(247, 243, 234, 0.07);
  border-color: rgba(201, 162, 74, 0.26);
}

.button--primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(168, 130, 51, 0.2);
}

.button--primary:hover {
  color: var(--white);
  background: var(--gold-dark);
  filter: none;
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(247, 243, 234, 0.36);
}

.button--dark {
  color: var(--white);
  background: var(--dark);
  border-color: rgba(201, 162, 74, 0.28);
}

.button--dark:hover {
  background: var(--teal);
}

.section,
.atmosphere,
.experience,
.section--intro,
.section--feelings,
.section--band,
.section--gallery,
.section--proof,
.policy-section {
  color: var(--ink);
  background: transparent;
}

:where(
  .section:not(.policy-section) > .container,
  .atmosphere > .container,
  .experience__inner,
  .policy-layout
) {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.08), transparent 42%, rgba(36, 74, 90, 0.12)),
    #171717;
  border-color: rgba(201, 162, 74, 0.24);
  box-shadow: 0 24px 70px rgba(28, 28, 28, 0.18);
}

:where(
  .section:not(.policy-section) > .container,
  .atmosphere > .container,
  .experience__inner,
  .cost-quiz__panel,
  .footer__grid,
  .policy-hero__inner,
  .policy-layout
)::after {
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.08), transparent 42%, rgba(36, 74, 90, 0.06));
}

.section h2,
.section h3,
.atmosphere__head h2,
.atmosphere-card__title h3,
.experience h2,
.experience__subhead,
.format-card h3,
.proof-item strong,
.policy-card h2 {
  color: var(--white);
}

.eyebrow {
  color: var(--gold);
}

.intro-grid p:last-child,
.section p,
.atmosphere__head p,
.atmosphere-card p,
.experience__intro,
.experience__notes p,
.format-card p,
.feature-list span,
.proof-item span,
.policy-card p,
.policy-card li {
  color: rgba(247, 243, 234, 0.72);
}

.lead-form,
.lead-form--light {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(36, 74, 90, 0.22), transparent 56%, rgba(201, 162, 74, 0.08)),
    var(--dark);
  border-color: rgba(201, 162, 74, 0.26);
  box-shadow: 0 20px 58px rgba(28, 28, 28, 0.2);
}

.lead-form h2,
.lead-form h3,
.lead-form label,
.lead-form--light h3 {
  color: var(--white);
}

.lead-form p,
.lead-form small,
.lead-form--light p,
.lead-form--light small {
  color: rgba(247, 243, 234, 0.68);
}

.lead-form input,
.lead-form select,
.lead-form--light input,
.lead-form--light select {
  color: var(--white);
  background: rgba(247, 243, 234, 0.08);
  border-color: rgba(247, 243, 234, 0.16);
}

.lead-form option {
  color: var(--white);
  background: var(--dark);
}

.lead-form input::placeholder,
.lead-form--light input::placeholder {
  color: rgba(247, 243, 234, 0.5);
}

.lead-form::before,
.feeling-card::before,
.format-card::before,
.atmosphere-card::before,
.experience__notes p::before,
.feature-list div::before,
.steps span::before,
.proof-item::before,
.policy-card::before {
  background: var(--gold);
  animation: none;
}

.feeling-card,
.format-card,
.atmosphere-card,
.experience__notes p,
.feature-list div,
.steps span,
.proof-item,
.policy-card {
  color: var(--white);
  background: rgba(247, 243, 234, 0.06);
  border-color: rgba(201, 162, 74, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

.format-card:hover,
.feeling-card:hover,
.atmosphere-card:hover,
.proof-item:hover,
.feature-list div:hover,
.steps span:hover,
.photo-card:hover {
  border-color: rgba(201, 162, 74, 0.55);
  box-shadow: 0 20px 52px rgba(28, 28, 28, 0.14);
}

.visual-panel,
.photo-card,
.experience__photo {
  border-color: rgba(28, 28, 28, 0.12);
  box-shadow: 0 18px 46px rgba(28, 28, 28, 0.14);
}

.visual-panel__badge {
  color: var(--white);
  background: transparent;
}

.experience__notes p,
.feature-list div,
.steps span,
.proof-item {
  color: var(--white);
}

.section--band .split {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.section--band .muted {
  max-width: 620px;
}

.section--band .feature-list {
  gap: 14px;
}

.section--band .feature-list div {
  min-height: 136px;
  padding: 20px;
}

.feature-list strong,
.steps span {
  color: var(--white);
}

.cost-quiz {
  color: var(--white);
}

.cost-quiz__copy h2 {
  color: var(--white);
}

.cost-quiz__copy p {
  border-left-color: var(--gold);
}

.cost-quiz__visual img {
  opacity: 0.82;
  filter: contrast(1.02) saturate(1.03);
}

.section--proof {
  color: var(--ink);
}

.proof-item {
  background: rgba(247, 243, 234, 0.06);
}

.policy-card strong {
  color: var(--white);
}

.footer {
  color: var(--white);
  background: transparent;
}

.footer h2 {
  color: var(--white);
}

.toast {
  color: var(--white);
  background: var(--teal);
}

.footer__contacts a,
.lead-form small a {
  color: var(--gold);
}

.lead-form .button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.form-benefits span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  color: rgba(247, 243, 234, 0.82);
  background: rgba(247, 243, 234, 0.07);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.cost-quiz__content--quiz {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.quiz-benefits {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quiz-benefits li {
  position: relative;
  padding-left: 24px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

.quiz-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.16);
}

.quiz-form {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 500px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(247, 243, 234, 0.1), transparent 56%, rgba(201, 162, 74, 0.08)),
    rgba(247, 243, 234, 0.06);
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.quiz-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.quiz-progress__label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quiz-progress__bar {
  overflow: hidden;
  height: 8px;
  background: rgba(247, 243, 234, 0.11);
  border-radius: 999px;
}

.quiz-progress__bar span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--gold);
  border-radius: inherit;
  transition: width 0.24s ease;
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.is-active {
  display: block;
}

.quiz-step legend {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.14;
  text-wrap: balance;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-option span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 16px 16px 46px;
  color: rgba(247, 243, 234, 0.86);
  background: rgba(247, 243, 234, 0.08);
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quiz-option span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(201, 162, 74, 0.62);
  border-radius: 50%;
  transform: translateY(-50%);
}

.quiz-options--checks .quiz-option span::before {
  border-radius: 5px;
}

.quiz-option input:checked + span {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.quiz-option input:checked + span::before {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 0 0 0 5px var(--gold);
}

.quiz-option input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.quiz-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.quiz-contact label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.quiz-contact input {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(247, 243, 234, 0.08);
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 8px;
  font: inherit;
}

.quiz-contact input::placeholder {
  color: rgba(247, 243, 234, 0.5);
}

.quiz-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quiz-nav .button {
  min-height: 54px;
  flex: 1 1 180px;
}

.quiz-form small {
  display: block;
  margin-top: 14px;
  color: rgba(247, 243, 234, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.quiz-form small a {
  color: var(--gold);
  font-weight: 800;
}

/* Final rhythm pass: fewer heavy screens, clearer reading path. */
.section h2,
.atmosphere__head h2,
.experience h2,
.footer h2,
.policy-card h2 {
  text-wrap: balance;
}

.section p,
.muted,
.atmosphere-card p,
.feature-list span,
.experience__notes p,
.footer p {
  text-wrap: pretty;
}

.section--intro,
.section--feelings,
#formats,
.experience,
.section--proof {
  padding-top: clamp(18px, 2vw, 28px);
  padding-bottom: clamp(18px, 2vw, 28px);
}

.section--intro > .container,
.section--feelings > .container,
#formats > .container,
.experience__inner,
.section--proof > .container {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 46%, rgba(201, 162, 74, 0.08)),
    rgba(239, 228, 207, 0.82);
  border-color: rgba(28, 28, 28, 0.08);
  box-shadow: 0 18px 54px rgba(28, 28, 28, 0.08);
}

.section--intro > .container::after,
.section--feelings > .container::after,
#formats > .container::after,
.experience__inner::after,
.section--proof > .container::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 42%, rgba(36, 74, 90, 0.05));
}

.section--intro h2,
.section--feelings h2,
.section--feelings h3,
#formats h2,
#formats h3,
.experience h2,
.experience__subhead,
.section--proof .proof-item strong {
  color: var(--ink);
}

.section--intro p:last-child,
.section--feelings p,
#formats p,
.experience__intro,
.experience__notes p,
.section--proof .proof-item span {
  color: var(--muted);
}

.section--intro .eyebrow,
.section--feelings .eyebrow,
#formats .eyebrow,
.experience__kicker {
  color: var(--gold-dark);
}

.section--feelings .feeling-card,
#formats .format-card,
.experience__notes p,
.section--proof .proof-item {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.68);
  border-color: rgba(201, 162, 74, 0.22);
  box-shadow: 0 14px 34px rgba(28, 28, 28, 0.08);
}

.section--feelings .feeling-card h3,
#formats .format-card h3,
.section--proof .proof-item strong {
  color: var(--ink);
}

.section--feelings .feeling-card p,
#formats .format-card p,
.experience__notes p,
.section--proof .proof-item span {
  color: var(--muted);
}

#formats .format-card h3 {
  min-height: 0;
}

#formats .format-card a {
  color: var(--teal);
}

.atmosphere-card,
.section--band .feature-list div,
#price .steps span {
  background: rgba(247, 243, 234, 0.09);
  border-color: rgba(201, 162, 74, 0.28);
}

.atmosphere-card:hover,
.section--band .feature-list div:hover,
#price .steps span:hover,
.section--feelings .feeling-card:hover,
#formats .format-card:hover,
.section--proof .proof-item:hover {
  border-color: rgba(201, 162, 74, 0.5);
}

.section--band .feature-list div,
#price .steps span {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.section--proof {
  padding-top: clamp(18px, 2vw, 28px);
}

.section--proof > .container {
  padding: clamp(18px, 3vw, 28px);
}

.proof-grid {
  gap: 12px;
}

.proof-item {
  min-height: 118px;
  padding: 20px;
}

.experience__photo {
  border-color: rgba(201, 162, 74, 0.24);
}

.footer__contacts .messenger-link {
  color: var(--ink);
}

.footer__contacts .messenger-link--max {
  color: var(--white);
}

.sticky-cta {
  display: inline-flex;
  min-height: 50px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(168, 130, 51, 0.22);
  box-shadow: 0 18px 44px rgba(28, 28, 28, 0.22);
}

.sticky-cta:hover {
  color: var(--white);
  background: var(--gold-dark);
}

.site-header .messenger-list {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
}

.site-header .messenger-link--icon {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  overflow: hidden;
  flex: 0 0 40px;
}

.site-header .messenger-link--icon svg,
.site-header .messenger-link--icon img {
  display: block;
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  object-fit: contain;
}

body {
  background: var(--paper);
}

.section--band {
  padding-bottom: clamp(10px, 1.3vw, 16px);
}

.section--band + .experience {
  padding-top: clamp(10px, 1.3vw, 16px);
}

.section--band > .container {
  box-shadow: 0 16px 44px rgba(28, 28, 28, 0.12);
}

.experience__inner {
  box-shadow: 0 10px 32px rgba(28, 28, 28, 0.06);
}

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

  .cost-quiz__content--quiz {
    grid-template-columns: 1fr;
  }

  .quiz-form {
    min-height: auto;
  }

  .section--band .split {
    grid-template-columns: 1fr;
  }

  .visual-panel--program img {
    min-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .section--band .muted {
    max-width: none;
  }
}

@media (max-width: 640px) {
  body::before {
    content: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .phone-list,
  .phone {
    display: none;
  }

  .site-header .messenger-list {
    display: none;
  }

  .messenger-list .messenger-link {
    min-width: 46px;
    padding: 0 10px;
  }

  .hero__meta span {
    display: inline-block;
    max-width: calc(100vw - 48px);
    height: auto;
    min-height: 34px;
    padding: 8px 12px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__meta span:nth-child(2) {
    display: none;
  }

  .quiz-options,
  .quiz-contact {
    grid-template-columns: 1fr;
  }

  .quiz-option span {
    min-height: 62px;
  }

  .quiz-nav {
    display: grid;
  }

  .quiz-nav .button {
    flex-basis: auto;
    width: 100%;
  }

  .visual-panel--program img {
    min-height: 240px;
  }

  .section--band .feature-list div {
    min-height: auto;
  }

  .experience__notes p,
  .experience__notes p:nth-child(even) {
    color: var(--ink);
    background: rgba(247, 243, 234, 0.9);
    border-color: rgba(201, 162, 74, 0.28);
    font-size: 16px;
    line-height: 1.55;
  }

  .visual-panel__badge {
    left: 14px;
    right: 14px;
    bottom: 12px;
    max-width: none;
    padding: 0;
    font-size: 14px;
  }

  .form-benefits {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__logo,
  .hero .eyebrow,
  .hero h1,
  .lead,
  .hero__actions,
  .hero__facts,
  .hero__form,
  .has-reveal [data-animate],
  .has-reveal [data-animate].is-visible {
    opacity: 1;
    translate: 0 0;
    transform: none;
    filter: none;
  }
}

@media (max-width: 640px) {
  .cookie-consent {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    right: auto;
    bottom: 76px;
    left: 12px;
    align-items: flex-start;
    width: min(330px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    padding: 10px;
    gap: 10px;
    transform: none;
  }

  .cookie-consent p {
    font-size: 0.78rem;
  }

  .cookie-consent__accept {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* MEMEX Fort Boyard standard cleanup 2026-06-03: final cascade layer. */
.sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.2s ease, color 0.2s ease;
}

body.is-sticky-cta-visible .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer__legal {
  margin-top: 16px;
  padding: 18px clamp(16px, 3vw, 28px) 0;
  color: rgba(28, 28, 28, 0.62);
  border-top: 1px solid rgba(201, 162, 74, 0.18);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.footer__legal p {
  max-width: 980px;
  margin: 0 auto 7px;
  color: inherit;
}

.footer__legal strong {
  color: rgba(28, 28, 28, 0.86);
}

.footer__legal a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--ink);
}

body.is-lead-modal-open {
  overflow: hidden;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

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

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(201, 162, 74, 0.18), transparent 34%),
    rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(14px);
}

.lead-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(780px, calc(100dvh - 28px));
  overflow: auto;
  border-radius: 10px;
  transform: translateY(12px) scale(0.985);
  transition: transform 0.18s ease;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

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

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 50%;
  background: rgba(14, 10, 7, 0.72);
  color: transparent;
  cursor: pointer;
}

.lead-modal__close::before,
.lead-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.lead-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lead-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-modal__head,
.lead-modal__form {
  position: relative;
  z-index: 1;
}

.lead-modal__head {
  padding: clamp(24px, 4vw, 38px) clamp(24px, 4vw, 38px) 0;
}

.lead-modal__head .eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
}

.lead-modal__head h2 {
  max-width: 620px;
  margin: 0 46px 12px 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.lead-modal__head p {
  max-width: 620px;
  margin-bottom: 0;
}

.lead-modal__form {
  min-height: 0;
  padding: 22px clamp(24px, 4vw, 38px) clamp(24px, 4vw, 38px);
}

.lead-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.lead-modal__form .button {
  margin-top: 4px;
}

.messenger-link--max,
.messenger-link--max span,
.messenger-link--max strong {
  line-height: 1.22;
}

.section--proof [data-animate],
.section--proof .proof-item,
.cost-quiz [data-animate],
#price [data-animate],
.footer [data-animate],
.footer__grid > *,
.footer__contacts,
.footer__legal {
  opacity: 1 !important;
  translate: 0 0 !important;
  transform: none !important;
  filter: none !important;
}

@media (max-width: 640px) {
  .footer {
    padding-bottom: 86px;
  }

  .footer__legal {
    text-align: left;
  }

  .lead-modal {
    align-items: end;
    padding: 10px;
  }

  .lead-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 10px;
  }

  .lead-modal__head {
    padding: 24px 18px 0;
  }

  .lead-modal__head h2 {
    margin-right: 46px;
    font-size: 28px;
  }

  .lead-modal__form {
    padding: 20px 18px;
  }

  .lead-modal__grid {
    grid-template-columns: 1fr;
  }
}

