/* ═══════════════════════════════════════════════
   МОИ БЛИЗКИЕ — Cut Vision
   Тёплый, семейный дизайн
   ═══════════════════════════════════════════════ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --text: #2c2a26;
  --text-light: #5a5650;
  --text-muted: #8a8478;
  --accent: #b8935a;
  --accent-dark: #9a7a48;
  --accent-light: #d4b980;
  --warm-green: #4a6741;
  --warm-green-light: #6b8c60;
  --white: #ffffff;
  --shadow: rgba(44, 42, 38, 0.08);
  --shadow-md: rgba(44, 42, 38, 0.12);
  --max-width: 1400px;
  --content-width: 900px;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color .3s ease;
}

a:hover {
  color: var(--warm-green);
}

/* ── CONTAINER ──────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ── НАВИГАЦИЯ ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 147, 90, 0.1);
  transition: background .4s ease, box-shadow .4s ease;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  height: 32px;
  opacity: 0.9;
}

.nav__tagline {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  padding-left: 12px;
  border-left: 1px solid rgba(184, 147, 90, 0.3);
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  transition: color .3s ease;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: .3s;
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Мобильный оверлей (вне nav, чтобы не ломал backdrop-filter) ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 247, 242, 0.99);
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
  animation: menuFadeIn 0.25s ease both;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(44, 42, 38, 0.18);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.mobile-menu__close:hover {
  background: rgba(44, 42, 38, 0.07);
  transform: scale(1.1);
}
.mobile-menu__close svg { width: 20px; height: 20px; }

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-menu li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(184, 147, 90, 0.12);
}
.mobile-menu li:first-child {
  border-top: 1px solid rgba(184, 147, 90, 0.12);
}
.mobile-menu a {
  display: block;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  padding: 22px 40px;
  transition: color .2s ease, background .2s ease;
  text-decoration: none;
}
.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--accent);
  background: rgba(184, 147, 90, 0.06);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__tagline {
    display: none;
  }
  .nav__burger {
    display: flex;
    z-index: 201;
    position: relative;
  }
  /* burger → X */
  .nav__burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav__burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd2 40%, #d4c9b8 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(74, 103, 65, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(184, 147, 90, 0.1), transparent 50%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 80px) 80px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero__subtitle {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(44, 42, 38, 0.15);
  max-width: 620px;
  width: 100%;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  will-change: transform;
  cursor: default;
}

.hero__image-glare {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle at 50% 50%, rgba(255,245,220,0.45) 0%, transparent 65%);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__decor {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border: 1px solid rgba(184, 147, 90, 0.15);
  border-radius: 20px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__content {
    max-width: 100%;
    order: 2;
  }
  .hero__visual {
    order: 1;
    width: 100%;
  }
  .hero__subtitle {
    max-width: 100%;
  }
  .hero__image-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 16px;
  }
  .btn--primary {
    display: flex;
    justify-content: center;
  }
}

/* ── КНОПКИ ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn__arrow {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .3s ease;
}

.btn__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .btn__arrow {
  width: 28px;
}

/* ── СЕКЦИИ ─────────────────────────────────────── */
section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
}

.section-label::after {
  content: '';
  height: 1px;
  width: 40px;
  background: rgba(184, 147, 90, 0.4);
}

/* ── AWARENESS ──────────────────────────────────── */
.awareness-scroll-stage {
  position: relative;
  height: 170vh;
}

.awareness {
  background: var(--bg);
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.awareness__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  width: 100%;
}

.awareness__lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

