/* ============================================================
   EXEMERA — дизайн-система сайта
   Тема «Gilded Ivory»: тёплые светлые фоны / тёплый графит /
   фирменный золотой акцент (#b89b6f — из айдентики exe). Шрифт: Onest (единая гарнитура, как в макетах Figma)
   ============================================================ */

:root {
  --ink: #2b241b;
  --ink-soft: #6e6353;
  --paper: #faf8f4;
  --paper-deep: #f1ebdf;
  --white: #ffffff;
  --accent: #b89b6f;
  --accent-deep: #8a6f45;
  --accent-faint: rgba(184, 155, 111, 0.12);
  --line: rgba(43, 36, 27, 0.13);
  --line-light: rgba(250, 248, 244, 0.18);

  --font-display: "Playfair Display", "Onest", Georgia, "Times New Roman", serif;
  --font-body: "Onest", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --w-content: 1200px;
  --w-narrow: 820px;
  --r: 10px;

  --t: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* страховка от микропереливов на узких экранах */
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--white); }

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

h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h3 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-size: clamp(1.2rem, 1.9vw, 1.42rem);
}

h1 em, h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent-deep), #c8ab7d 40%, var(--accent-deep) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 44em;
}

.muted { color: rgba(43, 36, 27, 0.6); }

/* ---------- каркас ---------- */

.wrap {
  width: min(var(--w-content), calc(100% - 48px));
  margin-inline: auto;
}
.wrap--narrow { width: min(var(--w-narrow), calc(100% - 48px)); }

.section { padding: clamp(68px, 9vw, 118px) 0; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .muted { color: rgba(250, 248, 244, 0.6); }
.section--dark .lead { color: rgba(250, 248, 244, 0.8); }
.section--deep { background: var(--paper-deep); }
.section--white { background: var(--white); }

.section-head {
  max-width: 740px;
  margin-bottom: clamp(38px, 5.5vw, 64px);
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 16px; }

/* ---------- шапка ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.6);
  transition: background var(--t), box-shadow var(--t);
}
.header.is-solid {
  background: rgba(250, 248, 244, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}

.logo { display: inline-flex; align-items: center; position: relative; z-index: 120; }
.logo img { height: 26px; width: auto; }
.footer .logo img { height: 30px; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}
.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(43, 36, 27, 0.72);
  transition: color var(--t);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  z-index: 120;
  color: var(--ink);
}
.burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: currentColor;
  transition: transform var(--t), opacity var(--t);
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
body.menu-open .burger { color: var(--paper); }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn:hover { background: var(--ink); color: var(--paper); }

.btn--solid {
  /* по брендбуку v2.0: текст кнопки — графит на золоте (контраст 5.8:1) */
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.btn--solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--paper); }
/* shimmer-блик, пробегающий по кнопке (стиль 21st.dev) */
.btn--solid::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn--solid:hover::before { left: 130%; }
.btn--solid > * { position: relative; }

.btn--gold { border-color: var(--accent); color: var(--accent); }
.btn--gold:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.btn--light { border-color: rgba(250, 248, 244, 0.5); color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn .arr { transition: transform var(--t); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- hero главной: сплит с фото ---------- */

.hero {
  position: relative;
  padding: 150px 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, var(--accent-faint), transparent 60%),
    var(--paper);
  overflow: hidden;
}
/* точечный паттерн (стиль 21st.dev) — деликатная текстура за контентом */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(43, 36, 27, 0.14) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 65% 70% at 78% 25%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 78% 25%, #000, transparent 72%);
  pointer-events: none;
}
.hero__in { position: relative; z-index: 1; }

