/* ============================================================
   Картули — танцы Кавказа и Закавказья
   Дизайн-токены сняты с макета Figma (node 83:54)
   ============================================================ */

:root {
  --cream: #f4ebda;
  --cream-deep: #ede1cb;
  --burgundy: #6e1122;
  --green: #1e3a2b;
  --gold: #e4c77e;
  --gold-deep: #a8853a;
  --ink: #1a1210;

  --ink-70: rgba(26, 18, 16, 0.7);
  --ink-78: rgba(26, 18, 16, 0.78);
  --ink-18: rgba(26, 18, 16, 0.18);
  --cream-86: rgba(244, 235, 218, 0.86);
  --cream-64: rgba(244, 235, 218, 0.64);
  --cream-20: rgba(244, 235, 218, 0.2);

  --display: "Forum", "Times New Roman", serif;
  --body: "Manrope", system-ui, sans-serif;
  --accent: "Cormorant Garamond", Georgia, serif;

  --gutter: clamp(20px, 5vw, 96px);
  --shell: 1420px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.shell {
  width: min(var(--shell), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* ---------- Типографика ---------- */

.eyebrow {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 26px;
}
.eyebrow--gold { color: var(--gold); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; }

h1 {
  font-size: clamp(42px, 5.6vw, 81px);
  line-height: 1.04;
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: 0.005em;
}

h3 { font-size: 23px; line-height: 1.2; }

.accent { color: var(--burgundy); }
.accent--gold { color: var(--gold); }

.lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-78);
  max-width: 44ch;
}

.quote {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.28;
  color: var(--green);
  max-width: 22ch;
}

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 19px 38px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), background-color 0.35s, color 0.35s;
}
.btn:hover { transform: translateY(-3px); }
.btn--burgundy { background: var(--burgundy); color: var(--cream); }
.btn--burgundy:hover { background: #85162a; }
.btn--green { background: var(--green); color: var(--cream); }
.btn--green:hover { background: #26492f; }
.btn--cream { background: var(--cream); color: var(--burgundy); }
.btn--cream:hover { background: var(--gold); color: var(--ink); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #f0d89a; }
.btn--ghost {
  border-color: rgba(228, 199, 126, 0.55);
  color: var(--gold);
  padding: 10px 29px;
  letter-spacing: 0.1em;
}
.btn--ghost:hover { background: rgba(228, 199, 126, 0.12); }

/* ---------- Шапка ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 26px 0;
  transition: background-color 0.5s var(--ease), padding 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

/* верхний скрим из макета: 202px, чёрный → прозрачный */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 202px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 38%,
    rgba(0, 0, 0, 0.28) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: opacity 0.5s var(--ease);
}
.site-header.is-stuck::before { opacity: 0; }
.site-header.is-stuck {
  background: rgba(10, 7, 6, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(228, 199, 126, 0.18);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.locale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.locale img { width: 10px; height: 16px; }

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 34px;
}
.nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244, 235, 218, 0.68);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.phone {
  font-size: 20px;
  font-weight: 300;
  color: rgba(244, 235, 218, 0.84);
  white-space: nowrap;
}

.socials { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.socials a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.socials a:hover { opacity: 1; transform: translateY(-3px); }
.socials--lg { gap: 22px; }
.socials--lg a { width: auto; height: auto; }

.ico-ig { position: relative; display: block; }
.ico-ig img { position: absolute; }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(228, 199, 126, 0.5);
  background: none;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.site-header.is-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.site-header.is-open .burger span:nth-child(2) { opacity: 0; }
.site-header.is-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -12% 0 -12% 0;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  position: absolute;
  left: 52.34%;   /* x = 1005 из 1920 */
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* растушёвка фона в фотографию: 399px от левого края кадра */
.hero__veil--left {
  left: 52.34%;
  right: auto;
  width: 20.78%;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 100%);
}
.hero__veil--glow {
  background: radial-gradient(40.4% 55% at 6.7% 88%, rgba(110, 17, 34, 0.6) 0%, rgba(110, 17, 34, 0) 68%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--shell), 100% - var(--gutter) * 2);
  margin-inline: auto;
  padding: 180px 0 130px;
  will-change: transform;
}

.hero__kicker {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 26px;
}

.hero h1 { color: var(--cream); max-width: min(915px, 100%); }
.hero h1 .line--gold { color: var(--gold); display: block; }

.hero__sub {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.4;
  color: rgba(244, 235, 218, 0.9);
  max-width: none;
  margin: 30px 0 44px;
}

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

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 235, 218, 0.5);
}
.scroll-hint i {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(228, 199, 126, 0.8), rgba(228, 199, 126, 0));
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Секции ---------- */