/* Initial hidden state — curtain from right */
.awareness .aw-item {
  opacity: 0;
  clip-path: inset(0 105% 0 0);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.awareness .section-label.aw-item {
  clip-path: none;
  transform: translateY(-10px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.awareness .awareness__pause.aw-item {
  clip-path: none;
  transform: translateY(14px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

/* Visible state */
.awareness .aw-item.aw-visible {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
  transform: none;
}

/* Accent line glow on reveal */
.awareness__line--accent.aw-visible {
  text-shadow: 0 0 40px rgba(184, 147, 90, 0.25);
}

.awareness__line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}

.awareness__line--accent {
  color: var(--accent-dark);
  font-style: italic;
}

.awareness__pause {
  font-size: clamp(19px, 1.6vw, 22px);
  color: var(--text-light);
  line-height: 1.7;
  padding: 2rem 0;
  border-top: 1px solid rgba(184, 147, 90, 0.2);
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
}

/* Progress bar */
.awareness__progress-bar {
  position: absolute;
  top: 10%;
  left: clamp(12px, 2.5vw, 40px);
  width: 2px;
  height: 80%;
  background: rgba(184, 147, 90, 0.15);
  border-radius: 2px;
}

.awareness__progress-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-dark), var(--accent-light));
  transition: height 0.12s linear;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .awareness-scroll-stage {
    height: auto;
  }
  .awareness {
    position: relative;
    height: auto;
    padding: clamp(60px, 8vw, 120px) 0 !important;
  }
  .awareness .aw-item {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
  .awareness__progress-bar {
    display: none;
  }
}

/* ── WHO ──────────────────────────────────────── */
.who {
  background: var(--bg-alt);
}

.who__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.who__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.who__title em {
  font-style: italic;
  color: var(--accent-dark);
}

.who__intro {
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.who__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.who__list li {
  font-size: clamp(17px, 1.4vw, 20px);
  display: flex;
  gap: 12px;
  line-height: 1.7;
  color: var(--text);
}

.who__list li::before {
  content: '\2014';
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 400;
}

.who__footer {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 147, 90, 0.15);
}

/* ── FORMATS ──────────────────────────────────── */
.formats {
  background: var(--bg);
}

.formats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.formats__intro {
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .format-cards {
    grid-template-columns: 1fr;
  }
}

.format-card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(184, 147, 90, 0.12);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-md);
}

.format-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fffbf5 0%, var(--white) 100%);
}

.format-card--featured::before {
  display: none;
}

.format-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  color: rgba(184, 147, 90, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.format-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.format-desc {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.format-includes-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.format-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.format-list li {
  font-size: clamp(15px, 1.1vw, 17px);
  display: flex;
  gap: 8px;
  color: var(--text-light);
}

.format-list li::before {
  content: '\00B7';
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
}

.format-note {
  font-size: clamp(14px, 1vw, 16px);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 147, 90, 0.1);
}

.format-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--accent-dark);
}

.format-price-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.format-price-item {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.format-price-label {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--text-muted);
}

.format-price-sub {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
}

/* ── PROCESS ──────────────────────────────────── */
/* ── PROCESS ──────────────────────────────────── */
.process-scroll-stage {
  position: relative;
  height: 550vh;
}

.process {
  background: var(--bg-alt);
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 0 !important;
  overflow: hidden;
}

.process__inner {
  display: grid;
  grid-template-columns: clamp(260px, 28%, 400px) 1fr;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  width: 100%;
}

.process__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding-right: clamp(30px, 4vw, 60px);
  border-right: 1px solid rgba(184, 147, 90, 0.18);
}

/* Sidebar fade-in elements */
.ps-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ps-fade.ps-visible {
  opacity: 1;
  transform: none;
}

.process__intro {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 800px;
}

