:root {
  --light: #FDFCF9;
  --sky-wash: #EAF2F7;
  --sand: #F2EAD9;
  --cream: #F6F1E6;
  --cream-deep: #EFE7D4;
  --cream-line: #E4DAC2;
  --taupe: #8A7F68;
  --ink: #131C33;
  --night: #0C1120;
  --sky: #47A3E0;
  --sky-deep: #2F6FA8;
  --gold: #C2A265;
  --gold-light: #E8C987;
  --gold-ink: #B8934F;
  --amber: #DFA35C;
  --line: #E7E3D9;
  --text-soft: #4A5164;
  --mist: #9FB4CC;
  --dawn: linear-gradient(95deg, #9FD0F5 0%, #F0D9A0 85%);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x: clamp(24px, 5vw, 64px);
  /* типографическая шкала — 6 ступеней, без промежуточных размеров */
  --t-display: clamp(42px, 5.6vw, 88px);
  --t-h2: clamp(31px, 4vw, 54px);
  --t-h3: clamp(20px, 1.9vw, 24px);
  --t-lead: clamp(17px, 1.5vw, 19px);
  --t-body: 15.5px;
  --t-caption: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--light);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  font-size: 17px;
}
::selection { background: var(--sand); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.12; }
h1 { font-size: var(--t-display); letter-spacing: 0.005em; line-height: 1.05; }
h2 { font-size: var(--t-h2); line-height: 1.12; }
h3 { font-size: var(--t-h3); }
em.dawn { font-style: italic; font-weight: 400; color: #B8934F; }
.hero em.dawn, .quote-bleed em.dawn, .block--night em.dawn, .block--azure em.dawn, .reg-night em.dawn { color: var(--gold-light); }
em.skyw { font-style: italic; font-weight: 400; color: var(--sky); }

.overline {
  font-size: 12px; letter-spacing: 0.3em; font-weight: 400;
  text-transform: uppercase; color: var(--sky-deep);
}
.overline--gold { color: var(--gold); }
.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.8; color: var(--text-soft); }
.wrap { max-width: 1200px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--narrow { max-width: 860px; }

/* ---------- constellation micro-mark ---------- */
.const { display: inline-block; }
.const circle { animation: pulse 5s ease-in-out infinite; transform-origin: center; }
.const circle:nth-of-type(2) { animation-delay: 1.6s; }
.const circle:nth-of-type(3) { animation-delay: 3.2s; }
@keyframes pulse { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }
.code {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); color: var(--gold); opacity: 0.85;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px var(--pad-x);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.wordmark {
  font-size: 15.5px; letter-spacing: 0.3em; font-weight: 400;
  text-decoration: none; white-space: nowrap; color: var(--ink);
}
.nav-links { display: flex; gap: clamp(20px, 2.8vw, 42px); }
.nav-links a {
  font-size: 15px; letter-spacing: 0.08em; text-decoration: none; font-weight: 400;
  color: var(--ink); opacity: 0.85; padding-bottom: 3px;
  border-bottom: 1px solid transparent; transition: border-color 0.3s, opacity 0.3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; border-color: var(--gold); }
.btn-nav {
  font-size: 13.5px; letter-spacing: 0.12em; text-decoration: none; font-weight: 400;
  padding: 12px 28px; border-radius: 999px; white-space: nowrap;
  background: var(--ink); color: #fff; transition: background 0.35s ease;
}
.btn-nav:hover { background: var(--amber); }

.nav--over .wordmark, .nav--over .nav-links a { color: #fff; }
.nav--over .btn-nav { background: rgba(255,255,255,0.94); color: var(--ink); }
.nav--over .btn-nav:hover { background: var(--gold-light); }

.nav.scrolled {
  background: rgba(253,252,249,0.9); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line); padding-top: 14px; padding-bottom: 14px;
}
.nav--over.scrolled .wordmark, .nav--over.scrolled .nav-links a { color: var(--ink); }
.nav--over.scrolled .btn-nav { background: var(--ink); color: #fff; }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 34px; position: relative; z-index: 70;
}
.burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: currentColor; transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 21px; }
.burger { color: var(--ink); }
.nav--over .burger { color: #fff; }
.nav--over.scrolled .burger { color: var(--ink); }
body.menu-open .burger { color: #fff; }
body.menu-open .burger span:nth-child(1) { top: 17px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { top: 17px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 60; background: var(--night);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad-x);
  opacity: 0; visibility: hidden; transition: opacity 0.45s ease, visibility 0.45s;
}
body.menu-open .nav { z-index: 80; background: transparent; box-shadow: none; backdrop-filter: none; }
body.menu-open .nav .wordmark { color: #fff; }
body.menu-open .nav .btn-nav { visibility: hidden; }
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; text-decoration: none;
  font-size: clamp(27px, 7.2vw, 52px); color: #fff; line-height: 1.55;
  opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.menu a:hover { color: var(--gold-light); }
body.menu-open .menu a { opacity: 1; transform: none; }
body.menu-open .menu a:nth-child(2) { transition-delay: 0.06s; }
body.menu-open .menu a:nth-child(3) { transition-delay: 0.12s; }
body.menu-open .menu a:nth-child(4) { transition-delay: 0.18s; }
body.menu-open .menu a:nth-child(5) { transition-delay: 0.24s; }
.menu .menu-contacts { margin-top: 44px; display: flex; gap: 26px; }
.menu .menu-contacts a { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.18em; color: var(--mist); }
body.menu-open .menu .menu-contacts a { transition-delay: 0.3s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 400; text-align: center;
  font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 38px; border-radius: 999px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--amber); color: var(--night); box-shadow: 0 6px 30px rgba(223,163,92,0.35); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--gold-light); color: var(--night); box-shadow: 0 6px 30px rgba(232,201,135,0.4); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-gold { background: var(--gold-light); color: var(--night); }
.btn-gold:hover { background: var(--amber); box-shadow: 0 6px 30px rgba(223,163,92,0.4); }
.link-line {
  display: inline-block; font-size: 14px; letter-spacing: 0.08em; font-weight: 400;
  color: var(--ink); text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid var(--gold);
  transition: border-color 0.3s, color 0.3s;
}
.link-line:hover { color: var(--sky-deep); border-color: var(--sky); }

/* ---------- full-bleed photo sections ---------- */
.bleed { position: relative; overflow: hidden; display: flex; }
.bleed-img {
  position: absolute; inset: -6% 0; width: 100%; height: 112%;
  object-fit: cover; will-change: transform;
}
.bleed-veil { position: absolute; inset: 0; }
.bleed-inner { position: relative; z-index: 2; width: 100%; }

.hero { min-height: 100svh; align-items: flex-end; }
.hero .bleed-img { object-position: 62% 30%; }
@media (max-width: 860px) {
  .hero .bleed-img { object-position: 68% 30%; }
}
.hero .bleed-veil {
  background:
    linear-gradient(97deg, rgba(15,21,38,0.78) 0%, rgba(15,21,38,0.45) 34%, rgba(15,21,38,0.08) 60%, rgba(15,21,38,0) 75%),
    linear-gradient(to top, rgba(15,21,38,0.82) 0%, rgba(15,21,38,0.4) 38%, rgba(15,21,38,0.08) 66%, rgba(15,21,38,0.06) 100%);
}
.hero-inner { max-width: 1440px; }
.hero h1 { max-width: 18ch; }
.hero .sub { max-width: 40ch; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 140px var(--pad-x) clamp(72px, 12vh, 140px); width: 100%; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .overline { color: #F0D9A6; text-shadow: 0 1px 14px rgba(15,21,38,0.65); margin-bottom: 32px; }
.hero .sub { margin-top: 34px; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.85; color: rgba(255,255,255,0.88); max-width: 42ch; }
.hero .cta-row { display: flex; gap: 26px; margin-top: 56px; flex-wrap: wrap; align-items: center; }

.link-light {
  display: inline-block; font-size: 14px; letter-spacing: 0.1em; font-weight: 400;
  color: #fff; text-decoration: none; padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.45); transition: border-color 0.3s, color 0.3s;
}
.link-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

.quote-bleed { min-height: 92svh; align-items: center; text-align: center; }
.quote-bleed .bleed-veil {
  background:
    radial-gradient(ellipse 72% 52% at 50% 46%, rgba(15,21,38,0.42), transparent 78%),
    linear-gradient(to bottom, rgba(15,21,38,0.52) 0%, rgba(15,21,38,0.32) 45%, rgba(15,21,38,0.58) 100%);
}
.quote-bleed .bleed-inner { max-width: 880px; margin: 0 auto; padding: 120px var(--pad-x); }
.quote-bleed p.q {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(27px, 3.6vw, 46px); line-height: 1.38; color: #fff;
}
.quote-bleed .who { margin-top: 32px; font-size: 12px; letter-spacing: 0.28em; color: var(--gold-light); }

/* ---------- sections & registers ---------- */
.section { padding: clamp(90px, 14vh, 160px) 0; }
.section--tight { padding: clamp(64px, 9vh, 110px) 0; }
.reg-sky { background: var(--sky-wash); }
.reg-sand { background: var(--sand); }
.reg-night { background: var(--night); color: #fff; position: relative; overflow: hidden; }
.reg-night .lead { color: var(--mist); }

.night-stars { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }

.sec-head { max-width: 760px; }
.sec-head .overline { display: block; margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 22px; }
.center { text-align: center; }
.center .sec-head { margin-left: auto; margin-right: auto; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: clamp(14px, 1.8vw, 22px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.door {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 540px; border-radius: 4px; overflow: hidden; text-decoration: none;
}
.door img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.door:hover img { transform: scale(1.045); }
.door .door-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,21,38,0.82) 0%, rgba(15,21,38,0.28) 55%, rgba(15,21,38,0.12) 100%); transition: background 0.5s ease; }
.door .door-body { position: relative; z-index: 2; padding: 36px 34px 38px; }
.door .overline { color: var(--gold-light); }
.door h3 { color: #fff; font-size: clamp(27px, 2.6vw, 36px); margin: 12px 0 10px; }
.door p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; max-width: 42ch; }
.door .door-go {
  margin-top: 20px; display: inline-block; font-size: 13px; letter-spacing: 0.14em; color: #fff;
  border-bottom: 1px solid var(--gold-light); padding-bottom: 4px; width: fit-content;
  transition: color 0.3s;
}
.door:hover .door-go { color: var(--gold-light); }

.stat { text-align: center; padding: 40px 18px; }
.stat .n { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(30px, 3vw, 40px); }
.stat .t { margin-top: 8px; font-size: 11px; letter-spacing: 0.22em; color: #8A8F9C; text-transform: uppercase; }
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats .stat + .stat { border-left: 1px solid var(--line); }

.step { padding: 26px 26px; background: rgba(255,255,255,0.72); border-radius: 4px; }
.reg-sand .step, .reg-sky .step { background: rgba(255,255,255,0.66); }
.step .code { display: block; margin-bottom: 14px; }
.step h3 { margin-bottom: 12px; }
.step p { font-size: 15.5px; line-height: 1.75; color: var(--text-soft); }

.for-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.for-item { padding: 30px 8px; border-bottom: 1px solid var(--line); display: flex; gap: 26px; align-items: baseline; }
.for-item:first-child { border-top: 1px solid var(--line); }
.for-item .code { min-width: 44px; }
.for-item p { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.4; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.split .photo-frame { position: relative; }
.split .photo-frame img { border-radius: 4px; width: 100%; aspect-ratio: 4/4.8; object-fit: cover; }

/* ---------- footer ---------- */
.footer { background: var(--night); color: var(--mist); padding: 72px 0 44px; position: relative; overflow: hidden; }
.footer .wrap { display: flex; flex-direction: column; gap: 44px; position: relative; z-index: 2; }
.footer .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer .wordmark { color: #fff; }
.footer nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer nav a { font-size: 13px; letter-spacing: 0.1em; color: var(--mist); text-decoration: none; transition: color 0.3s; }
.footer nav a:hover { color: var(--gold-light); }
.footer .socials { display: flex; gap: 26px; align-items: center; }
.footer .socials a { color: var(--mist); text-decoration: none; transition: color 0.3s, transform 0.3s; display: inline-flex; }
.footer .socials a:hover { color: var(--gold-light); transform: translateY(-2px); }
.footer .socials svg { width: 22px; height: 22px; }
.footer .bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid rgba(159,180,204,0.18); padding-top: 26px; font-size: 12.5px; letter-spacing: 0.06em; color: rgba(159,180,204,0.65); }

/* ---------- reveal motion ---------- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }
.rv-scale { opacity: 0; transform: scale(0.97); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.rv-scale.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv, .rv-scale { opacity: 1; transform: none; transition: none; }
  .const circle { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .photo-frame { order: -1; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(3) { border-left: none; }
  .stats .stat:nth-child(1), .stats .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .door { min-height: 440px; }
}
@media (max-width: 860px) {
  .nav-links, .nav .btn-nav { display: none; }
  .burger { display: block; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav { padding: 16px 20px; }
  .wordmark { font-size: 10.5px; letter-spacing: 0.2em; }
  .hero .bleed-img { object-position: 61% 18%; }
  .hero-inner { padding-bottom: 72px; }
  .for-item { gap: 16px; padding: 24px 4px; }
  .section { padding: 84px 0; }
}

/* ---------- inner pages ---------- */
.page-hero { padding: clamp(160px, 24vh, 230px) 0 clamp(56px, 8vh, 100px); }
.page-hero h1 { font-size: clamp(40px, 5.6vw, 76px); max-width: 17ch; }
.page-hero .overline { display: block; margin-bottom: 20px; }
.page-hero .lead { margin-top: 24px; max-width: 56ch; }

.photo-hero { min-height: 78svh; }
.photo-hero h1 { font-size: clamp(40px, 5.6vw, 76px); }

.pkg { padding: 40px 34px 44px; background: #fff; border: 1px solid var(--line); border-radius: 4px; display: flex; flex-direction: column; }
.pkg .code { display: block; margin-bottom: 16px; }
.pkg h3 { margin-bottom: 6px; }
.pkg .fmt { font-size: 12px; letter-spacing: 0.18em; color: #8A8F9C; text-transform: uppercase; margin-bottom: 16px; }
.pkg p { font-size: 15.5px; line-height: 1.75; color: var(--text-soft); flex: 1; }
.pkg .link-line { margin-top: 26px; width: fit-content; }
.pkg--hi { border-color: var(--gold); box-shadow: 0 10px 44px rgba(194,162,101,0.14); }

.badge-soon {
  display: inline-block; font-size: 11px; letter-spacing: 0.2em; font-weight: 400;
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--gold);
  color: var(--gold); text-transform: uppercase; vertical-align: middle;
}

.faq-item { border-bottom: 1px solid var(--line); padding: 26px 4px; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 21px; margin-bottom: 8px; }
.faq-item p { font-size: 15.5px; color: var(--text-soft); max-width: 62ch; }

.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.two-cols .col h3 { margin-bottom: 18px; }
.two-cols .col ul { list-style: none; }
.two-cols .col li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--text-soft); }
@media (max-width: 860px) { .two-cols { grid-template-columns: 1fr; } }

.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mosaic img { border-radius: 4px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (max-width: 700px) { .mosaic { grid-template-columns: 1fr; } .mosaic img { aspect-ratio: 4/3; } }

/* ---------- one-pager: bold color blocks ---------- */
.tag {
  display: inline-block; font-size: 12px; letter-spacing: 0.26em; font-weight: 400;
  text-transform: uppercase; color: var(--sky);
}
.tag--gold { color: var(--gold-light); }
.tag--ink { color: var(--sky-deep); }

.block { position: relative; overflow: hidden; padding: clamp(84px, 12vh, 148px) 0; }
.block h2 { font-size: var(--t-h2); line-height: 1.1; }
.block .tag { display: block; margin-bottom: 8px; }

.block--night { background: #0A0F1E; color: #fff; }
.block--azure { background: linear-gradient(165deg, #0F3B6B 0%, #1D6AB2 55%, #2E9BE6 130%); color: #fff; }
.block--sand { background: var(--sky-wash); }
.block--night .lead, .block--azure .lead { color: rgba(255,255,255,0.82); }

.aurora { position: absolute; inset: 0; pointer-events: none; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(90px); display: block;
}
.aurora .a1 { width: 55vw; height: 55vw; background: #1D6AB2; opacity: 0.4; top: -22%; left: -12%; animation: drift1 16s ease-in-out infinite alternate; }
.aurora .a2 { width: 44vw; height: 44vw; background: #C2A265; opacity: 0.22; bottom: -26%; right: -8%; animation: drift2 20s ease-in-out infinite alternate; }
.aurora .a3 { width: 30vw; height: 30vw; background: #6C4FC9; opacity: 0.16; top: 30%; left: 55%; animation: drift1 24s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(6%, 10%) scale(1.12); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-8%, -6%) scale(1.08); } }

.matrix {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(159,208,245,0.16) 1px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 25%, transparent 78%);
}
.block--azure .matrix { background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1.4px); }

.ghost {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(64px, 8vw, 120px); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(46,134,217,0.5);
}
.block--night .ghost, .block--azure .ghost { -webkit-text-stroke: 1px rgba(232,201,135,0.55); }

.btn-cta {
  background: var(--gold-light); color: #171B14;
  box-shadow: 0 8px 34px rgba(232,201,135,0.28);
}
.btn-cta:hover { background: #F0D9A0; box-shadow: 0 10px 46px rgba(232,201,135,0.5); }

.energy-line {
  height: 2px; border: none; width: min(220px, 40vw);
  background: linear-gradient(90deg, transparent, #2E9BE6 30%, #E8C987 70%, transparent);
}

.block--sky { background: var(--sky-wash); }
.who-row {
  display: grid; grid-template-columns: clamp(40px, 4vw, 54px) 1fr; column-gap: 16px; row-gap: 8px;
  align-items: baseline;
  padding: 26px clamp(24px, 3vw, 40px) 30px; margin-top: 14px;
  background: #fff; border: 1px solid #DCE7F0; border-radius: 6px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.who-row:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(47,111,168,0.12); }
.who-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(26px, 2.5vw, 33px); line-height: 1; color: var(--gold);
}
.who-row h3 { font-size: clamp(21px, 2vw, 26px); line-height: 1.2; color: var(--ink); }
.who-row .who-desc { grid-column: 2; font-size: 15.5px; line-height: 1.7; color: var(--text-soft); max-width: 64ch; }
@media (max-width: 700px) { .who-row { grid-template-columns: 34px 1fr; column-gap: 12px; padding: 22px 20px 24px; } .who-row .who-desc { font-size: 16px; } }

.veil-warm {
  background:
    linear-gradient(to bottom, rgba(52,30,8,0.32), rgba(24,16,30,0.5)),
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(20,12,4,0.3), transparent 80%) !important;
}

/* ---------- paradigm ---------- */
.par-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 32px); }
.par-col { padding: 38px 36px 42px; border-radius: 6px; }
.par-col h3 { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.26em; font-weight: 400; margin-bottom: 22px; }
.par-col ul { list-style: none; }
.par-col li { padding: 13px 0; border-bottom: 1px solid; font-size: 16.5px; }
.par-col li:last-child { border-bottom: none; }
.par-restore { background: #fff; border: 1px solid var(--line); color: var(--text-soft); }
.par-restore h3 { color: #8A8F9C; }
.par-restore li { border-color: var(--line); }
.par-unfold { background: var(--ink); color: #EDEFF4; }
.par-unfold h3 { color: var(--gold-light); }
.par-unfold li { border-color: rgba(232,201,135,0.22); }
@media (max-width: 760px) { .par-grid { grid-template-columns: 1fr; } }

.q-vs { margin-top: clamp(40px, 6vh, 64px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 32px); }
.q-vs .qq { padding: 30px 32px; border-radius: 6px; font-size: 16.5px; line-height: 1.7; }
.q-vs .qq .lbl { display: block; font-size: 12px; letter-spacing: 0.22em; margin-bottom: 12px; text-transform: uppercase; }
.q-vs .qq em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 21px; }
@media (max-width: 760px) { .q-vs { grid-template-columns: 1fr; } }

/* ---------- voices ---------- */
.voice { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 34px 32px; display: flex; flex-direction: column; }
.voice p.vq { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.5; flex: 1; }
.voice .vw { margin-top: 22px; font-size: 14.5px; letter-spacing: 0.04em; color: var(--gold-ink); }

.taglet {
  display: inline-block; padding: 9px 16px; border-radius: 4px;
  font-size: 12.5px; letter-spacing: 0.14em; font-weight: 400;
}
.taglet--onphoto { background: rgba(12,17,32,0.4); color: rgba(255,255,255,0.92); backdrop-filter: blur(4px); }
.taglet--onazure { background: rgba(255,255,255,0.14); color: #fff; }
.taglet--light { background: var(--sky-wash); color: var(--sky-deep); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,0.75); font-size: 20px; line-height: 1;
  animation: cue 2.4s ease-in-out infinite; text-decoration: none;
}
.scroll-cue:hover { color: var(--gold-light); }
@keyframes cue { 0%, 100% { transform: translate(-50%, 0); opacity: 0.7; } 50% { transform: translate(-50%, 8px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

.voice--dark { background: rgba(255,255,255,0.05); border-color: rgba(159,180,204,0.25); }
.voice--dark p.vq { color: #EDEFF4; }
.voice--dark .vw { color: var(--gold-light); }

.step--glass { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); color: #fff; }
.step--glass p { color: rgba(255,255,255,0.85); }
.step--glass h3 { color: #fff; }

/* ---------- numbered inline steps ---------- */
.nlist { display: flex; flex-direction: column; gap: 14px; }
.nlist .ni { display: flex; gap: 14px; align-items: baseline; }
.ndot {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 400; border: 1px solid currentColor; opacity: 0.85;
}

.foot-manifesto { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(21px, 2vw, 26px); color: #E8EDF4; }
.foot-id { font-size: 13.5px; color: var(--mist); margin-top: 8px; }

@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .rv, .rv-scale { opacity: 1 !important; transform: none !important; }
  .hero, .quote-bleed { min-height: 90vh; }
  .nav { position: absolute; }
  .aurora i { filter: none; opacity: 0.12; }
}

/* ---------- v14: stories & formula ---------- */
.story { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: clamp(28px, 3.4vw, 46px); }
.story .who { font-size: 13px; letter-spacing: 0.14em; color: var(--ink); font-weight: 400; text-transform: uppercase; }
.story p { font-size: 16px; line-height: 1.8; color: var(--text-soft); margin-top: 14px; }
.story .taglet { margin-top: 18px; }
.story--dark { background: rgba(255,255,255,0.05); border-color: rgba(159,180,204,0.25); }
.story--dark .who { color: var(--gold-light); }
.story--dark p { color: #D7DEE9; }
.formula {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px); text-align: center; color: var(--ink);
}
.subhead { font-size: 12px; letter-spacing: 0.26em; color: var(--sky-deep); text-transform: uppercase; display: block; margin: 44px 0 14px; }
.prefoot { text-align: center; font-size: 13.5px; color: #8A8F9C; padding: 0 24px 56px; }


/* ---------- v15 design polish ---------- */
.eyebrow { display: block; font-size: 12px; letter-spacing: 0.28em; font-weight: 400; text-transform: uppercase; margin-bottom: 16px; }
.split-hero { padding: clamp(140px, 20vh, 190px) 0 clamp(56px, 8vh, 90px); }
.split-hero .split { align-items: center; gap: clamp(32px, 4.5vw, 64px); }
.split-hero h1 { font-size: clamp(36px, 4.6vw, 64px); max-width: 18ch; }
.split-hero .photo-frame img { aspect-ratio: 4/4.6; }

.photo-frame--sm { max-width: 420px; margin-left: auto; }
.photo-frame--sm img { aspect-ratio: 4/4.4; }

.quote-card { border-radius: 6px; padding: 24px 26px; }
.quote-card .qq { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; }
.quote-card .qn { margin-top: 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; }
.qc-dark { background: rgba(10,18,36,0.35); color: #fff; }
.qc-dark .qq { color: #EAF2FB; }
.qc-light { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.qc-light .qq { color: var(--ink); }

.role-row { display: grid; grid-template-columns: 56px minmax(220px, 300px) 1fr; gap: 18px; align-items: baseline; padding: 20px 0; border-top: 1px solid var(--line); }
.role-row:last-of-type { border-bottom: 1px solid var(--line); }
.role-row .code { font-size: 19px; }
.role-row h3 { font-size: clamp(19px, 1.8vw, 23px); }
.role-row p { font-size: 15px; line-height: 1.7; color: var(--text-soft); }
.role-row--dark { border-color: rgba(159,180,204,0.25); }
.role-row--dark p { color: rgba(255,255,255,0.82); }
.role-row--dark h3 { color: #fff; }
@media (max-width: 760px) { .role-row { grid-template-columns: 40px 1fr; } .role-row p { grid-column: 2; } }

.list-yes, .list-no { list-style: none; }
.list-yes li, .list-no li { position: relative; padding: 11px 0 11px 32px; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--text-soft); }
.list-yes li::before { content: '✓'; position: absolute; left: 2px; color: var(--gold); font-size: 15px; }
.list-no li::before { content: '✕'; position: absolute; left: 3px; color: #A7ADBB; font-size: 13px; }

.t-col2 { columns: 1; column-gap: 22px; }
@media (min-width: 900px) { .t-col2 { columns: 2; } }
.t-col2 .story { break-inside: avoid; margin-bottom: 22px; }

.foot-cols { display: flex; gap: clamp(32px, 6vw, 90px); flex-wrap: wrap; }
.foot-cols h4 { font-size: 11px; letter-spacing: 0.24em; color: rgba(159,180,204,0.6); font-weight: 400; margin-bottom: 14px; font-family: 'Jost', sans-serif; }
.foot-cols a { display: block; font-size: 14px; color: var(--mist); text-decoration: none; padding: 4px 0; transition: color 0.3s; }
.foot-cols a:hover { color: var(--gold-light); }


/* ---------- v16: hero-duo (фото до края, Crone-style) ---------- */
.hero-duo { display: grid; grid-template-columns: minmax(0, 1fr) clamp(380px, 44vw, 700px); min-height: 88svh; align-items: stretch; }
.hero-duo .hd-text {
  align-self: center; max-width: 660px; width: 100%;
  margin-left: max(var(--pad-x), calc((100vw - 1320px) / 2));
  padding: 150px 40px 70px 0;
}
.hero-duo .hd-photo { position: relative; min-height: 560px; }
.hero-duo .hd-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-duo .hd-photo::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to bottom, rgba(253,252,249,0.82), rgba(253,252,249,0)); z-index: 1; pointer-events: none; }
@media (max-width: 900px) {
  .hero-duo { grid-template-columns: 1fr; min-height: 0; }
  .hero-duo .hd-photo { order: -1; min-height: 46vh; }
  .hero-duo .hd-text { margin: 0; padding: 40px var(--pad-x) 64px; }
}

.duo { display: grid; grid-template-columns: minmax(0, 1fr) clamp(340px, 38vw, 620px); align-items: stretch; }
.duo .duo-text { align-self: center; max-width: 640px; width: 100%; margin-left: max(var(--pad-x), calc((100vw - 1320px) / 2)); padding: clamp(64px, 9vh, 110px) 44px clamp(64px, 9vh, 110px) 0; }
.duo .duo-photo { position: relative; min-height: 520px; }
.duo .duo-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.duo--flip { grid-template-columns: clamp(340px, 38vw, 620px) minmax(0, 1fr); }
.duo--flip .duo-text { margin-left: 0; margin-right: max(var(--pad-x), calc((100vw - 1320px) / 2)); padding: clamp(64px, 9vh, 110px) 0 clamp(64px, 9vh, 110px) 44px; }
@media (max-width: 900px) {
  .duo, .duo--flip { grid-template-columns: 1fr; }
  .duo .duo-photo { order: -1; min-height: 44vh; }
  .duo .duo-text, .duo--flip .duo-text { margin: 0; padding: 36px var(--pad-x) 60px; }
}

/* галочки у заголовков колонок, строки чистые */
.list-yes li::before, .list-no li::before { content: none; }
.list-yes li, .list-no li { padding-left: 2px; }
.mk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; margin-right: 12px;
  font-size: 14px; vertical-align: -4px; font-family: 'Jost', sans-serif;
}
.mk-yes { background: var(--gold-light); color: #171B14; }
.mk-no { background: #E4E7ED; color: #7A8194; }

/* заголовок в узкой duo-колонке — на ступень меньше, максимум 2 строки */
.duo .duo-text h2 { font-size: clamp(28px, 2.9vw, 44px); }
.hero-duo .hd-text h1 { font-size: clamp(30px, 3.5vw, 50px); }

/* ---------- v17: тональные производные (кремовый тёплый регистр) ---------- */
.block--cream { background: var(--cream); }
.block--cream .qc-light { border-color: var(--cream-line); }
.block--cream .voice { border-color: var(--cream-line); }
.block--cream .role-row { border-color: var(--cream-line); }
.block--cream .list-yes li, .block--cream .list-no li { border-color: var(--cream-line); }
.block--cream .lead { color: #4E4A3D; }
.block--cream .who-row { border-color: var(--cream-line); }
.block--cream .voice, .block--cream .story { border-color: var(--cream-line); }
.block--cream .step { background: #fff; }

/* ---------- v17: trust-бар (лого-стена, серый монохром) ---------- */
.trust { background: var(--light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0 38px; }
.trust-label { display: block; font-size: 11px; letter-spacing: 0.26em; color: #9A948A; white-space: nowrap; margin-bottom: 26px; }
.trust-logos { display: flex; gap: 28px clamp(24px, 3.4vw, 56px); flex-wrap: wrap; align-items: center; justify-content: space-between; }
.trust-logos .lg { display: inline-flex; align-items: center; gap: 7px; color: #757069; white-space: nowrap; font-weight: 500; }
.trust-logos .lg svg { display: block; }
.lg-loreal { font-size: 16px; letter-spacing: 0.1em; }
.lg-google { font-size: 18.5px; letter-spacing: 0.005em; }
.lg-unilever { font-size: 18px; font-weight: 400; }
.lg-splat { font-size: 16px; letter-spacing: 0.24em; }
.lg-yandex { font-size: 17.5px; letter-spacing: 0.01em; }
.lg-sber { font-size: 17.5px; letter-spacing: 0.01em; }
.lg-kant { font-size: 16px; letter-spacing: 0.2em; }
.lg-idea { font-size: 14px; letter-spacing: 0.26em; font-weight: 400; }
@media (max-width: 700px) {
  .trust { padding: 28px 0 32px; }
  .trust-label { text-align: center; margin-bottom: 20px; }
  .trust-logos { justify-content: center; gap: 20px 28px; }
}

/* ---------- v17: финальная плашка на фото рассвета ---------- */
.begin-dawn { position: relative; overflow: hidden; }
.begin-dawn .bd-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.begin-dawn .bd-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 68% 60% at 50% 52%, rgba(12,17,32,0.18), transparent 82%),
    linear-gradient(to bottom, rgba(12,17,32,0.5) 0%, rgba(12,17,32,0.38) 45%, rgba(12,17,32,0.6) 100%);
}
.begin-dawn .bd-inner { position: relative; z-index: 2; padding: clamp(100px, 15vh, 180px) 0; color: #fff; }
.begin-dawn h2 { color: #fff; text-shadow: 0 2px 24px rgba(12,17,32,0.45); }
.begin-dawn em.dawn { color: var(--gold-light); }

/* ---------- v19: героика страниц — кино и уверенный край ---------- */
/* CEO: чернильная текстовая панель + жёсткий край фото */
.hero-duo--ink { background: var(--ink); }
.hero-duo--ink .hd-text h1 { color: #fff; }
.hero-duo--ink .hd-text h1 em.dawn { color: var(--gold-light); }
.hero-duo--ink .lead { color: rgba(255,255,255,0.9); }
.hero-duo--ink .hd-photo::after {
  height: 170px;
  background: linear-gradient(to bottom, rgba(19,28,51,0.62), rgba(19,28,51,0));
}

/* AlchemE: полноэкранное кино, текст на рассветном небе */
.hero-cine { min-height: 96svh; align-items: flex-end; }
.hero-cine .bleed-img { object-position: center 58%; }
.hero-cine .bleed-veil {
  background:
    linear-gradient(97deg, rgba(15,21,38,0.72) 0%, rgba(15,21,38,0.42) 36%, rgba(15,21,38,0.06) 62%, rgba(15,21,38,0) 75%),
    linear-gradient(to top, rgba(15,21,38,0.78) 0%, rgba(15,21,38,0.34) 40%, rgba(15,21,38,0.04) 70%),
    linear-gradient(to bottom, rgba(15,21,38,0.42) 0%, rgba(15,21,38,0) 18%);
}
.hero-cine .hc-inner { max-width: 1320px; margin: 0 auto; padding: 150px var(--pad-x) clamp(72px, 11vh, 130px); width: 100%; }
.hero-cine h1 { max-width: none; font-size: clamp(38px, 4.5vw, 64px); color: #fff; }
.hero-cine em.dawn { color: var(--gold-light); }
.hero-cine .lead { color: rgba(255,255,255,0.9); }
.hero-cine .eyebrow { text-shadow: 0 1px 14px rgba(15,21,38,0.7); }
@media (max-width: 860px) {
  .hero-cine { min-height: 84svh; }
  .hero-cine .bleed-img { object-position: 52% 58%; }
}

/* движение, которое шепчет */
@media (prefers-reduced-motion: no-preference) {
  .hero-duo .hd-photo img, .hero-cine .bleed-img { animation: hd-settle 3.2s var(--ease) both; }
}
@keyframes hd-settle { from { transform: scale(1.045); } to { transform: scale(1); } }


/* ---------- v19b: индиго-плашки, тизеры, мобильная полировка ---------- */
.block--ink { background: var(--ink); }
.block--ink em.dawn { color: var(--gold-light); }
.tease-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.5; }
.tease-name { margin-top: 10px; font-size: 14.5px; letter-spacing: 0.04em; }

.wordmark { font-size: 17px; }

@media (max-width: 860px) {
  .nav { justify-content: center; }
  .burger { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
  body.menu-open .burger span:nth-child(1), body.menu-open .burger span:nth-child(2) { top: 17px; }
  .hero-duo .hd-text h1 { font-size: clamp(29px, 8vw, 42px); }
  .voice { padding: 28px 24px; }
  main p[style*="15.5px"], main p[style*="font-size: 15px"] { font-size: 16.5px !important; }
  .lead { font-size: 17.5px; }
  .btn-cta { padding: 18px 38px; font-size: 14.5px; }
}
@media (max-width: 600px) {
  .wordmark { font-size: 15.5px; letter-spacing: 0.26em; }
}


/* ---------- v19c: имена без капса, мобильный «Путь» ---------- */
.story .who { text-transform: none; letter-spacing: 0.04em; font-size: 14.5px; color: var(--gold-ink); }
.qn { text-transform: none; letter-spacing: 0.04em; font-size: 14.5px; }
.role-row--path { grid-template-columns: minmax(180px, 240px) 1fr; }
@media (max-width: 860px) {
  .role-row--path { grid-template-columns: 1fr; row-gap: 4px; padding: 24px 0; }
  .role-row--path p { grid-column: auto; }
  .role-row--path h3 { font-size: 21px; }
}