.section { position: relative; padding: clamp(90px, 10vw, 150px) 0; }
.section--cream { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }
.section--green { background: var(--green); color: var(--cream); }
.section--burgundy { background: var(--burgundy); color: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }

/* ---------- 01. Обо мне ---------- */

.about__grid {
  display: grid;
  /* 667 / 723 из макета, промежуток 39 */
  grid-template-columns: 667fr 723fr;
  gap: clamp(28px, 2.8vw, 39px);
  align-items: start;
}

.frame {
  position: relative;
  overflow: hidden;
  background: #ded2bb;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.frame--tall { aspect-ratio: 667 / 715; }
.frame--wide { aspect-ratio: 675 / 452; }
.frame--audience { aspect-ratio: auto; }
/* node 83:68 — картинка 124.42% высоты со сдвигом -18.63% */
.frame--about img { height: 124.42%; margin-top: -18.63%; }
.frame--audience img { height: 112%; margin-top: -6%; }

.about__body p:not(.eyebrow):not(.quote) { margin: 0 0 22px; color: var(--ink-78); max-width: 710px; }
.about__body .quote { margin-top: 40px; max-width: 505px; }

/* ---------- Бегущая строка ---------- */

.marquee {
  background: var(--burgundy);
  border-block: 1px solid rgba(168, 133, 58, 0.5);
  overflow: hidden;
  padding: 15px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__item {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  padding-inline: 30px;
}
.star {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--gold);
  overflow: visible;
}

/* ---------- 02. Форматы ---------- */

.section-head {
  display: grid;
  grid-template-columns: 51.3% 48.7%;   /* абзац начинается на x=981 из 1417 */
  column-gap: 0;
  row-gap: 32px;
  align-items: end;
  margin-bottom: clamp(46px, 5vw, 78px);
}
.section-head h2 { color: inherit; padding-right: 40px; }
.section-head > p {
  margin: 0;
  font-size: 15px;
  color: var(--cream-64);
  max-width: none;
}

.formats { border-top: 1px solid var(--cream-20); }

.format {
  display: grid;
  /* доли из макета: 50 / 524 / 724 / 119 из 1417 */
  grid-template-columns: 3.53% 36.98% 51.1% 8.39%;
  gap: 0;
  align-items: center;
  padding: 34px 6px;
  border-bottom: 1px solid var(--cream-20);
  position: relative;
  transition: background-color 0.5s var(--ease);
}
.format::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(228, 199, 126, 0.1), rgba(228, 199, 126, 0));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.format:hover::before { opacity: 1; }
.format > * { position: relative; }
.format__num {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.format h3 { color: var(--cream); padding-right: 28px; transition: transform 0.5s var(--ease); }
.format:hover h3 { transform: translateX(8px); }
.format p {
  margin: 0;
  padding-right: 28px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--cream-64);
}
.format__tag {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(228, 199, 126, 0.9);
  text-align: left;
  white-space: nowrap;
}

/* ---------- 03. Пять причин ---------- */

.reasons__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}
.reasons__head h2 { max-width: none; font-size: clamp(38px, 4.6vw, 66px); }

.reasons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.reason {
  position: relative;
  transition: transform 0.55s var(--ease);
}
.reason > * { position: relative; z-index: 1; }
.reason::before {
  content: "";
  position: absolute;
  inset: -24px -12px;
  background: rgba(168, 133, 58, 0.09);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.reason::after {
  content: "";
  position: absolute;
  inset: auto -12px -24px;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--ease);
}
.reason:hover { transform: translateY(-6px); }
.reason:hover::before { opacity: 1; }
.reason:hover::after { transform: scaleX(1); }
.reason__num {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 22px;
  transition: color 0.45s var(--ease), transform 0.55s var(--ease);
}
.reason:hover .reason__num { color: var(--burgundy); transform: translateY(-5px); }
.reason h3 { transition: color 0.4s var(--ease); }
.reason:hover h3 { color: var(--burgundy); }
.reason h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.reason p {
  margin: 0;
  font-size: 15px;
  line-height: 1.47;
  color: var(--ink-70);
}

/* ---------- 04. Для кого ---------- */

