/* === Razumov Agency — стили === */

:root {
  --bg: #000000;
  --bg-alt: #0d0d0d;
  --bg-card: #141414;
  --gold: #c9a36a;
  --gold-light: #e0bf8a;
  --gold-dark: #a07e4a;
  --text: #f5f1ea;
  --text-mute: #9a9590;
  --line: rgba(201, 163, 106, 0.25);
  --line-soft: rgba(255, 255, 255, 0.08);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 60px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === Reveal animation === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(0,0,0,0);
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand img { height: 44px; width: auto; }
.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  line-height: 1;
}
.nav__brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #f5e9d0 70%, #d8b27c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: lowercase;
}
.nav__brand:hover .nav__brand-sub { color: var(--gold-light); }
@media (max-width: 480px) {
  .nav__brand-name { font-size: 18px; }
  .nav__brand-sub { font-size: 12px; }
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav__links a { position: relative; padding: 6px 0; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all .3s ease;
}
.nav__links a:hover::after { left: 0; width: 100%; }

.nav__burger {
  display: none;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: all .3s ease;
}
.nav__burger span:nth-child(1) { width: 24px; }
.nav__burger span:nth-child(2) { width: 18px; margin-left: auto; }
.nav__burger span:nth-child(3) { width: 24px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 24px; }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 24px; }

/* === Hero — чисто видеоблок на весь экран === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.05) contrast(1.05);
  animation: heroZoomFull 32s ease-out infinite alternate;
}
@keyframes heroZoomFull {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Тонкая золотая рамка-окно по краям hero */
.hero__frame {
  position: absolute;
  inset: 32px;
  z-index: 4;
  pointer-events: none;
}
.hero__frame-corner {
  position: absolute;
  width: 32px;
  height: 32px;
}
.hero__frame-corner--tl { top: 0; left: 0; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero__frame-corner--tr { top: 0; right: 0; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero__frame-corner--bl { bottom: 0; left: 0; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero__frame-corner--br { bottom: 0; right: 0; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.64 0 0 0 0 0.41 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Угловые подписи */
.hero__corner {
  position: absolute;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFade 1.4s ease 0.6s forwards;
}
.hero__corner--tl { top: 100px; left: calc(var(--pad-x) + 16px); }
.hero__corner--tr {
  top: 100px;
  right: calc(var(--pad-x) + 16px);
  text-align: right;
  line-height: 1.5;
}
.hero__corner-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-style: italic;
}
.hero__corner-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero__corner-text { color: var(--text-mute); }

@keyframes heroFade {
  to { opacity: 1; }
}

/* === Intro — текстовый блок под видео === */
.intro {
  position: relative;
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.intro__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
  margin: 28px 0 40px;
  max-width: 860px;
  letter-spacing: 0.005em;
}
.intro__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  background: linear-gradient(180deg, #f5e9d0 0%, #d8b27c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro__meta {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  padding: 18px clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
}

/* Eyebrow с одной линией слева */
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
}
.hero__eyebrow span {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.hero__eyebrow p {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  font-weight: 500;
  text-indent: 0.5em;
}

/* Большой заголовок */
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__title-line {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f5e9d0 70%, #d8b27c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 30px rgba(201,163,106,0.25));
}
.hero__title-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}
.hero__title-mark-line {
  display: block;
  width: clamp(50px, 8vw, 90px);
  height: 1px;
  background: var(--gold);
}
.hero__title-mark-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 32px);
  text-transform: lowercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* Таглайн */
.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.25;
  font-weight: 300;
  color: #fff;
  margin: 28px auto 40px;
  max-width: 820px;
  letter-spacing: 0.005em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero__tagline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  background: linear-gradient(180deg, #f5e9d0 0%, #d8b27c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

/* Мини-метрика */
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
  padding: 20px clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.hero__meta-item strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero__meta-item span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}
.hero__meta-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* Метрика-пилюля внизу hero */
.hero__meta-bottom {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  padding: 18px clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Reveal внутри hero */
.hero .reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__content .reveal:nth-child(1) { animation-delay: 0.4s; }
.hero__content .reveal:nth-child(2) { animation-delay: 0.65s; }
.hero__content .reveal:nth-child(3) { animation-delay: 0.85s; }
.hero__meta-bottom.reveal { animation-delay: 1.1s; }
@keyframes heroReveal {
  to { opacity: 1; transform: none; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: heroFade 1.4s ease 1.4s forwards;
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-mute);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--gold-light));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -56px; }
  100% { top: 56px; }
}
.hero__scroll:hover .hero__scroll-text { color: var(--gold); }