.process__counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 200;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.process__counter-sep {
  color: rgba(184, 147, 90, 0.3);
}
.process__counter-current {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

/* Cards panel */
.process__cards {
  position: relative;
  padding-left: clamp(40px, 6vw, 90px);
  overflow: hidden;
}

/* Each step: stacked absolutely, animated in/out */
.process-step {
  position: absolute;
  top: 50%;
  left: clamp(40px, 6vw, 90px);
  right: 0;
  transform: translateY(-50%) translateX(70px);
  opacity: 0;
  padding: 0;
  border-bottom: none;
  pointer-events: none;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step.ps-active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.process-step.ps-past {
  opacity: 0;
  transform: translateY(-50%) translateX(-50px);
}

.process-step__num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 200;
  color: rgba(184, 147, 90, 0.18);
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: color 0.4s ease;
}

.process-step.ps-active .process-step__num {
  color: rgba(184, 147, 90, 0.45);
}

.process-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.process-step__text {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

@media (max-width: 768px) {
  .process-scroll-stage { height: auto; }
  .process {
    position: relative;
    height: auto;
    padding: clamp(60px, 8vw, 120px) 0 !important;
  }
  .process__inner {
    grid-template-columns: 1fr;
  }
  .process__sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(184, 147, 90, 0.18);
    padding-right: 0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .process__cards {
    position: relative;
    padding-left: 0;
  }
  .process-step {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    border-bottom: 1px solid rgba(184, 147, 90, 0.15);
    padding: 1.5rem 0;
  }
  .process-step:last-child { border-bottom: none; }
  .ps-fade { opacity: 1 !important; transform: none !important; }
  .process__counter { display: none; }
}

/* ── URGENCY ──────────────────────────────────── */
.urgency {
  background: #0e0c0a;
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.urgency__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Scrolling film-strip sides */
.urgency__strip {
  position: absolute;
  top: -100%;
  width: 38px;
  height: 300%;
  z-index: 2;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 6px,
      rgba(40,36,30,1) 6px,
      rgba(40,36,30,1) 9px,
      transparent 9px,
      transparent 15px,
      rgba(184,147,90,0.18) 15px,
      rgba(184,147,90,0.18) 33px,
      transparent 33px,
      transparent 39px
    );
  animation: film-roll 1.6s linear infinite;
}
.urgency__strip--left  { left: 0; }
.urgency__strip--right { right: 0; }

@keyframes film-roll {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(100% / 3)); }
}

/* Radial vignette overlay */
.urgency__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 35%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
  z-index: 3;
}

.urgency__inner {
  position: relative;
  z-index: 5;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(60px, 8vw, 140px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
}

.urgency__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 300;
  font-style: italic;
  color: #f0ddb8;
  line-height: 1.1;
  opacity: 0;
  text-shadow:
    0 0 40px rgba(255, 220, 140, 0.5),
    0 0 80px rgba(184, 147, 90, 0.25);
  transition: text-shadow 1s ease;
}

.urgency__quote.urg-stable {
  text-shadow:
    0 0 30px rgba(255, 220, 140, 0.6),
    0 0 120px rgba(184, 147, 90, 0.35),
    0 2px 4px rgba(0,0,0,0.8);
}

.urgency__sub {
  font-size: clamp(16px, 1.5vw, 22px);
  color: rgba(240, 220, 180, 0.5);
  letter-spacing: 0.08em;
  font-weight: 300;
  opacity: 0;
  transition: color 1s ease;
}

.urgency__sub.urg-stable {
  color: rgba(240, 220, 180, 0.65);
}

@media (max-width: 768px) {
  .urgency {
    height: auto;
    min-height: 100vh;
    padding: clamp(80px, 14vw, 140px) 0 !important;
  }
  .urgency__strip { display: none; }
  .urgency__inner {
    padding: 0 clamp(24px, 6vw, 60px);
  }
  .urgency__quote {
    font-size: clamp(28px, 7vw, 48px);
  }
}

