/* ═══════════ RESET ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0A0A0A;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --accent: #D6B783;
  --accent-soft: #E6CEA2;
  --cream: #f3ece0;
  --muted: #8A8784;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.14);
  /* Fustat for Latin headlines, Manrope for Cyrillic (same geometric family feel) */
  --display: 'Fustat', 'Manrope', -apple-system, sans-serif;
}

/* ═══════════ DARK STONE TEXTURED BACKGROUND ═══════════ */
.bg-stone {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #0A0A0A;
  background-image:
    /* soft warm glow top-left */
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(214,183,131,0.06), transparent 55%),
    /* cool glow bottom-right */
    radial-gradient(ellipse 60% 60% at 90% 95%, rgba(214,183,131,0.04), transparent 55%),
    /* marbled veining — large slow waves */
    radial-gradient(ellipse 120% 40% at 30% 40%, rgba(40,32,22,0.55), transparent 60%),
    radial-gradient(ellipse 80% 30% at 75% 60%, rgba(30,28,22,0.45), transparent 65%),
    radial-gradient(ellipse 40% 20% at 55% 80%, rgba(50,42,28,0.3), transparent 70%),
    /* base dark */
    linear-gradient(180deg, #0d0c0a 0%, #0a0908 100%);
  background-size: cover;
}
/* ::before и ::after с feTurbulence + mix-blend-mode были сняты —
   это два SVG-шейдера на fixed-фоне, которые композитор пересчитывал
   на каждый кадр скролла (главный источник лагов на длинной странице).
   Если Боссу нужна каменная текстура — запечем как статичный PNG
   и подменим background-image, но runtime-фильтр НЕ возвращаем. */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