.hero__in {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero .eyebrow { margin-bottom: 22px; }
.hero .lead { margin-top: 24px; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero__img {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 32px 64px -32px rgba(43, 36, 27, 0.35);
  aspect-ratio: 4 / 3.4;
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.chip {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.chip b { font-size: 0.95rem; font-weight: 800; color: var(--ink); }
.chip span { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(44,36,32,0.55); }

/* hero подстраниц */
.hero--page {
  padding: 150px 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(ellipse 55% 60% at 92% 10%, var(--accent-faint), transparent 60%),
    var(--paper);
}
.hero--page .hero__in { display: block; }
.hero--page h1 { max-width: 16em; }

/* ---------- сетки и карточки ---------- */

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* грид-дети не должны распирать колонку своим содержимым */
.grid > *, .split > *, .hero__in > *, .contact-grid > *, .steps > * { min-width: 0; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
/* spotlight: подсветка следует за курсором (стиль 21st.dev) */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(184, 155, 111, 0.12), transparent 65%);
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -26px rgba(43, 36, 27, 0.28);
  border-color: rgba(184, 155, 111, 0.45);
}
.card h3 { margin-top: 2px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card .num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.card__link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.card__link .arr { transition: transform var(--t); }
.card:hover .card__link .arr { transform: translateX(5px); }

.dir-card { min-height: 320px; }
.dir-card .tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(43, 36, 27, 0.66);
  background: var(--paper);
  white-space: nowrap;
}
.section--dark .tag { border-color: var(--line-light); color: rgba(247,243,236,0.72); background: transparent; }

/* ---------- фото/видео и заглушки ---------- */

.media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 4 / 3;
}
.media--wide { aspect-ratio: 16 / 9; }
.media--tall { aspect-ratio: 3 / 4; }

/* --- фото внутри блоков: баннер под заголовком и пара вертикальных кадров --- */
.section-photo { margin: 0 0 clamp(32px, 4.5vw, 52px); }
.section-photo.media--banner { aspect-ratio: 21 / 9; }
.photo-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin: 0 0 clamp(32px, 4.5vw, 52px);
}
.photo-duo .media { aspect-ratio: 3 / 4; }
@media (max-width: 760px) {
  .section-photo.media--banner { aspect-ratio: 4 / 3; }
  .photo-duo { gap: 12px; }
}
.media img, .media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.media:hover img { transform: scale(1.04); }

.media__ph {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(184, 155, 111, 0.16), transparent 65%),
    linear-gradient(160deg, #f1ebdf, #ece2cf);
}
.media.is-empty .media__ph { display: flex; }
.media.is-empty img, .media.is-empty video { display: none; }
.media__ph svg { width: 44px; height: 44px; stroke: var(--accent); opacity: 0.9; }
.media__ph span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(43, 36, 27, 0.5);
}

.media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 22px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(transparent, rgba(28, 23, 16, 0.72));
  opacity: 0;
  transition: opacity var(--t);
}
.media:hover figcaption { opacity: 1; }
.media.is-empty figcaption { display: none; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery .media { aspect-ratio: 3 / 4; }

/* ---------- шаги процесса ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 30px;
}
.step {
  counter-increment: step;
  position: relative;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}
.section--dark .step { border-top-color: var(--line-light); }
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }
.section--dark .step p { color: rgba(250, 248, 244, 0.65); }

/* ---------- полоса фактов ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.fact {
  padding: clamp(26px, 3.2vw, 46px) 24px;
  text-align: center;
}
.fact + .fact { border-left: 1px solid var(--line); }
.fact b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.fact span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 36, 27, 0.55);
}

/* ---------- сплит-блок ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.split .eyebrow { margin-bottom: 16px; }
.split h2 { margin-bottom: 18px; }
.split p + p { margin-top: 14px; }
.split p { color: var(--ink-soft); }

/* ---------- списки-детали ---------- */

.detail-list { list-style: none; display: grid; }
.detail-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.detail-list li::before {
  content: "—";
  color: var(--accent);
  font-weight: 700;
}
.section--dark .detail-list li { border-bottom-color: var(--line-light); color: rgba(247,243,236,0.75); }

/* ---------- сертификаты ---------- */

.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 3vw, 38px);
  text-align: center;
}
.cert b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cert b::before {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: var(--accent);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.cert p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- логотипы (поставщики / выставки) ---------- */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
}
.logo-strip img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter var(--t), opacity var(--t);
}
.logo-strip img:hover { filter: none; opacity: 1; }

.expo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.expo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 20px 20px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.expo:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -20px rgba(44,36,32,0.25); }
.expo img {
  height: 52px;
  width: auto;
  max-width: 82%;
  object-fit: contain;
  margin: 0 auto 14px;
}
.expo b { display: block; font-size: 0.92rem; font-weight: 700; }
.expo span { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(44,36,32,0.5); }

/* ---------- таблица (мезококтейли) ---------- */

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}
.table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 16px 20px;
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}
.table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.table td:first-child { color: var(--ink); font-weight: 600; }
.table tr:last-child td { border-bottom: 0; }

/* ---------- видео ---------- */