/* ── CTA FINAL ──────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, #4a6741 0%, #3a5234 50%, #2d4228 100%);
  color: var(--white);
  text-align: left;
}

.cta-final__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  text-align: left;
}

.cta-form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
  max-width: 700px;
}

.cta-form__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cta-contacts a {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 300;
  font-family: 'Jost', sans-serif;
  transition: color 0.25s ease;
}

.cta-contacts a:hover {
  color: var(--accent-light);
}

.cta-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  text-align: left;
}

.cta-form .form-row .form-field {
  margin-bottom: 0;
}

.cta-form .form-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.cta-form .form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color .3s ease;
  width: 100%;
}

.cta-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cta-form .form-input:focus {
  border-bottom-color: var(--accent-light);
}

.cta-form .form-submit {
  margin-top: 2rem;
}

.cta-form .form-success {
  display: none;
}

#formSuccess {
  display: none;
}

.cta-form .form-success.visible {
  display: block;
}

#formSuccess.visible {
  display: block;
}

.cta-form .form-success__text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--accent-light);
  text-align: left;
  padding: 2rem 0;
}

@media (max-width: 600px) {
  .cta-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  text-align: center;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.footer__contacts {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__contacts a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .3s ease;
}

.footer__contacts a:hover {
  color: var(--accent-light);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── АНИМАЦИИ ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL HINT ──────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: lineDrop 1.5s ease infinite;
}

@keyframes lineDrop {
  0% { opacity: 0; height: 0; }
  50% { opacity: 1; height: 40px; }
  100% { opacity: 0; height: 40px; }
}

@media (max-width: 600px) {
  .hero__scroll {
    display: none;
  }
}

/* ── ВИДЕО-СЕКЦИЯ ──────────────────────────────── */
.video-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback-фон пока нет видео или оно не загрузилось */
  background:
    linear-gradient(135deg, rgba(10, 8, 6, 0.82) 0%, rgba(30, 22, 14, 0.7) 60%, rgba(10, 8, 6, 0.85) 100%),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1600&q=80&fit=crop&crop=faces') center/cover no-repeat;
}

/* Видео фоновое */
.video-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-section__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Класс когда видео готово/играет */
.video-section__bg video.loaded {
  opacity: 1;
}

/* Тёмный полупрозрачный оверлей поверх видео */
.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 8, 6, 0.65) 0%,
    rgba(30, 22, 14, 0.45) 50%,
    rgba(10, 8, 6, 0.65) 100%
  );
  z-index: 1;
}

/* Контент поверх видео */
.video-section__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
}

/* Подложка за текстом */
.video-text-box {
  display: inline-block;
  background: rgba(5, 3, 2, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 56px);
  max-width: 760px;
}

.video-section__label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.video-section__label::after {
  content: '';
  height: 1px;
  width: 40px;
  background: rgba(212, 185, 128, 0.4);
}

.video-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: #f7f2ea;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.video-section__title em {
  font-style: italic;
  color: var(--accent-light);
}

.video-section__sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(247, 242, 234, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* Модальное окно видео */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.video-modal.open {
  display: flex;
  animation: menuFadeIn 0.3s ease both;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 2, 0.88);
  cursor: pointer;
}
.video-modal__inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 960px);
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.video-modal__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  backdrop-filter: blur(4px);
}
.video-modal__close:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: scale(1.1);
}
.video-modal__close svg { width: 22px; height: 22px; }

/* Плавающая кнопка играет ролик */
.video-play-row {
  margin-top: 2rem;
}

.video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: rgba(247, 242, 234, 0.75);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.video-play-btn:hover {
  color: var(--accent-light);
}

.video-play-btn__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 185, 128, 0.5);
  background: rgba(184, 147, 90, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.video-play-btn:hover .video-play-btn__circle {
  background: rgba(184, 147, 90, 0.35);
  border-color: rgba(212, 185, 128, 0.9);
  transform: scale(1.08);
}

.video-play-btn__circle svg {
  width: 20px;
  height: 20px;
  fill: rgba(247, 242, 234, 0.9);
  margin-left: 3px;
}

/* Плавающая подсказка снизу видео */
.video-section__scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 185, 128, 0.6);
  z-index: 3;
}

.video-section__scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(184, 147, 90, 0.6), transparent);
}

@media (max-width: 768px) {
  .video-section__title {
    font-size: clamp(34px, 7vw, 56px);
  }
  .play-btn {
    width: 68px;
    height: 68px;
  }
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq {
  padding: 100px 0;
}
.faq__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  text-align: left;
}
.faq__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.3;
  margin: 16px 0 48px;
  color: var(--text);
}
.faq__list {
  max-width: 760px;
  margin: 0;
  text-align: left;
}
.faq__item {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0;
}
.faq__item summary {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--accent);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item summary:hover { color: var(--accent); }
.faq__item p {
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(44,42,38,.7);
  padding: 0 0 20px;
  margin: 0;
}