/* shared */
.eyebrow {
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.eyebrow--muted { color: var(--muted); }
.eyebrow-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn:hover { border-color: #fff; }
.btn--sm { padding: 11px 22px; font-size: 11px; }
.btn--lg { padding: 18px 28px 18px 32px; font-size: 12px; }
.btn--light {
  background: var(--cream);
  color: #0A0A0A;
  border-color: var(--cream);
}
.btn--light:hover { background: #fff; border-color: #fff; }
.btn--gold {
  background: var(--accent);
  color: #0A0A0A;
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(214,183,131,0.28);
}
.btn--gold:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  margin-left: 4px;
  margin-right: -10px;
  border-radius: 50%;
  background: #0A0A0A;
  color: var(--cream);
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}

/* ═══════════ HEADER ═══════════ */
.header {
  position: relative;
  z-index: 10;
  background: #0a0a0a;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}
.logo__text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 40px;
  font: 400 13px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}
.nav a:hover { color: #fff; }
.header__right { display: flex; align-items: center; gap: 24px; }
.phone {
  font: 500 13px/1 'Inter', sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  background: #0a0a0a;
  padding: 60px 0 120px;
}
.hero__inner { position: relative; }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 50px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* LEFT: copy */
.hero__copy { padding-top: 8px; }
.hero__title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(60px, 6.4vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
}
.title__line { display: block; }
.title__line--1 {
  font-weight: 200;
}
.title__line--2 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  text-transform: none;
  font-size: 1.05em;
  letter-spacing: -0.02em;
  padding-left: 0.22em;
  line-height: 1.02;
}
.title__line--3 {
  font-weight: 200;
  color: rgba(255,255,255,0.95);
}

/* price callout — row under headline, with even padding */
.hero__price {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 29px 32px 27px;
  border: 1px solid var(--border-strong);
  border-left: 2px solid var(--accent);
  background: rgba(16,14,11,0.55);
  backdrop-filter: blur(8px);
  max-width: fit-content;
}
.hero__price-from {
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.hero__price-val {
  font-family: var(--display);
  font-weight: 200;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  align-self: center;
}
.hero__price-unit {
  font-family: var(--display);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  align-self: center;
}
.hero__price-sep {
  width: 1px;
  height: 52px;
  background: var(--border-strong);
  margin: 0 4px;
  align-self: center;
}
.hero__price-note {
  font: 500 10px/1.55 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  align-self: center;
}

.hero__sub {
  margin-top: 32px;
  font: 400 14px/1.65 'Inter', sans-serif;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
}
.hero__ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* RIGHT: split photo triptych */
.hero__split {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.9fr;
  grid-template-rows: 1fr;
  gap: 14px;
  height: 680px;
}
.split {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #1a1a1a;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.split__img {
  position: absolute;
  top: 0;
  height: 100%;
  background-image: url('photos/bilal-mansuri-1E0Zl5w-_8E-unsplash.jpg');
  background-repeat: no-repeat;
  background-size: auto 100%;
  filter: brightness(0.7) contrast(1.15) saturate(0.85);
}

/* staggered triptych */
.split--1 {
  transform: translateY(60px);
  height: calc(100% - 60px);
}
.split--1 .split__img {
  left: 0;
  width: 340%;
  background-position: 2% center;
}
.split--2 {
  transform: translateY(-8px);
  height: 100%;
}
.split--2 .split__img {
  left: -88%;
  width: 260%;
  background-position: 50% center;
}
.split--3 {
  transform: translateY(100px);
  height: calc(100% - 100px);
}
.split--3 .split__img {
  left: -240%;
  width: 340%;
  background-position: 98% center;
}

.split::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, transparent 35%, rgba(10,10,10,0.65) 100%);
  pointer-events: none;
}
/* pulsing video play button (center of middle triptych panel) */
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}
.play__btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 20px 48px rgba(0,0,0,0.55),
    0 0 60px 10px rgba(214,183,131,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.4);
  transition: transform 0.25s ease;
}
.play__btn svg {
  margin-left: 3px; /* optical center for triangle */
}
.play__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(214,183,131,0.7);
  animation: play-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.play__ring--2 {
  animation-delay: 1.1s;
}
.play:hover .play__btn { transform: scale(1.06); }
@keyframes play-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  80% {
    transform: scale(1.9);
    opacity: 0;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.split__badge {
  position: absolute;
  left: -40px;
  bottom: 140px;
  padding: 26px 28px;
  background: var(--cream);
  color: #0A0A0A;
  border-radius: 2px;
  min-width: 220px;
  z-index: 4;
  box-shadow: 0 40px 60px rgba(0,0,0,0.55);
}
.split__badge-label {
  display: block;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A6D3A;
  margin-bottom: 12px;
}
.split__badge-value {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #0A0A0A;
}
.split__badge-value i {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #8A6D3A;
}
.split__badge-foot {
  display: block;
  margin-top: 14px;
  font: 400 11px/1 'Inter', sans-serif;
  color: rgba(10,10,10,0.6);
}

/* ═══════════ STATS ═══════════ */
.stats {
  position: relative;
  background: #0a0a0a;
  padding: 90px 0 140px;
  border-top: 1px solid var(--border);
}
.stats::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,183,131,0.4), transparent);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.stat {
  position: relative;
  padding: 56px 36px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 380px;
}
.stat + .stat {
  padding-left: 40px;
  border-left: 1px solid var(--border-strong);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.stat + .stat::before { left: 40px; }

.stat__num {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(140px, 15vw, 240px);
  line-height: 0.84;
  letter-spacing: -0.06em;
  color: var(--accent);
  display: block;
  margin-top: 18px;
  margin-bottom: 22px;
}
.stat__num em {
  font-style: normal;
  font-weight: 200;
}
.stat__plus {
  font-size: 0.48em !important;
  vertical-align: 0.7em;
  padding-left: 0.02em;
  font-weight: 200 !important;
}
.stat__pct {
  font-size: 0.52em !important;
  vertical-align: 0.32em;
  padding-left: 0.04em;
  font-weight: 200 !important;
}

.stat__unit {
  display: block;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  padding-top: 6px;
}
.stat__title {
  display: block;
  font: 400 15px/1.5 'Inter', sans-serif;
  letter-spacing: 0.005em;
  color: #fff;
  margin-top: auto;
  padding-bottom: 8px;
}

/* ═══════════ QUIZ (CREAM PLATE ON DARK) ═══════════ */
.quiz {
  position: relative;
  padding: 140px 0 160px;
  overflow: hidden;
  isolation: isolate;
}
.quiz__bg {
  position: absolute;
  inset: -40px;
  z-index: -2;
  /* Baked-blur версия: эффекты blur+brightness+saturate запечены в файл,
     CSS-filter убран → GPU больше не гонит runtime-blur. */
  background-image: url('photos/aleksandra-dementeva-AAm5j1pEIl4-unsplash-baked.jpg');
  background-size: cover;
  background-position: center 30%;
}
.quiz__bg-tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(214,183,131,0.08), transparent 60%),
    linear-gradient(180deg, rgba(10,9,7,0.72) 0%, rgba(10,9,7,0.82) 100%);
  pointer-events: none;
}