.video-frame {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 32px 64px -32px rgba(0, 0, 0, 0.5);
}
.video-frame video { width: 100%; display: block; }

/* ---------- CTA-блок: светлый, с вращающейся градиентной рамкой ---------- */

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.cta {
  background: var(--white);
  color: var(--ink);
  border-radius: calc(var(--r) + 6px);
  padding: clamp(46px, 7vw, 90px) clamp(28px, 6vw, 96px);
  position: relative;
  isolation: isolate; /* ::before с z-index:-1 остаётся рамкой, не заливает фон */
  text-align: center;
  box-shadow: 0 24px 60px -32px rgba(184, 155, 111, 0.35);
}
/* анимированная кромка (стиль 21st.dev gradient border):
   градиент виден только в 2px-кольце за счёт mask-composite */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--angle),
    rgba(184, 155, 111, 0.15) 0%,
    rgba(184, 155, 111, 0.15) 55%,
    #d6c3a1 70%,
    var(--accent) 78%,
    #d6c3a1 86%,
    rgba(184, 155, 111, 0.15) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: spin-border 6s linear infinite;
}
@keyframes spin-border {
  to { --angle: 360deg; }
}
.cta > * { position: relative; }
.cta h2 { max-width: 20em; margin-inline: auto; }
.cta p { max-width: 42em; margin: 16px auto 0; color: var(--ink-soft); }
.cta .btn { margin-top: 34px; }

/* ---------- coming soon (собственные бренды) ---------- */

.soon-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
}
.soon-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--accent-faint);
}
.soon-card .badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184, 155, 111, 0.5);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.soon-card h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 12px; }
.soon-card p { color: var(--ink-soft); max-width: 36em; }

/* ---------- контакты ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
}
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item .lbl {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.contact-item a, .contact-item span.val {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.contact-item a:hover { color: var(--accent); }

.form { display: grid; gap: 18px; }
.form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 36, 27, 0.55);
  margin-bottom: 8px;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color var(--t);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--accent);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: 0.8rem; color: rgba(43, 36, 27, 0.5); }

/* ---------- футер ---------- */

.footer {
  background: var(--paper-deep);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(52px, 7vw, 84px) 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer .logo { margin-bottom: 16px; }
.footer p { font-size: 0.88rem; color: rgba(43, 36, 27, 0.6); max-width: 26em; }
.footer h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  font-size: 0.9rem;
  color: rgba(43, 36, 27, 0.66);
  transition: color var(--t);
}
.footer ul a:hover { color: var(--accent-deep); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.78rem;
  color: rgba(43, 36, 27, 0.45);
}