@media (max-width: 900px) {
  /* Hero на мобильных — видео целиком, без обрезки */
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    max-height: 70svh;
  }
  .hero__video {
    object-fit: contain;
    background: #000;
  }
  .hero__corner { display: none; }
  .hero__frame { inset: 12px; }
  .hero__frame-corner { width: 22px; height: 22px; }

  /* Скролл-индикатор поднимаем, чтобы не вылез за hero */
  .hero__scroll { bottom: 16px; }
  .hero__scroll-line { height: 36px; }
  .hero__scroll-line::after { top: -36px; height: 36px; }

  /* Intro — компактные отступы */
  .intro { padding: 60px 20px 80px; }
  .intro__title { font-size: clamp(22px, 6vw, 36px); margin: 22px 0 28px; }
  .hero__cta .btn { padding: 14px 24px; font-size: 11px; }
  .intro__meta { margin-top: 32px; padding: 14px 20px; gap: 14px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero {
    aspect-ratio: 4 / 3;
    max-height: 60svh;
  }
  .hero__frame { inset: 10px; }
  .intro { padding: 48px 18px 72px; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  transition: all .3s ease;
  text-align: center;
  line-height: 1;
}
.btn--gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,163,106,0.25);
}
.btn--ghost {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* === Sections === */
.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section + .section { border-top: 1px solid var(--line-soft); }

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.section__head .eyebrow,
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 18px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
}
.section__head .section__title::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}
.section__lead {
  margin-top: 24px;
  font-size: 17px;
  color: var(--text-mute);
  font-weight: 300;
}
.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
  font-weight: 300;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* === Stats === */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 36px 28px;
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* === Projects === */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.project:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.project__img {
  height: 240px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.project__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.project__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--gold);
}
.project__body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
.project h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.project__meta {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.project__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.project__list li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--text);
}
.project__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.project__list li:last-child { border-bottom: 0; }
.project__link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* === Cards (общий стиль для карточек, если понадобится) === */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 36px 28px;
  transition: all .4s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card__num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
  color: #fff;
}
.card p { color: var(--text-mute); font-size: 14px; margin: 0; }

/* === Gallery === */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--line-soft);
  display: block;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover { border-color: var(--gold); }

.gallery__item--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bg-card);
  color: var(--text);
  text-align: center;
  padding: 30px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .4s ease;
}
.gallery__item--cta:hover {
  background: var(--bg);
  color: var(--gold);
}
.gallery__plus {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; }
}

/* === Price grid === */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 28px 26px;
  transition: all .4s ease;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.price-card--accent {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,163,106,0.05), var(--bg-card));
}
.price-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.price-card__head h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.price-card__head span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table td {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:first-child {
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.price-table td:last-child {
  text-align: right;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
}
.price-card__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--text-mute);
  font-style: italic;
}
.price-foot {
  text-align: center;
  margin: 48px 0 0;
  color: var(--text-mute);
}
.price-foot a { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* === Steps === */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.step {
  background: var(--bg-alt);
  padding: 44px 32px;
  position: relative;
}
.step__num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #fff;
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.65;
}