.quiz__plate {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(180deg, #faf5ea 0%, #f3ece0 55%, #ede3d2 100%);
  border-radius: 48px;
  padding: 72px 80px 68px;
  box-shadow:
    0 80px 140px rgba(0,0,0,0.55),
    0 30px 60px rgba(60,40,15,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(120,85,40,0.1);
  overflow: hidden;
  color: #1a140c;
}
.quiz__orn {
  position: absolute;
  width: 320px;
  height: 320px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64'><path d='M32 6 L58 32 L32 58 L6 32 Z' fill='none' stroke='%238A6D3A' stroke-width='0.7'/><circle cx='32' cy='32' r='1.5' fill='%238A6D3A'/></svg>");
  background-size: 56px 56px;
  opacity: 0.14;
  pointer-events: none;
}
.quiz__orn--tl {
  top: -20px;
  left: -20px;
  mask-image: radial-gradient(ellipse 100% 100% at 0% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 0% 0%, #000 0%, transparent 70%);
}
.quiz__orn--br {
  bottom: -20px;
  right: -20px;
  mask-image: radial-gradient(ellipse 100% 100% at 100% 100%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 100%, #000 0%, transparent 70%);
}

.quiz__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.quiz__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  max-width: 560px;
}
.eyebrow--ink { color: #1a140c; }
.eyebrow--ink-muted { color: rgba(26,20,12,0.52); }
.eyebrow-line--ink { background: rgba(26,20,12,0.18); }

.quiz__step {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
}
.quiz__step-lbl {
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A6D3A;
  white-space: nowrap;
}
.quiz__step-bar {
  flex: 1;
  display: block;
  height: 2px;
  background: rgba(26,20,12,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.quiz__step-bar-fill {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--accent);
}

.quiz__title {
  position: relative;
  margin-top: 48px;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(52px, 5.2vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #0f0a04;
}
.qt__row { display: block; }
.qt__row em {
  font-style: italic;
  font-weight: 500;
  color: #8A6D3A;
  font-size: 1em;
  letter-spacing: -0.02em;
}

.quiz__sub {
  position: relative;
  margin-top: 28px;
  max-width: 560px;
  font: 400 15px/1.65 'Inter', sans-serif;
  color: rgba(26,20,12,0.65);
}

.quiz__q {
  position: relative;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(26,20,12,0.12);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.quiz__q-lbl {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: #1a140c;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.quiz__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.qopt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: rgba(26,20,12,0.04);
  border: 1px solid rgba(26,20,12,0.14);
  border-radius: 999px;
  color: rgba(26,20,12,0.82);
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.qopt:hover {
  background: rgba(26,20,12,0.08);
  border-color: rgba(26,20,12,0.25);
  color: #1a140c;
}
.qopt__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(26,20,12,0.28);
  transition: all .2s ease;
}
.qopt--on {
  background: #1a140c;
  border-color: #1a140c;
  color: #f3ece0;
}
.qopt--on .qopt__dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214,183,131,0.3);
}

.quiz__foot {
  position: relative;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(26,20,12,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.quiz__trust {
  display: flex;
  align-items: center;
  gap: 48px;
}
.qtr { position: relative; }
.qtr__num {
  display: block;
  font-family: var(--display);
  font-weight: 200;
  font-size: 54px;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #0f0a04;
}
.qtr__num i {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  vertical-align: 0.5em;
  color: rgba(26,20,12,0.5);
}
.qtr__lbl {
  display: block;
  margin-top: 10px;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,20,12,0.55);
}

.quiz__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 26px 44px;
  background: var(--accent);
  color: #0A0A0A;
  border: 0;
  border-radius: 999px;
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow:
    0 20px 40px rgba(120,85,35,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.35);
  white-space: nowrap;
}
.quiz__cta:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.quiz__cta-arrow {
  font-size: 16px;
  margin-top: -1px;
}

/* ═══════════ ABOUT ═══════════ */
.about {
  position: relative;
  padding: 140px 0 160px;
}
.about::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,183,131,0.4), transparent);
}

.about__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 80px;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: stretch;
}

/* photo column — 3-photo editorial collage */
.about__photo {
  position: relative;
  height: 100%;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 0.95fr 1.05fr;
  column-gap: 14px;
  row-gap: 14px;
}
.cphoto {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #151412;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.cphoto::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, transparent 35%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.cphoto__img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.72) contrast(1.12) saturate(0.88);
  transition: transform 0.6s ease;
}
.cphoto:hover .cphoto__img { transform: scale(1.04); }

.cphoto--main {
  grid-column: 1;
  grid-row: 1 / 3;
  box-shadow: 0 60px 110px rgba(0,0,0,0.6);
  z-index: 2;
}
.cphoto--main .cphoto__img {
  background-image: url('photos/aleksandra-dementeva-UBdmZfCSLuY-unsplash.jpg');
  background-position: 55% center;
}
.cphoto--top {
  grid-column: 2;
  grid-row: 1;
  transform: translateY(44px);
  z-index: 1;
}
.cphoto--top .cphoto__img {
  background-image: url('photos/alex-tyson-I2GLUBq59Z4-unsplash.jpg');
  background-position: center;
}
.cphoto--bot {
  grid-column: 2;
  grid-row: 2;
  transform: translateY(-18px);
  height: calc(100% + 26px);
  z-index: 1;
}
.cphoto--bot .cphoto__img {
  background-image: url('photos/aleksandra-dementeva-qpi0r7gs3RM-unsplash.jpg');
  background-position: center;
}

/* location tags on collage */
.cphoto__tag {
  position: absolute;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10,9,7,0.78);
  backdrop-filter: blur(6px);
  padding: 9px 14px;
  border: 1px solid rgba(214,183,131,0.3);
  border-radius: 999px;
  z-index: 5;
  pointer-events: none;
}
.cphoto__tag--1 {
  top: 28px;
  left: 28px;
}
.cphoto__tag--2 {
  bottom: 28px;
  right: 36px;
}
.about__chip {
  position: absolute;
  left: -28px;
  bottom: 70px;
  padding: 26px 30px 24px;
  background: var(--cream);
  color: #0A0A0A;
  border-radius: 2px;
  min-width: 200px;
  z-index: 6;
  box-shadow: 0 40px 70px rgba(0,0,0,0.6);
}
.about__chip::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}
.about__chip-num {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: 60px;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #0A0A0A;
}
.about__chip-num i {
  font-style: normal;
  font-weight: 300;
  font-size: 26px;
  color: #8A6D3A;
  padding-left: 0.05em;
}
.about__chip-lbl {
  display: block;
  margin-top: 14px;
  font: 500 10px/1.4 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
}