.audience__grid {
  display: grid;
  /* 675 / 635 из макета, промежуток 52 */
  grid-template-columns: 675fr 635fr;
  column-gap: clamp(30px, 3.7vw, 52px);
  align-items: stretch;
}
.audience__left { display: flex; flex-direction: column; }

.audience__left h2 { max-width: 605px; margin-bottom: 34px; }
.audience__left > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 18, 16, 0.72);
  max-width: 635px;
  margin: 0 0 48px;
}
/* фото растягивается до низа списка */
.audience__left .frame { flex: 1 1 auto; min-height: 400px; }

.who {
  display: flex;
  flex-direction: column;
  padding-top: 41px;   /* высота строки «04 — Для кого» вместе с отступом */
}
.who__item { flex: 1 1 auto; }
.who__item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: max-content max-content;
  align-content: center;
  gap: 4px 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-18);
}
.who__item > * { position: relative; z-index: 1; }
.who__item::before {
  content: "";
  position: absolute;
  inset: 0 -18px;
  background: rgba(168, 133, 58, 0.1);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.who__item::after {
  content: "";
  position: absolute;
  inset: auto -18px -1px;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--ease);
}
.who__item:hover::before { opacity: 1; }
.who__item:hover::after { transform: scaleX(1); }
.who__item h3,
.who__num { transition: color 0.4s var(--ease), transform 0.5s var(--ease); }
.who__item:hover h3 { color: var(--burgundy); transform: translateX(6px); }
.who__item:hover .who__num { color: var(--burgundy); }

.who__num {
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 3px;
}
.who h3 {
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--green);
}
.who p {
  grid-column: 2;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 46ch;
}

/* ---------- 05. Студия ---------- */

.place__grid {
  display: grid;
  /* 635 / 721 из макета, промежуток 58 */
  grid-template-columns: 635fr 721fr;
  gap: clamp(32px, 4.1vw, 58px);
  align-items: stretch;
}
.place h2 { max-width: none; margin-bottom: 30px; }
.place .lede { margin: 0 0 40px; max-width: 480px; }

.facts { background: var(--ink-18); display: grid; gap: 1px; margin-bottom: 38px; }
.facts__row {
  background: var(--cream);
  display: grid;
  grid-template-columns: 208px 1fr;
  align-items: center;
  padding: 18px 0;
}
.facts dt {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.facts dd {
  margin: 0;
  font-size: 16px;
  color: rgba(26, 18, 16, 0.85);
}

.map {
  position: relative;
  min-height: 437px;
  overflow: hidden;
  background: #e8e2d4;
}
.map img { width: 100%; height: 122%; margin-top: -11%; object-fit: cover; will-change: transform; }
.map__pin {
  position: absolute;
  left: 42%;
  top: 45%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 0 rgba(110, 17, 34, 0.55);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 26px rgba(110, 17, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 17, 34, 0); }
}
.map__link {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 16px;
}

/* ---------- 06. Выступление ---------- */

.performance { padding: 0; overflow: hidden; }
.performance__grid {
  display: grid;
  grid-template-columns: 48.5% 51.5%;   /* фото 0–930, текст с 1013 из 1917 */
  min-height: 900px;
}
.performance__media { position: relative; overflow: hidden; }
.performance__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* обрезается по бокам, по высоте — целиком */
  object-position: 50% 50%;
}
.performance__body {
  padding: clamp(70px, 7.5vw, 110px) clamp(24px, 3vw, 56px) clamp(70px, 7.5vw, 110px)
    clamp(30px, 4.3vw, 83px);
  align-self: center;
  max-width: 688px;
}
.performance__body h2 { color: var(--cream); max-width: 480px; margin-bottom: 34px; }
.performance__body > p:not(.eyebrow):not(.performance__label):not(.quote) {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-86);
  max-width: 470px;
}
.performance__label {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gold);
  margin: 36px 0 16px;
}

.checklist { list-style: none; margin: 0 0 46px; padding: 0; max-width: 510px; }
.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-86);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.specs { background: rgba(244, 235, 218, 0.24); display: grid; gap: 1px; max-width: 605px; }
.specs__row {
  background: var(--burgundy);
  display: grid;
  grid-template-columns: 187px 1fr;
  padding: 17px 0;
}
.specs dt {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.specs dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 235, 218, 0.88);
}

.performance .quote {
  color: var(--gold);
  font-size: clamp(21px, 1.9vw, 24.5px);
  line-height: 1.548;
  max-width: 450px;
  margin: 46px 0;
}