/* === Reviews === */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 36px 32px;
  margin: 0;
  position: relative;
}
.review::before {
  content: '“';
  position: absolute;
  top: -10px; left: 22px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
}
.review blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 24px;
  padding-top: 16px;
}
.review figcaption {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === Contacts === */
.section--contacts { background: var(--bg-alt); }
.contacts {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.contacts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.contacts li span {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.contacts li a {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
}
.contacts li a:hover { color: var(--gold); }

/* === Form === */
.form {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  outline: none;
  transition: border-color .3s ease;
  resize: vertical;
}
.field select { color: var(--text); }
.field select option { background: var(--bg); color: var(--text); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }
.form__note {
  font-size: 12px;
  color: var(--text-mute);
  margin: 0;
  text-align: center;
}
.form__success {
  display: none;
  margin: 0;
  padding: 16px;
  background: rgba(201,163,106,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  text-align: center;
}
.form.is-sent .form__success { display: block; }

/* === Footer === */
.footer {
  background: #050505;
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: flex-start;
  text-align: left;
}
.footer__col { font-size: 13px; line-height: 1.8; }
.footer__col a {
  color: var(--text);
  display: inline-block;
  margin: 2px 0;
}
.footer__col a:hover { color: var(--gold); }
.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.footer__logo {
  height: 44px;
  opacity: 0.85;
  margin-bottom: 14px;
}
.footer__legal-info {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
}
.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
}
.footer__bottom p { margin: 0; }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* === Чекбокс согласия в форме === */
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
  cursor: pointer;
  margin-top: 4px;
}
.form__consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  transition: all .2s ease;
}
.form__consent input[type="checkbox"]:checked {
  background: var(--gold);
}
.form__consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form__consent a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* === Cookie-баннер === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 100;
  width: calc(100% - 40px);
  max-width: 760px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(201,163,106,0.15);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
.cookie-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}
.cookie-banner__title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.cookie-banner a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__actions .btn {
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.cookie-banner.is-hidden {
  transform: translateX(-50%) translateY(160%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    padding: 18px 20px;
    gap: 16px;
  }
  .cookie-banner__actions { flex-direction: column-reverse; }
  .cookie-banner__actions .btn { width: 100%; }
}

/* === Юридические страницы === */
.page-legal { background: var(--bg); }
.legal-page {
  padding: clamp(120px, 14vw, 180px) var(--pad-x) clamp(60px, 8vw, 100px);
}
.legal-page__inner {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
}
.legal-page__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.2;
  color: #fff;
  margin: 14px 0 8px;
  letter-spacing: 0.01em;
}
.legal-page__date {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0 0 48px;
  font-style: italic;
}
.legal-page__inner h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: #fff;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  letter-spacing: 0.01em;
}
.legal-page__inner h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.legal-page__inner p,
.legal-page__inner li {
  font-size: 16px;
  line-height: 1.7;
  margin: 12px 0;
  color: var(--text);
  font-weight: 300;
}
.legal-page__inner ul {
  padding-left: 0;
  list-style: none;
}
.legal-page__inner li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}
.legal-page__inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.legal-page__inner a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,163,106,0.4);
  transition: border-color .2s ease;
}
.legal-page__inner a:hover {
  border-bottom-color: var(--gold);
}
.legal-page__inner strong {
  color: #fff;
  font-weight: 500;
}
.legal-page__inner em {
  color: var(--gold);
  font-style: italic;
  background: rgba(201,163,106,0.08);
  padding: 1px 6px;
  border: 1px dashed rgba(201,163,106,0.4);
}
.legal-page__back {
  margin-top: 48px;
}

/* === Новости === */
.page-news { background: var(--bg); }

.news-hero {
  padding: clamp(140px, 16vw, 200px) var(--pad-x) clamp(40px, 6vw, 60px);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,163,106,0.1) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.news-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 16px 0 24px;
  color: #fff;
}
.news-hero__title::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}
.news-hero__lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-mute);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.news-card__meta time {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.news-card__tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line);
  color: var(--text-mute);
  font-weight: 500;
}
.news-card__tag--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
}
.news-card__actions { margin-top: 24px; }
.news-card__actions--row { display: flex; gap: 12px; flex-wrap: wrap; }

/* === Featured news (главная новость) === */
.news-featured {
  padding: clamp(40px, 5vw, 60px) 0 0;
}
.news-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  scroll-margin-top: 100px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 100px rgba(201,163,106,0.12);
  transition: all .4s ease;
}
.news-featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 120px rgba(201,163,106,0.2);
}
.news-featured__img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  min-height: 100%;
}
.news-featured__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.news-featured__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.news-featured__body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.005em;
}
.news-featured__lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px;
  font-weight: 300;
}
.news-featured__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.news-featured__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.news-featured__icon { font-size: 18px; line-height: 1; }
.news-featured__note {
  font-size: 13px;
  color: var(--gold);
  margin: 4px 0 24px;
  font-style: italic;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .news-featured__card { grid-template-columns: 1fr; }
  .news-featured__img { min-height: 240px; }
  .news-featured__list { grid-template-columns: 1fr; }
}