/* copy column */
.about__copy {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.about__title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
}
.at__line { display: block; }
.at__line--soft {
  color: rgba(255,255,255,0.55);
  font-weight: 200;
  padding-left: 0.1em;
}
.at__line--accent {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  font-size: 1.04em;
  letter-spacing: -0.02em;
  padding-left: 0.18em;
  margin-top: -0.08em;
  margin-bottom: 0.08em;
}
.about__body {
  margin-top: 40px;
  max-width: 540px;
  font: 400 15px/1.7 'Inter', sans-serif;
  color: rgba(255,255,255,0.72);
}
.about__body + .about__body { margin-top: 20px; }

.about__specs {
  list-style: none;
  margin: 48px 0 0;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about__specs li {
  padding: 11px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.about__ctas {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══════════ SERVICES ═══════════ */
.services {
  position: relative;
  padding: 140px 0 160px;
  border-top: 1px solid var(--border);
}
.services::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,183,131,0.4), transparent);
}
.services__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 48px;
}
.services__title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 64px;
  max-width: 1100px;
}
.services__title .st__line { display: block; }
.services__title .st__line--accent {
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  padding-left: 0.22em;
  font-size: 1.04em;
  letter-spacing: -0.02em;
  margin-top: -0.08em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 340px;
  gap: 14px;
}

/* shared cell */
.scell {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 28px;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}
a.scell { cursor: pointer; }
a.scell:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 80px rgba(0,0,0,0.35);
}

/* card contents */
.scell__patt {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64'><path d='M32 4 L60 32 L32 60 L4 32 Z' fill='none' stroke='%23000' stroke-width='0.6'/><circle cx='32' cy='32' r='1.2' fill='%23000'/></svg>");
  background-size: 58px 58px;
  opacity: 0.08;
  /* mix-blend-mode снят — пере-композитинг при скролле, на 8 ячейках накапливается */
}
.scell__num {
  position: absolute;
  top: 28px;
  right: 30px;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.scell__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid currentColor;
  border-radius: 50%;
  margin-bottom: auto;
  color: inherit;
}
.scell__body {
  margin-top: 24px;
}
.scell__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.scell__sub {
  margin-top: 12px;
  font: 400 13px/1.55 'Inter', sans-serif;
  max-width: 270px;
  opacity: 0.72;
}
.scell__foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  border-color: rgba(10,8,4,0.18);
}
.scell__price {
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.scell__price--free {
  text-transform: uppercase;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.85;
}
.scell__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}
a.scell:hover .scell__arrow {
  transform: translate(3px, -3px);
}

/* gold variant */
.scell--gold {
  background: linear-gradient(158deg, #dfbb86 0%, #d1ae76 60%, #c49d5e 100%);
  color: #1a140c;
  box-shadow:
    0 30px 50px rgba(80,55,20,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}
.scell--gold .scell__num { color: rgba(26,20,12,0.55); }
.scell--gold .scell__ico { border-color: rgba(26,20,12,0.35); }
.scell--gold .scell__sub { color: rgba(26,20,12,0.72); }
.scell--gold .scell__foot { border-color: rgba(26,20,12,0.2); }
.scell--gold .scell__arrow { border-color: rgba(26,20,12,0.35); }
a.scell--gold:hover .scell__arrow {
  background: #1a140c;
  color: var(--cream);
  border-color: #1a140c;
}

/* cream variant */
.scell--cream {
  background: linear-gradient(160deg, #faf5ea 0%, #f1e7d1 60%, #e7dcc0 100%);
  color: #1a140c;
  box-shadow:
    0 30px 50px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.5);
}
.scell--cream .scell__num { color: rgba(26,20,12,0.5); }
.scell--cream .scell__ico { border-color: rgba(26,20,12,0.3); }
.scell--cream .scell__sub { color: rgba(26,20,12,0.68); }
.scell--cream .scell__foot { border-color: rgba(26,20,12,0.15); }
.scell--cream .scell__arrow { border-color: rgba(26,20,12,0.3); }
a.scell--cream:hover .scell__arrow {
  background: var(--accent);
  color: #1a140c;
  border-color: var(--accent);
}

/* word cell (dark with big label) */
.scell--word {
  background: linear-gradient(160deg, #141210 0%, #0a0908 100%);
  color: var(--cream);
  padding: 34px 32px 30px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  justify-content: space-between;
}
.scell--word::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.scell__tag {
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.scell__word {
  font-family: var(--display);
  font-weight: 200;
  font-size: 82px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #fff;
  margin: 0;
}
.scell__word-foot {
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

/* quote cell (dark) */
.scell--quote {
  background: linear-gradient(160deg, #141210 0%, #0a0908 100%);
  color: #fff;
  padding: 34px 32px 30px;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.scell--quote::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.scell__quote-mark {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 90px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: -8px;
}
.scell__quote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
}
.scell__quote-foot {
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ═══════════ STAGES (HOW IT WORKS) ═══════════ */
.stages {
  position: relative;
  padding: 150px 0 150px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.stages__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('photos/adam-jador-gkHcHgD6we8-unsplash.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.42) saturate(0.88) contrast(1.05);
}
.stages__vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 42%, transparent 0%, transparent 35%, rgba(10,9,7,0.55) 75%, rgba(10,9,7,0.85) 100%),
    radial-gradient(ellipse 90% 35% at 50% 10%, rgba(214,183,131,0.12), transparent 60%),
    linear-gradient(180deg, rgba(10,9,7,0.35) 0%, rgba(10,9,7,0.25) 40%, rgba(10,9,7,0.55) 100%);
}
.stages__grain {
  /* SVG feTurbulence + mix-blend-mode на этой секции тоже сняты —
     это ещё один шейдер, который дублировал работу .bg-stone */
  display: none;
}
.stages__inner {
  position: relative;
  z-index: 2;
}

.stages__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 44px;
  text-align: left;
}

.stages__title {
  display: block;
  margin-bottom: 20px;
}
.sth__small {
  display: block;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.sth__big {
  display: block;
  max-width: 1060px;
  margin: 0 auto;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(56px, 6.0vw, 96px);
  line-height: 1.02;
  letter-spacing: 0.015em;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}
.sth__gold {
  color: var(--accent);
}

/* timeline row */
.stages__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
  padding: 70px 20px 40px;
  align-items: start;
}
.stages__line { display: none; }
.stage:nth-child(odd) { margin-top: 0; }
.stage:nth-child(even) { margin-top: 56px; }

.stage:nth-child(odd):not(:last-child)::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -70px;
  width: 110px;
  height: 100px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 100' fill='none'><path d='M6 18 C 42 18, 68 82, 104 82' stroke='%23d6b783' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 10px rgba(214,183,131,0.45));
  z-index: 4;
  pointer-events: none;
}

.stage:nth-child(even):not(:last-child)::after {
  content: "";
  position: absolute;
  top: -68px;
  right: -70px;
  width: 110px;
  height: 100px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 100' fill='none'><path d='M6 82 C 42 82, 68 18, 104 18' stroke='%23d6b783' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 10px rgba(214,183,131,0.45));
  z-index: 4;
  pointer-events: none;
}

.stage {
  position: relative;
  padding: 78px 22px 32px;
  text-align: center;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.025) 100%);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(214,183,131,0.28);
  border-radius: 6px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
  min-height: 260px;
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(214,183,131,0.05), transparent 40%);
  pointer-events: none;
}
.stage__num { display: none; }
.stage__ring {
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, #fffaf0 0%, #f6ecd4 62%, #ead9b3 100%);
  border: 1.5px solid rgba(214,183,131,0.9);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.55),
    0 0 0 8px rgba(10,9,7,0.55),
    0 0 70px rgba(214,183,131,0.35),
    inset 0 2px 0 rgba(255,255,255,0.95),
    inset 0 -3px 8px rgba(120,85,35,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.stage__ring::before {
  content: none;
}
.stage__ring-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  color: #1a140c;
}
.stage__ring-inner svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.15;
}