/* ---------- reveal-анимации ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.85s ease;
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- входная анимация hero ---------- */

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes img-in {
  from { opacity: 0; transform: translateY(20px) scale(1.04); clip-path: inset(8% 8% 8% 8% round 10px); }
  to { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round 10px); }
}
.hero .eyebrow, .hero h1, .hero .lead, .hero__cta, .hero__chips {
  animation: rise-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero .lead { animation-delay: 0.28s; }
.hero__cta { animation-delay: 0.4s; }
.hero__chips { animation-delay: 0.52s; }
.hero__img {
  animation: img-in 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}
.hero__img img { will-change: transform; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- бесконечная лента логотипов ---------- */

.logo-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee .logo-strip {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: clamp(48px, 6vw, 88px);
  padding-right: clamp(48px, 6vw, 88px);
  animation: marquee 32s linear infinite;
}
.logo-marquee:hover .logo-strip { animation-play-state: paused; }
.logo-marquee .logo-strip img { flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero .eyebrow, .hero h1, .hero .lead, .hero__cta, .hero__chips, .hero__img { animation: none; }
  .logo-marquee .logo-strip { animation: none; }
  h1 em, h2 em { animation: none; }
  .cta::before { animation: none; }
  .btn--solid::before { display: none; }
  html { scroll-behavior: auto; }
}

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(odd) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .expo-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  /* ниже 1200px пункты меню (с эмблемой экосистемы) не помещаются — бургер */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: #201b14;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
  }
  .nav a { font-size: 1.05rem; color: rgba(250, 248, 244, 0.85); }
  .nav a:hover, .nav a.is-active { color: var(--paper); }
  body.menu-open .nav { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  body.menu-open .header {
    background: transparent;
    box-shadow: none;
    /* критично: backdrop-filter делает шапку containing block для
       fixed-меню — на iOS меню сжималось до полоски шапки */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .burger { display: block; }
}

@media (max-width: 860px) {
  .hero__in { grid-template-columns: 1fr; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .gallery { grid-template-columns: 1fr; }
  .gallery .media:nth-child(1) { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .expo-grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   Полировка по скиллам: taste-skill (анти-слоп) + emil-design-eng
   (быстрая моторика). Оверрайды ниже сознательно перекрывают базу.
   ============================================================ */

/* шиммер-градиент в заголовках — вечный декоративный цикл, убран */
h1 em, h2 em {
  animation: none;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--accent-deep);
  -webkit-text-fill-color: var(--accent-deep);
}

/* dot-паттерн приглушён: текстура фона не должна спорить с фото */
.hero::after { opacity: 0.5; }

/* полоса доверия под hero */
.hero { padding-bottom: clamp(32px, 4vw, 48px); }

:root {
  /* сильные кастомные кривые вместо встроенных CSS-изингов */
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
}

/* --- reveal: короткая дистанция, быстрый вход, без blur и scale --- */
.reveal {
  transform: translateY(10px);
  filter: none;
  transition: opacity 0.35s var(--ease-out-strong), transform 0.35s var(--ease-out-strong);
}
.reveal[data-delay="1"] { transition-delay: 0.05s; }
.reveal[data-delay="2"] { transition-delay: 0.1s; }
.reveal[data-delay="3"] { transition-delay: 0.15s; }

/* --- входная анимация hero: каскад 60ms, вход 450ms --- */
.hero .eyebrow, .hero h1, .hero .lead, .hero__cta, .hero__chips {
  animation-duration: 0.45s;
  animation-timing-function: var(--ease-out-strong);
}
.hero .eyebrow { animation-delay: 0s; }
.hero h1 { animation-delay: 0.06s; }
.hero .lead { animation-delay: 0.12s; }
.hero__cta { animation-delay: 0.18s; }
.hero__chips { animation-delay: 0.24s; }
.hero__img { animation-duration: 0.6s; animation-delay: 0.12s; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); filter: none; }
  to { opacity: 1; transform: none; filter: none; }
}

/* --- кнопки: мгновенный тактильный отклик --- */
.btn {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.16s var(--ease-out-strong);
}
.btn:active { transform: scale(0.97); }
.btn .arr { transition: transform 0.2s var(--ease-out-strong); }

/* --- шиммер в заголовках: вечный цикл, по Эмилю — убрать --- */
h1 em, h2 em {
  animation: none;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--accent-deep);
  -webkit-text-fill-color: var(--accent-deep);
}

/* --- ховеры только на устройствах с курсором --- */
@media not ((hover: hover) and (pointer: fine)) {
  .card:hover { transform: none; box-shadow: none; border-color: var(--line); }
  .card:hover::after { opacity: 0; }
  .media:hover img { transform: none; }
  .expo:hover { transform: none; box-shadow: none; }
}

/* --- карточки: быстрее и короче --- */
.card { transition: transform 0.2s var(--ease-out-strong), box-shadow 0.2s ease, border-color 0.2s ease; }
.card:hover { transform: translateY(-4px); }
.card::after { transition: opacity 0.25s ease; }

/* --- фото: зум мягче и короче --- */
.media img { transition: transform 0.45s var(--ease-out-strong); }
.media:hover img { transform: scale(1.025); }

/* --- мобильное меню: вход быстрый, выход ещё быстрее --- */
.nav { transition: opacity 0.2s ease; }
body.menu-open .nav { transition: opacity 0.25s var(--ease-out-strong); }

/* ============================================================
   Заимствования из макета development 2 (Figma):
   цитата основателя на фото и полоса «эстетика формулы»
   ============================================================ */

.quote-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
  overflow: hidden;
}
.quote-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-hero::after {
  /* мягкая световая подложка под текстом — на пёстрых участках фото
     цитата не сливается с фоном */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 62% 55% at 50% 50%, rgba(250, 248, 244, 0.62), transparent 74%);
  pointer-events: none;
}
.quote-hero__quote {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #40382c;
}
.quote-hero__quote p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.45;
}
.quote-hero__quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(74, 66, 52, 0.75);
}