/* === Сетка остальных новостей === */
.news-list {
  padding: clamp(40px, 5vw, 60px) 0 clamp(60px, 8vw, 100px);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.news-tile {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  scroll-margin-top: 100px;
  transition: all .4s ease;
  overflow: hidden;
}
.news-tile:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.news-tile--accent {
  border-color: rgba(201,163,106,0.4);
  background: linear-gradient(180deg, rgba(201,163,106,0.05), var(--bg-card));
}
.news-tile__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.news-tile__img {
  position: relative;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  overflow: hidden;
}
.news-tile__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.news-tile:hover .news-tile__img {
  transform: scale(1.02);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.news-tile__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(0,0,0,0.75);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.news-tile__badge--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 700;
}
.news-tile__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-tile__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.005em;
}
.news-tile__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
  margin: 0 0 16px;
  font-weight: 300;
  flex: 1;
}
.news-tile__more {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all .3s ease;
}
.news-tile__link:hover .news-tile__more {
  letter-spacing: 0.28em;
}

@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .news-tile__body { padding: 20px 22px 24px; }
  .news-tile__title { font-size: 20px; }
}

.news-cta {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.news-cta__inner {
  max-width: 680px;
  margin: 0 auto;
}
.news-cta__inner .section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}
.news-cta__inner .lead {
  margin: 24px 0 36px;
  color: var(--text-mute);
}
.news-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Страница записи (premium-флоу) === */
.page-zapis { background: var(--bg); }

/* Hero */
.zapis-hero {
  padding: clamp(140px, 16vw, 200px) var(--pad-x) clamp(40px, 6vw, 60px);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,163,106,0.12) 0%, transparent 60%),
    var(--bg);
}
.zapis-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7.5vw, 88px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 16px 0 28px;
  color: #fff;
}
.zapis-hero__title::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}
.zapis-hero__lead {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-mute);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
}

/* Layout: основной контент + sticky-боковина с ticket */
.zapis-main {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 120px);
}
.zapis-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.zapis-aside { grid-column: 2; grid-row: 1; position: sticky; top: 100px; }
.zapis-flow  { grid-column: 1; grid-row: 1; }

/* === Ticket: golden invitation card === */
.zapis-ticket {
  background: linear-gradient(165deg, #14110b 0%, #0a0a0a 100%);
  border: 1px solid var(--gold);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 80px rgba(201,163,106,0.08);
}
.zapis-ticket::before,
.zapis-ticket::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.zapis-ticket::before { left: -10px; top: 50%; transform: translateY(-50%); }
.zapis-ticket::after  { right: -10px; top: 50%; transform: translateY(-50%); }
.zapis-ticket__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.zapis-ticket__brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}
.zapis-ticket__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}
.zapis-ticket__divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.zapis-ticket__divider--dashed {
  background: none;
  border-top: 1px dashed var(--line);
}
.zapis-ticket__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}
.zapis-ticket__row:last-of-type { border-bottom: 0; }
.zapis-ticket__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
  flex-shrink: 0;
}
.zapis-ticket__value {
  font-family: var(--serif);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  text-align: right;
  line-height: 1.4;
}
.zapis-ticket__value--gold { color: var(--gold); }
.zapis-ticket__note {
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin: 12px 0 0;
  font-style: italic;
  line-height: 1.5;
}
.zapis-success {
  display: none;
  margin-top: 16px;
  padding: 14px 14px;
  background: rgba(201,163,106,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}
.zapis-success.is-visible { display: block; }

/* === Flow column === */
.zapis-flow { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 80px); }

.zapis-step__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.zapis-step__index {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.85;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  flex-shrink: 0;
}
.zapis-step__kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
  font-weight: 500;
}
.zapis-step__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}

/* === Calendar === */
.zapis-cal {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: clamp(20px, 3vw, 36px);
}
.zapis-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.zapis-cal__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
  font-family: var(--serif);
  font-weight: 300;
}
.zapis-cal__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,163,106,0.08);
}
.zapis-cal__btn--disabled,
.zapis-cal__btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.zapis-cal__month {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
.zapis-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 12px;
}
.zapis-cal__weekdays span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 8px 0;
  font-weight: 500;
}
.zapis-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-day {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cal-day--empty {
  cursor: default;
  pointer-events: none;
}
.cal-day--available {
  color: var(--text);
  border-color: var(--line-soft);
}
.cal-day--available:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,163,106,0.08);
}
.cal-day--today {
  font-weight: 500;
}
.cal-day--today::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day--selected,
.cal-day--selected:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #000 !important;
  font-weight: 600;
}
.cal-day--disabled {
  color: rgba(154,149,144,0.25);
  cursor: not-allowed;
  background: transparent;
}