.stage__title {
  position: relative;
  margin-top: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--accent);
}
.stage__sub {
  position: relative;
  margin: 14px auto 0;
  font: 400 12px/1.6 'Inter', sans-serif;
  color: rgba(255,255,255,0.78);
  max-width: 180px;
}

.stages__foot {
  margin-top: 16px;
  padding-top: 64px;
  border-top: 1px solid rgba(214,183,131,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}
.stages__foot--center {
  margin-top: 20px;
  justify-content: center;
  text-align: center;
}
.stages__foot-num {
  display: block;
  font-family: var(--display);
  font-weight: 200;
  font-size: 72px;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.stages__foot-num i {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  vertical-align: 0.5em;
  color: rgba(255,255,255,0.55);
}
.stages__foot-lbl {
  display: block;
  margin-top: 12px;
  font: 500 10px/1.5 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =====================================================
   08. PORTFOLIO
   ===================================================== */
.portfolio {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 140px 0 150px;
  overflow: hidden;
}
.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(214,183,131,0.12), transparent 65%),
    radial-gradient(900px 600px at 50% 110%, rgba(214,183,131,0.08), transparent 70%);
  pointer-events: none;
}
.portfolio__wrap {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* head */
.portfolio__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  margin-bottom: 56px;
}
.portfolio__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.portfolio__meta .eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: rgba(214,183,131,0.45);
}
.portfolio__title {
  margin: 0;
}
.pft__small {
  display: block;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.pft__big {
  display: block;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(56px, 6.0vw, 96px);
  line-height: 1.02;
  letter-spacing: 0.015em;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}
.pft__gold { color: var(--accent); }

/* tabs */
.portfolio__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
}
.pf-tab {
  appearance: none;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 12px 22px;
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.pf-tab:hover {
  color: #fff;
  border-color: rgba(214,183,131,0.5);
}
.pf-tab.is-active {
  background: var(--accent);
  color: #1a140c;
  border-color: var(--accent);
}

/* stage (carousel row) */
.portfolio__stage {
  display: grid;
  grid-template-columns: 0.95fr 0.95fr 1.9fr 0.95fr 0.95fr;
  gap: 18px;
  align-items: center;
}

/* card base */
.pf-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: pointer;
}
.pf-card__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 0;
}
.pf-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.88) 100%);
  z-index: 1;
}
.pf-card:hover .pf-card__photo { transform: scale(1.05); }
.pf-card:hover { box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }

/* side cards (narrow) */
.pf-card--side {
  aspect-ratio: 0.62 / 1;
  height: 520px;
}
.pf-card--side .pf-card__tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font: 500 9px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  background: rgba(20,20,20,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.pf-card__foot {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  z-index: 2;
  padding: 0 22px;
  text-align: center;
}
.pf-card__name {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 6px;
}
.pf-card__city {
  display: block;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214,183,131,0.85);
}

/* main card (center, bigger) */
.pf-card--main {
  height: 600px;
  border: 1px solid rgba(214,183,131,0.4);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(214,183,131,0.1);
}
.pf-card--main::after {
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.95) 100%);
}
.pf-card--main .pf-card__tag {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 2;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: rgba(214,183,131,0.95);
  color: #1a140c;
  border-radius: 999px;
}
.pf-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 36px 34px 34px;
  text-align: center;
}
.pf-card__title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: #fff;
  white-space: normal;
  overflow-wrap: break-word;
}
.pf-card__sub {
  margin: 0 auto 22px;
  max-width: 340px;
  font: 400 13px/1.65 'Inter', sans-serif;
  color: rgba(255,255,255,0.72);
}
.pf-card__stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(214,183,131,0.22);
}
.pf-card__stats span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pf-card__stats strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.pf-card__stats em {
  font-style: normal;
  font: 500 9px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* foot */
.portfolio__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-top: 64px;
}
.portfolio__dots {
  display: flex;
  gap: 10px;
}
.pf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.pf-dot.is-active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(214,183,131,0.55);
  padding: 18px 32px;
  border-radius: 999px;
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--ghost:hover {
  background: var(--accent);
  color: #1a140c;
}

/* =====================================================
   09. BEFORE / AFTER
   ===================================================== */
.ba {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 140px 0 150px;
  overflow: hidden;
}
.ba::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(214,183,131,0.08), transparent 65%);
  pointer-events: none;
}
.ba__wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* head */
.ba__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  margin-bottom: 48px;
}
.ba__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ba__meta .eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: rgba(214,183,131,0.45);
}
.ba__title { margin: 0; }
.bat__big {
  display: block;
  max-width: 1060px;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: 1.02;
  letter-spacing: 0.015em;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}
.bat__gold { color: var(--accent); }

/* tabs */
.ba__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.ba-tab {
  appearance: none;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 13px 24px;
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.ba-tab:hover {
  color: #fff;
  border-color: rgba(214,183,131,0.5);
}
.ba-tab.is-active {
  background: var(--accent);
  color: #1a140c;
  border-color: var(--accent);
}

/* slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 18px;
  overflow: hidden;
  user-select: none;
  border: 1px solid rgba(214,183,131,0.25);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9);
  --pos: 50%;
}
.ba-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-layer--before {
  filter: grayscale(0.9) brightness(0.55) contrast(1.05);
}
.ba-layer--after {
  clip-path: inset(0 0 0 var(--pos));
}

/* labels */
.ba-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 10px 16px;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  z-index: 3;
}
.ba-label--before { left: -8px; }
.ba-label--after { right: -8px; }

/* handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 86px;
  margin-left: -43px;
  z-index: 4;
  cursor: ew-resize;
  touch-action: none;
}
.ba-handle__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 0 24px rgba(255,255,255,0.35), 0 0 2px rgba(0,0,0,0.6);
}
.ba-handle__btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #1a140c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.5),
    0 0 0 8px rgba(255,255,255,0.08),
    0 0 0 1px rgba(214,183,131,0.4) inset;
  transition: transform 0.25s ease;
  pointer-events: none;
}
.ba-handle:hover .ba-handle__btn,
.ba-slider.is-dragging .ba-handle__btn {
  transform: translateY(-50%) scale(1.06);
}
.ba-handle__btn em {
  font-style: normal;
  font: 600 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a140c;
  margin-top: 2px;
}

/* foot */
.ba__foot {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

/* =====================================================
   10. REALTORS (mockup presentation)
   ===================================================== */
.realtors {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 150px 0 160px;
  overflow: hidden;
}
.realtors::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 85% 30%, rgba(214,183,131,0.12), transparent 60%),
    radial-gradient(700px 500px at 15% 80%, rgba(214,183,131,0.06), transparent 65%);
  pointer-events: none;
}
.realtors__wrap {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

/* left text */
.realtors__text {
  position: relative;
}
.realtors__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}
.realtors__meta .eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: rgba(214,183,131,0.45);
}
.realtors__title {
  margin: 0 0 28px;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(44px, 4.2vw, 64px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 620px;
}
.rt__gold { color: var(--accent); }
.realtors__body {
  margin: 0 0 32px;
  max-width: 520px;
  font: 400 15px/1.7 'Inter', sans-serif;
  color: rgba(255,255,255,0.72);
}
.realtors__list {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.realtors__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 13px/1.4 'Inter', sans-serif;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.rt-bullet {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(214,183,131,0.18);
}

/* =============== MOCKUP =============== */
.realtors__mockup {
  position: relative;
  height: 640px;
  perspective: 2000px;
}

/* base doc card */
.doc {
  position: absolute;
  background: #131312;
  border: 1px solid rgba(214,183,131,0.22);
  border-radius: 14px;
  box-shadow:
    0 40px 100px -30px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.03);
  color: #fff;
  overflow: hidden;
}

/* back page */
.doc--back {
  width: 300px;
  height: 420px;
  top: 120px;
  right: -30px;
  transform: rotate(9deg);
  background: #16140f;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0.85;
}
.doc__thumb {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  filter: grayscale(0.2) brightness(0.9);
}
.doc__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.doc__lines span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
}
.doc__pn {
  margin-top: auto;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(214,183,131,0.6);
  align-self: center;
}