.mood-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mood-strip .media { aspect-ratio: 4 / 3; }
.mood-strip .media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .quote-hero { min-height: 60vh; }
  .mood-strip { grid-template-columns: 1fr; }
}

/* карточки «задача клиента -> решение» */
.task-card__q {
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 1.02rem;
  margin-bottom: 12px;
}
.task-card h3 { margin-bottom: 8px; }

/* декоративные тонкие окружности (мотив со страницы «Миссия»,
   по просьбе владельца — для продуктовых страниц) */
.section--art { position: relative; overflow: hidden; }
.circle-art {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 92%);
  height: auto;
  color: var(--accent);
  opacity: 0.16;
  pointer-events: none;
}
.section--art .wrap { position: relative; }

/* ============================================================
   Интро-заставка главной: фирменная обложка с анимацией,
   по клику/прокрутке — плавный переход в лендинг
   ============================================================ */

.splash {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 0.7s;
}
.splash.is-leaving {
  opacity: 0;
  transform: scale(1.05);
  visibility: hidden;
  pointer-events: none;
}
body.splash-open { overflow: hidden; }
/* пока заставка открыта — каскад hero стоит на паузе и стартует после входа */
body.splash-open .hero .eyebrow,
body.splash-open .hero h1,
body.splash-open .hero .lead,
body.splash-open .hero .hero__cta,
body.splash-open .hero .hero__img { animation-play-state: paused; }

.splash__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  opacity: 0.16;
}
.splash__rings-a { animation: splash-drift 26s ease-in-out infinite alternate; transform-origin: 50% 40%; }
.splash__rings-b { animation: splash-drift 26s ease-in-out infinite alternate-reverse; transform-origin: 50% 90%; }
@keyframes splash-drift {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-26px) scale(1.035); }
}

.splash__mark {
  width: clamp(84px, 12vw, 128px);
  height: auto;
  position: relative;
  opacity: 0;
  transform: scale(0.6);
  animation: splash-pop 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.15s forwards;
}
@keyframes splash-pop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.splash__word {
  position: relative;
  margin-top: clamp(28px, 5vh, 48px);
  overflow: hidden;
}
.splash__word img {
  width: clamp(240px, 42vw, 460px);
  height: auto;
  display: block;
  transform: translateY(110%);
  animation: splash-rise 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.55s forwards;
}
@keyframes splash-rise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.splash__tag {
  position: relative;
  margin-top: clamp(16px, 3vh, 26px);
  font-size: clamp(0.72rem, 1.4vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-deep);
  text-align: center;
  padding-inline: 20px;
  opacity: 0;
  animation: splash-fade 0.8s ease 1.15s forwards;
}
@keyframes splash-fade { to { opacity: 1; } }

.splash__hint {
  position: absolute;
  bottom: clamp(26px, 5vh, 44px);
  left: 0; right: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0;
  animation: splash-hint 2.4s ease 1.9s infinite;
}
@keyframes splash-hint {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .splash__rings-a, .splash__rings-b { animation: none; }
  .splash__mark, .splash__word img, .splash__tag { animation: none; opacity: 1; transform: none; }
  .splash__hint { animation: none; opacity: 0.6; }
  .splash { transition: opacity 0.3s ease, visibility 0s 0.3s; }
  .splash.is-leaving { transform: none; }
}


/* знак «Произведено Exemera» (брендбук v2.0, ко-брендинг) */
.madeby-wrap { text-align: center; margin-top: 34px; }
.madeby {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 9px 20px;
}
.madeby img { width: 24px; height: 24px; }
.madeby span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }
.madeby-note { font-size: 0.8rem; color: var(--ink-soft); margin: 10px auto 0; max-width: 46em; }

/* слоган в футере */
.footer__slogan {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 12px 0 10px !important;
}