/* === Times === */
.zapis-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.zapis-times__empty {
  grid-column: 1/-1;
  font-size: 15px;
  color: var(--text-mute);
  font-style: italic;
  margin: 0;
  padding: 24px 0;
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed var(--line-soft);
}
.zapis-time {
  padding: 16px 12px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  letter-spacing: 0.04em;
}
.zapis-time:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,163,106,0.06);
}
.zapis-time.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 500;
}

/* === Formats === */
.zapis-formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.zapis-format {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
}
.zapis-format:hover { border-color: var(--gold); }
.zapis-format input { display: none; }
.zapis-format__check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s ease;
}
.zapis-format:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,163,106,0.06), var(--bg-card));
}
.zapis-format:has(input:checked) .zapis-format__check {
  border-color: var(--gold);
  background: var(--gold);
}
.zapis-format:has(input:checked) .zapis-format__check::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #000;
}
.zapis-format__icon {
  font-size: 28px;
  line-height: 1;
  filter: grayscale(0.1);
}
.zapis-format__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.zapis-format__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.zapis-format__sub {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}

/* === Form === */
.zapis-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.zapis-field { display: flex; flex-direction: column; gap: 8px; }
.zapis-field--full { grid-column: 1 / -1; }
.zapis-field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.zapis-field input,
.zapis-field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  outline: none;
  transition: border-color .25s ease;
}
.zapis-field input::placeholder { color: var(--text-mute); }
.zapis-field input:focus,
.zapis-field select:focus { border-bottom-color: var(--gold); }
.zapis-field select option { background: var(--bg-card); color: var(--text); }
.zapis-consent {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

/* === Инфо-блок === */
.zapis-info {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
}
.zapis-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
}
.zapis-info__item {
  text-align: center;
  padding: 24px 16px;
}
.zapis-info__num {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}
.zapis-info__item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.zapis-info__item p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
  max-width: 240px;
  margin-inline: auto;
}

/* === Адаптив === */
@media (max-width: 1100px) {
  .zapis-wrap { grid-template-columns: 1fr; }
  .zapis-aside { position: static; order: 2; max-width: 480px; margin: 0 auto; width: 100%; }
  .zapis-flow { order: 1; }
}
@media (max-width: 768px) {
  .zapis-step__head { gap: 14px; }
  .zapis-step__index { font-size: 44px; }
  .zapis-form { grid-template-columns: 1fr; }
  .zapis-info__grid { grid-template-columns: 1fr; gap: 24px; }
  .zapis-format { grid-template-columns: auto 1fr; padding: 18px 20px; }
  .zapis-format__icon { display: none; }
  .zapis-times { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
  .zapis-time { padding: 14px 8px; font-size: 16px; }
}

/* === 404 === */
.page-404 { background: var(--bg); }
.not-found {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--pad-x) 80px;
  text-align: center;
}
.not-found__inner { max-width: 720px; }
.not-found__code {
  font-family: var(--serif);
  font-size: clamp(120px, 22vw, 240px);
  line-height: 1;
  font-weight: 300;
  background: linear-gradient(180deg, #ffffff 0%, #f5e9d0 60%, #c9a36a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 24px 0;
  letter-spacing: 0.04em;
}
.not-found__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: 0.005em;
}
.not-found__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mute);
  margin: 0 0 40px;
}
.not-found__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .projects { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 24px;
    border-left: 1px solid var(--line-soft);
    transition: right .4s ease;
    z-index: 60;
  }
  .nav__links.is-open { right: 0; }
  .nav__links a { font-size: 16px; }
  .nav__burger { display: flex; z-index: 70; position: relative; }

  .two-col { grid-template-columns: 1fr; }
  .projects { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .form { padding: 32px 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .contacts li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contacts li a { font-size: 18px; }

  .hero__cta .btn { padding: 14px 28px; font-size: 12px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