/* middle page */
.doc--mid {
  width: 340px;
  height: 460px;
  top: 60px;
  right: 30px;
  transform: rotate(4deg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #161411;
}
.doc__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.doc__eyebrow {
  font: 500 9px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(214,183,131,0.85);
}
.doc__logo {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
}
.doc__h {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
}
.doc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 10px;
}
.doc__cell {
  padding: 16px 14px;
  border: 1px solid rgba(214,183,131,0.18);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(214,183,131,0.04);
}
.doc__cell strong {
  font-family: var(--display);
  font-weight: 300;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.doc__cell span {
  font: 500 10px/1.4 'Inter', sans-serif;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

/* cover (front) */
.doc--cover {
  width: 380px;
  height: 540px;
  top: 40px;
  left: 10px;
  transform: rotate(-3deg);
  padding: 0;
  border: 1px solid rgba(214,183,131,0.4);
  box-shadow:
    0 60px 140px -30px rgba(0,0,0,1),
    0 0 0 1px rgba(214,183,131,0.15);
}
.doc__cover-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.85);
}
.doc__cover-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.85) 100%);
}
.doc__cover-top {
  position: absolute;
  top: 28px;
  left: 32px; right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.doc__logo--gold { color: var(--accent); }
.doc__cover-eyebrow {
  font: 500 9px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.doc__cover-body {
  position: absolute;
  left: 32px; right: 32px; bottom: 32px;
  z-index: 2;
}
.doc__cover-kicker {
  display: inline-block;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 14px;
  border: 1px solid rgba(214,183,131,0.55);
  border-radius: 999px;
  margin-bottom: 22px;
}
.doc__cover-title {
  margin: 0 0 28px;
  font-family: var(--display);
  font-weight: 200;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
}
.doc__cover-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(214,183,131,0.22);
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.doc__cover-arrow {
  font-size: 16px;
  color: var(--accent);
}

/* floating badge */
.realtors__badge {
  position: absolute;
  top: -20px;
  right: -50px;
  z-index: 5;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f6ecd4, #ead9b3 55%, #d6b783 100%);
  color: #1a140c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: rotate(9deg);
  box-shadow:
    0 30px 60px -15px rgba(214,183,131,0.35),
    0 0 0 1px rgba(214,183,131,0.8),
    inset 0 2px 0 rgba(255,255,255,0.55);
}
.realtors__badge span {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.realtors__badge em {
  font-style: normal;
  font: 600 8px/1.3 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  max-width: 86px;
}

/* =====================================================
   11. REVIEWS
   ===================================================== */
.reviews {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 140px 0 150px;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(214,183,131,0.1), transparent 60%);
  pointer-events: none;
}
.reviews__wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* head */
.reviews__head {
  text-align: center;
  margin-bottom: 64px;
}
.reviews__eyebrow {
  display: inline-block;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.reviews__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(46px, 4.6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}
.rv__gold { color: var(--accent); }

/* grid */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* card */
.rv-card {
  position: relative;
  padding: 40px 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(214,183,131,0.22);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.rv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,183,131,0.5);
  box-shadow: 0 30px 80px -30px rgba(214,183,131,0.25);
}

.rv-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.rv-avatar {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a140c;
  font: 600 15px/1 'Inter', sans-serif;
  letter-spacing: 0.06em;
  box-shadow:
    0 0 0 1px rgba(214,183,131,0.7),
    0 0 0 4px rgba(214,183,131,0.12);
}
.rv-card__who {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rv-card__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #fff;
}
.rv-card__role {
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(214,183,131,0.85);
}

.rv-card__text {
  margin: 0 0 32px;
  font: 400 14px/1.7 'Inter', sans-serif;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.005em;
}

.rv-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 22px;
  border-top: 1px solid rgba(214,183,131,0.18);
}
.rv-stars {
  display: flex;
  gap: 4px;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.rv-quote {
  position: absolute;
  right: 28px;
  bottom: 14px;
  font-family: 'Instrument Serif', serif;
  font-size: 110px;
  line-height: 0.7;
  color: rgba(214,183,131,0.16);
  pointer-events: none;
}

/* foot */
.reviews__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-top: 56px;
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.rv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.rv-dot.is-active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* =====================================================
   12. FAQ
   ===================================================== */
.faq {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 140px 0 160px;
  overflow: hidden;
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(214,183,131,0.08), transparent 65%);
  pointer-events: none;
}
.faq__wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.faq__head {
  position: sticky;
  top: 40px;
}
.faq__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.faq__meta .eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: rgba(214,183,131,0.45);
}
.faq__title {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(48px, 4.8vw, 74px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
}
.fq__gold { color: var(--accent); }
.faq__sub {
  margin: 0;
  max-width: 380px;
  font: 400 14px/1.65 'Inter', sans-serif;
  color: rgba(255,255,255,0.6);
}

/* list */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fq-item {
  border: 1px solid rgba(214,183,131,0.18);
  background: rgba(255,255,255,0.025);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.fq-item[open] {
  border-color: rgba(214,183,131,0.45);
  background: rgba(255,255,255,0.04);
}
.fq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  align-items: center;
  padding: 24px 26px;
  gap: 18px;
  transition: background 0.25s ease;
}
.fq-item summary::-webkit-details-marker { display: none; }
.fq-item summary:hover { background: rgba(255,255,255,0.02); }
.fq-item__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.fq-item__q {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: #fff;
}
.fq-item__icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(214,183,131,0.5);
  display: block;
  justify-self: end;
  transition: all 0.3s ease;
}
.fq-item__icon::before,
.fq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--accent);
  transition: transform 0.3s ease;
}
.fq-item__icon::before {
  width: 14px;
  height: 1.4px;
  transform: translate(-50%, -50%);
}
.fq-item__icon::after {
  width: 1.4px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.fq-item[open] .fq-item__icon {
  background: var(--accent);
}
.fq-item[open] .fq-item__icon::before { background: #1a140c; }
.fq-item[open] .fq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.fq-item__a {
  padding: 0 26px 28px 96px;
  font: 400 14px/1.75 'Inter', sans-serif;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
}

/* =====================================================
   13. CONTACTS
   ===================================================== */
.contacts {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 140px 0 150px;
  overflow: hidden;
}
.contacts::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 50% -10%, rgba(214,183,131,0.1), transparent 60%),
    radial-gradient(700px 500px at 10% 100%, rgba(214,183,131,0.06), transparent 70%);
  pointer-events: none;
}
.contacts__wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* head */
.contacts__head {
  text-align: center;
  margin-bottom: 64px;
}
.contacts__meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.contacts__meta .eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: rgba(214,183,131,0.45);
}
.contacts__title {
  margin: 0 0 20px;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(46px, 4.6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}
.ct__gold { color: var(--accent); }
.contacts__sub {
  margin: 0;
  font: 400 15px/1.6 'Inter', sans-serif;
  color: rgba(255,255,255,0.6);
}

/* grid */
.contacts__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

/* form */
.cf {
  padding: 48px 44px;
  background: #141310;
  border: 1px solid rgba(214,183,131,0.25);
  border-radius: 22px;
}
.cf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.cf__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf__label {
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214,183,131,0.85);
}
.cf__input {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 18px 18px;
  font: 400 14px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.45);
  min-height: 52px;
  display: flex;
  align-items: center;
}
.cf__input--select {
  position: relative;
  padding-right: 42px;
  color: #fff;
}
.cf__input--select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #D6B783;
  border-bottom: 1.5px solid #D6B783;
  transform: translateY(-70%) rotate(45deg);
}
.cf__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 26px;
  font: 400 12px/1.55 'Inter', sans-serif;
  color: rgba(255,255,255,0.55);
}
.cf__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.cf__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 28px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #0a0a0a;
  font: 600 14px/1 'Inter', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cf__btn .btn__arrow {
  font-size: 16px;
  font-weight: 400;
}