/* иконки шагов (пиктограммы 48x48, штрих 1.8 — брендбук v2.0) */
.step .icon {
  position: absolute;
  right: 0;
  top: 20px;
  width: 32px;
  height: 32px;
  stroke: var(--accent-deep);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

/* диаграмма экосистемы на заставке: три пересекающихся шара, эмблема в центре */
.splash__venn {
  position: relative;
  width: min(620px, 92vw, 76vh);
  aspect-ratio: 680 / 640;
  opacity: 0;
  animation: splash-fade 0.9s ease 1.3s forwards;
}
.splash__orb {
  position: absolute;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 155, 111, 0.6);
  background: rgba(241, 235, 223, 0.32);
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  padding: 0;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.splash__orb:hover, .splash__orb:focus-visible {
  background: rgba(184, 155, 111, 0.15);
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 8px rgba(184, 155, 111, 0.07);
  outline: none;
}
.splash__orb--top { left: 22%; top: 0; }
.splash__orb--left { left: 3%; bottom: 0; }
.splash__orb--right { right: 3%; bottom: 0; z-index: 1; }

.splash__orb-in {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
  left: 0; right: 0;
}
.splash__orb--top .splash__orb-in { top: 16%; }
.splash__orb--left .splash__orb-in { bottom: 20%; left: -14%; right: auto; width: 80%; }
.splash__orb--right .splash__orb-in { bottom: 20%; right: -14%; left: auto; width: 80%; }

.splash__orb-in small {
  font-size: clamp(0.5rem, 1.1vw, 0.6rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.splash__orb-in b { font-size: clamp(0.82rem, 2vw, 1.05rem); font-weight: 700; }
.splash__orb-in i {
  font-style: normal;
  font-size: clamp(0.62rem, 1.4vw, 0.74rem);
  color: var(--ink-soft);
  margin-top: 1px;
  transition: color 0.35s ease;
}
.splash__orb:hover .splash__orb-in i { color: var(--accent-deep); }

.splash__venn-mark {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 15%;
  height: auto;
  pointer-events: none;
  /* эмблема в центре — чуть ярче и сочнее фирменного золота */
  filter: saturate(1.45) brightness(1.08) drop-shadow(0 6px 20px rgba(138, 111, 69, 0.45));
}

/* «скоро»: подсказка при нажатии на будущие сайты */
.splash__toast {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  padding: 10px 22px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  white-space: nowrap;
}
.splash__toast.is-on { opacity: 1; }

/* центр заставки компактнее: словесный знак под диаграммой */
.splash .splash__word { margin-top: clamp(14px, 2.6vh, 26px); }
.splash .splash__word img { width: clamp(200px, 30vw, 320px); }
.splash .splash__tag { margin-top: clamp(10px, 1.8vh, 16px); }

@media (max-width: 640px) {
  .splash__venn { width: min(92vw, 62vh); }
  .splash__orb-in small { letter-spacing: 0.14em; }
  .splash__toast { bottom: 70px; white-space: normal; text-align: center; max-width: 86vw; }
  .splash__hint { bottom: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .splash__venn { animation: none; opacity: 1; }
}


/* возврат к заставке-экосистеме: эмблема в шапке */
.eco-link {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  transition: transform var(--t), box-shadow var(--t);
}
.eco-link img { width: 100%; height: 100%; }
.eco-link:hover { transform: scale(1.12); box-shadow: 0 0 0 4px rgba(184, 155, 111, 0.18); }
@media (max-width: 1200px) {
  .eco-link { margin-left: auto; margin-right: 14px; }
}

.splash[hidden] { display: none; }

/* юридический блок: политика, согласие, дисклеймеры */
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 10px; max-width: none; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 16px;
  cursor: pointer;
}
.consent input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--accent-deep);
}
.consent span { text-transform: none; letter-spacing: normal; font-weight: 400; }
.consent a { color: var(--accent-deep); text-decoration: underline; }
.footer__legal {
  font-size: 0.76rem;
  color: var(--ink-soft);
  max-width: none;
  margin-top: 18px;
  line-height: 1.6;
}
.footer__bottom a { color: var(--ink-soft); text-decoration: underline; }
.footer__bottom a:hover { color: var(--ink); }
.age-badge {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.table-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; max-width: none; }

/* ============================================================
   Приёмы из референсов Refero (Aesop / Prose / Hers)
   ============================================================ */

/* аккордеон «Индекс активных компонентов» */
.acc { border-top: 1px solid var(--line); max-width: 820px; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  transition: color var(--t);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--accent-deep); }
.acc__arr {
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--t);
  margin-right: 4px;
}
.acc details[open] .acc__arr { transform: rotate(225deg); }
.acc details p {
  padding: 0 2px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 62ch;
}

/* гигантский водяной знак в футере */
.footer { overflow: hidden; }
.footer__watermark {
  margin: clamp(20px, 4vw, 44px) auto -6vw;
  width: min(920px, 92%);
  opacity: 0.06;
  pointer-events: none;
}
.footer__watermark img { width: 100%; height: auto; }