/* ---------- 07. FAQ ---------- */

.faq { max-width: 1040px; }
.faq__item { border-bottom: 1px solid rgba(228, 199, 126, 0.24); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--cream);
  transition: color 0.35s;
}
.faq__q:hover { color: var(--gold); }
.faq__q i {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq__q i::before,
.faq__q i::after {
  content: "";
  position: absolute;
  background: var(--gold-deep);
  transition: transform 0.45s var(--ease), background-color 0.35s;
}
.faq__q i::before { left: 0; top: 8px; width: 18px; height: 1px; }
.faq__q i::after { left: 8px; top: 0; width: 1px; height: 18px; }
.faq__item.is-open .faq__q i::after { transform: scaleY(0); }
.faq__item.is-open .faq__q i::before { background: var(--gold); }
.faq__item.is-open .faq__q { color: var(--gold); }

.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.5s var(--ease);
}
.faq__a p {
  margin: 0 0 30px;
  padding-right: 60px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 235, 218, 0.7);
  max-width: 70ch;
}

/* ---------- CTA ---------- */

.cta { position: relative; overflow: hidden; }
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta h2 {
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: 0.98;
  color: var(--cream);
}
.cta h2 span { display: block; color: var(--gold); }
.cta__body p {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 235, 218, 0.84);
  max-width: 46ch;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.btn-icon {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  flex-shrink: 0;
  background: var(--green);
  border: 1px solid rgba(228, 199, 126, 0.55);
  transition: background-color 0.35s, transform 0.45s var(--ease);
}
.btn-icon:hover { background: rgba(228, 199, 126, 0.14); transform: translateY(-3px); }
.btn-icon .ico-ig { transform: scale(1.4); }
.cta__tel {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-bottom: 0;
  white-space: nowrap;
  transition: color 0.3s;
}
.cta__tel:hover { color: var(--cream); }
.cta__meta {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 235, 218, 0.6);
  margin: 0 0 28px;
}

/* ---------- Футер ---------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(228, 199, 126, 0.22);
  padding: 30px 0;
}
.site-footer .shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.site-footer a { position: absolute; right: 0; }
.site-footer p {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(244, 235, 218, 0.55);
}
.site-footer a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Появление при скролле ---------- */

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-mask { overflow: hidden; }
.reveal-mask > * {
  display: block;
  transform: translateY(100%);
  transition: transform 1s var(--ease);
}
.reveal-mask.is-in > * { transform: none; }

/* однострочные строки из макета — только там, где хватает ширины */
@media (min-width: 901px) {
  .hero__sub { white-space: nowrap; }
  .place h2 { white-space: nowrap; }
  .reasons__head h2 { white-space: nowrap; }
}
@media (min-width: 1240px) {
  /* строка прижата к правому краю колонки — заканчивается там же,
     где заканчиваются строки форматов ниже */
  .section-head > p { white-space: nowrap; justify-self: end; }
}

/* ---------- Адаптив ---------- */

@media (max-width: 1180px) {
  .format { grid-template-columns: 46px 1fr 1.2fr; }
  .format__tag { grid-column: 2 / -1; text-align: left; }
  .reasons { grid-template-columns: repeat(2, 1fr); gap: 44px 30px; }
  .performance__grid { grid-template-columns: 1fr; min-height: 0; }
  .performance__media { height: 60vh; }
  .nav { display: none; }
  .phone { display: none; }
  .burger { display: block; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .about__grid,
  .audience__grid,
  .place__grid,
  .cta__grid,
  .section-head,
  .reasons__head { grid-template-columns: 1fr; display: grid; }
  .reasons__head { gap: 24px; }
  .hero__media img { left: 0; width: 100%; object-position: 68% 26%; opacity: 0.65; }
  .hero__veil--left { left: 0; width: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.95)); }
  .format { grid-template-columns: 40px 1fr; }
  .format p, .format__tag { grid-column: 1 / -1; }
  .facts__row, .specs__row { grid-template-columns: 1fr; gap: 6px; }
  .reasons { grid-template-columns: 1fr; }
  .map { min-height: 280px; aspect-ratio: 722 / 437; }
  .site-footer .shell { flex-wrap: wrap; justify-content: flex-start; }
  .site-footer a { position: static; }
  .who { padding-top: 0; }
  .audience__left .frame { min-height: 0; }
  .frame--audience { aspect-ratio: 675 / 452; }
  .header-row .socials { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-mask > * { opacity: 1; transform: none; }
}