/* side */
.contacts__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts__offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.office {
  padding: 32px 26px;
  background: #141310;
  border: 1px solid rgba(214,183,131,0.22);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.office:hover {
  border-color: rgba(214,183,131,0.5);
  background: #17150f;
}
.office__city {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.office__addr {
  font: 400 12px/1.65 'Inter', sans-serif;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.office__phone,
.office__mail {
  font: 500 12px/1.3 'Inter', sans-serif;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.office__phone:hover,
.office__mail:hover { color: var(--accent); }

/* whatsapp cta */
.wa-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: #0f2418;
  border: 1px solid rgba(37,211,102,0.45);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}
.wa-cta:hover {
  transform: translateY(-3px);
  background: #123023;
}
.wa-cta__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-cta__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wa-cta__kicker {
  font: 500 9px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.wa-cta__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.01em;
}
.wa-cta__arrow {
  font-size: 18px;
  color: #25d366;
}

/* =====================================================
   14. FOOTER
   ===================================================== */
.footer {
  background: #070706;
  color: rgba(255,255,255,0.55);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(214,183,131,0.15);
}
.footer__wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__logo {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.footer__nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.footer__nav a {
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__nav a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font: 500 11px/1.5 'Inter', sans-serif;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__bottom a:hover { color: var(--accent); }



/* ──────────────────────────────────────────────────────────
   PERFORMANCE: content-visibility для off-screen секций
   Браузер не рендерит layout/paint для секций далеко от
   viewport. Длинная страница (~14400px) скроллится х3-5 быстрее,
   особенно при записи экрана через screencapture.
   ────────────────────────────────────────────────────────── */
.stats, .quiz, .about, .services, .stages,
.portfolio, .ba, .realtors, .reviews, .faq, .contacts {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

/* Снижаем дорогие backdrop-filter blur. На маленьких элементах
   эффект почти незаметен, но GPU тратится на каждый кадр скролла. */
.hero__price { backdrop-filter: blur(2px) !important; }
.cphoto__tag { backdrop-filter: none !important; }
