/* ═══════════════════════════════════════════════════════════════
   Витрина «Ответ» - генподряд, этап 01 Архимодного клуба.
   Стиль «Монолит»: мокрый камень, мел, кедр. Деловой, мужской,
   крепкий - канон витрин клуба. Дизайн-язык свой, не клон Elspace
   (там латунь и ночной свет, здесь камень и масштаб).
   ═══════════════════════════════════════════════════════════════ */

:root {
  --stone: #191b1c;        /* мокрый камень - не чистый чёрный */
  --stone-lift: #212425;
  --surface: #1e2122;      /* плашка на камне */
  --chalk: #e8e6e1;        /* мел - не чистый белый */
  --chalk-dim: #98968f;
  --chalk-faint: #64625c;
  --cedar: #c47a3a;        /* кедр - единственный акцент */
  --rule: #303436;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-mid: 420ms;
  --gut: clamp(1.2rem, 4vw, 4rem);
  --h1: clamp(4.5rem, 17vw, 16rem);
  --h2: clamp(2.2rem, 4.5vw, 4.4rem);
  --h3: clamp(1.15rem, 1.2vw + 0.7rem, 1.6rem);
}

* { margin: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--stone);
  color: var(--chalk);
  font-family: 'Golos Text', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: clip;
}

/* зерно: плотность в канонном коридоре 0.03-0.06 */
body::after {
  content: "";
  position: fixed; inset: -50%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-2%); } 60% { transform: translate(-2%,-4%); } 80% { transform: translate(4%,2%); }
}

h1, h2, h3 { font-weight: 800; letter-spacing: 0.005em; line-height: 1.02; text-wrap: balance; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 600; }
a { color: inherit; }
img { max-width: 100%; }

.wrap { padding-left: var(--gut); padding-right: var(--gut); max-width: 100rem; margin-inline: auto; }

/* ── шапка ── */
.top {
  /* сдвинута вниз на высоту полосы .clubbar над ней */
  position: fixed; top: 2.1rem; left: 0; right: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem var(--gut);
  background: linear-gradient(180deg, rgba(14,16,17,.88), transparent);
}
.top__logo {
  font-weight: 800; font-size: 1.15rem; letter-spacing: 0.16em;
  text-decoration: none;
}
.top__logo i { font-style: normal; color: var(--cedar); }
.top__nav { display: flex; gap: 2.2rem; }
.top__nav a {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--chalk-dim); text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.top__nav a:hover { color: var(--chalk); }
@media (max-width: 900px) { .top__nav { display: none; } }

/* ── герой: слово-плита ── */
.hero { position: relative; height: 100svh; overflow: clip; }
.hero__img { position: absolute; inset: 0; }
.hero__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.68) saturate(0.88);
  transform: scale(1.04);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,23,.25) 0%, transparent 35%, rgba(20,22,23,.94) 96%);
}
.hero__word {
  position: absolute; left: 0; right: 0; bottom: clamp(2rem, 6vh, 4.5rem);
  z-index: 2; text-align: center; padding: 0 var(--gut);
}
.hero__title {
  font-size: var(--h1);
  line-height: 0.84;
  letter-spacing: 0.01em;
  overflow: hidden;
}
.hero__title span { display: inline-block; transform: translateY(110%); }
.no-js .hero__title span { transform: none; }
/* переход по якорю меню не должен прятать заголовок под закреплённую шапку */
section[id] { scroll-margin-top: 7rem; }
.hero__title i { font-style: normal; color: var(--cedar); }
.hero__sub {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem 3rem;
  margin-top: clamp(1.2rem, 3vh, 2rem);
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--chalk-dim);
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 0.9rem; transform: translateX(-50%);
  width: 1px; height: clamp(2rem, 5vh, 3.4rem);
  background: linear-gradient(180deg, transparent, var(--cedar));
  z-index: 2;
}

/* ── появление блоков ── */
.rv { opacity: 0; transform: translateY(26px); }
.rv.in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ── полоса фактов ── */
.facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--rule); border-block: 1px solid var(--rule);
}
.facts > div {
  background: var(--stone);
  padding: clamp(1.6rem, 3vw, 2.8rem) var(--gut);
}
.facts b {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 800; line-height: 1;
  color: var(--chalk); font-variant-numeric: tabular-nums;
}
.facts b i { font-style: normal; color: var(--cedar); font-size: 0.55em; }
.facts span { color: var(--chalk-dim); font-size: 0.86rem; letter-spacing: 0.04em; }
@media (max-width: 900px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* ── слои: один в ответе за всё ── */
.layers { padding-block: clamp(5rem, 12vh, 9rem); }
.layers__head { display: flex; align-items: baseline; gap: 3rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 5vh, 3.4rem); }
.layers__note { color: var(--chalk-dim); max-width: 34em; font-size: 0.98rem; }
.lrow {
  display: grid; grid-template-columns: 5.5rem 1fr 1.2fr; gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3vh, 2.3rem) 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.lrow:last-child { border-bottom: 1px solid var(--rule); }
.lrow__n {
  font-weight: 800; font-size: 2rem; line-height: 1;
  color: var(--chalk-faint);
  transition: color 0.5s var(--ease);
}
.lrow.on .lrow__n { color: var(--cedar); }
.lrow__t { font-size: clamp(1.2rem, 1.6vw, 1.7rem); font-weight: 600; }
.lrow__d { color: var(--chalk-dim); font-size: 0.97rem; }
@media (max-width: 760px) {
  .lrow { grid-template-columns: 3rem 1fr; }
  .lrow__d { grid-column: 2; }
}

/* ── объекты: полноэкранные плиты ── */
.objs__head { padding-block: clamp(4rem, 9vh, 7rem) clamp(2rem, 5vh, 3rem); display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 1rem; }
.objs__count { color: var(--chalk-dim); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; }

.obj { position: relative; height: 94svh; overflow: clip; }
.obj + .obj { margin-top: 2px; }
.obj img {
  position: absolute; inset: -6% 0;
  width: 100%; height: 112%; object-fit: cover;
  filter: brightness(0.8) saturate(0.92);
}
.obj::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,19,20,.78) 0%, rgba(17,19,20,.28) 46%, transparent 70%),
              linear-gradient(0deg, rgba(17,19,20,.72) 0%, transparent 34%);
}
.obj__body {
  position: absolute; z-index: 2; left: var(--gut); right: var(--gut); bottom: clamp(1.8rem, 5vh, 3.6rem);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
}
.obj__m {
  font-weight: 800;
  font-size: clamp(4.6rem, 12vw, 11.5rem);
  line-height: 0.85; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.obj__m i { font-style: normal; font-size: 0.32em; color: var(--cedar); vertical-align: 0.5em; margin-left: 0.1em; letter-spacing: 0.04em; }
.obj__info { text-align: right; padding-bottom: 0.5rem; }
.obj__name { font-size: clamp(1.1rem, 1.5vw, 1.5rem); font-weight: 600; margin-bottom: 0.35rem; }
.obj__geo { color: var(--chalk-dim); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.obj__idx {
  position: absolute; z-index: 2; top: clamp(5rem, 10vh, 6.5rem); right: var(--gut);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.22em; color: var(--chalk-dim);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 760px) {
  .obj { height: 72svh; }
  .obj__body { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .obj__info { text-align: left; }
}

/* ── остальные объекты сеткой ── */
.more { padding-block: clamp(3rem, 7vh, 5rem) clamp(4rem, 9vh, 7rem); }
.more__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px;
  margin-top: clamp(1.6rem, 4vh, 2.6rem);
}
.mcard { position: relative; aspect-ratio: 4/3; overflow: clip; display: block; }
.mcard img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.mcard:hover img { filter: brightness(0.9) saturate(1); transform: scale(1.035); }
.mcard figcaption {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.75rem;
  display: flex; justify-content: space-between; gap: 0.6rem;
  font-size: 0.8rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}
.mcard figcaption i { font-style: normal; color: var(--cedar); font-variant-numeric: tabular-nums; white-space: nowrap; }
.more__foot { margin-top: 1.6rem; color: var(--chalk-dim); font-size: 0.9rem; }
.more__foot a { color: var(--cedar); }
@media (max-width: 1000px) { .more__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .more__grid { grid-template-columns: minmax(0, 1fr); } }

/* ── сервис ── */
.serv { padding-block: clamp(5rem, 12vh, 9rem); border-top: 1px solid var(--rule); }
.serv__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.serv__list { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.serv__list > div { background: var(--stone); padding: 1.4rem 1.6rem; position: relative; transition: background-color 0.5s var(--ease); }
.serv__list > div::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: var(--cedar); transform: scaleX(0); transform-origin: left center;
  transition: transform 0.55s var(--ease);
}
.serv__list > div:hover { background: var(--stone-lift); }
.serv__list > div:hover::before { transform: scaleX(1); }
.serv__list b { display: block; font-weight: 600; margin-bottom: 0.3rem; }
.serv__list p { color: var(--chalk-dim); font-size: 0.92rem; margin: 0; }
.serv__note { color: var(--chalk-dim); max-width: 36em; margin-top: 1.4rem; }
@media (max-width: 900px) { .serv__grid { grid-template-columns: 1fr; } }

/* ── кто: Дмитрий ── */
.who { padding-block: clamp(5rem, 12vh, 9rem); border-top: 1px solid var(--rule); }
.who__grid { display: grid; grid-template-columns: minmax(240px, 380px) 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.who__photo { position: relative; border: 1px solid var(--rule); padding: clamp(9px, 1vw, 14px); background: var(--surface); }
.who__photo img { display: block; width: 100%; }
.who__photo::after {
  content: ""; position: absolute; inset: clamp(9px, 1vw, 14px);
  border: 1px solid rgba(196,122,58,.4); pointer-events: none;
}
.who__role { color: var(--cedar); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.who__text p + p { margin-top: 1rem; }
.who__text p { color: var(--chalk-dim); max-width: 40em; }
.who__text .lead { color: var(--chalk); font-size: 1.15rem; }
@media (max-width: 800px) { .who__grid { grid-template-columns: 1fr; } .who__photo { max-width: 320px; } }

/* ── семинары ── */
.sem { padding-block: clamp(5rem, 12vh, 9rem); border-top: 1px solid var(--rule); }
.sem__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 6rem); }
.sem__lead { color: var(--chalk-dim); max-width: 36em; margin-top: 1.3rem; }
.sem__lead b { color: var(--chalk); font-weight: 600; }
.sem__topics { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.sem__topics li {
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline;
  padding: 0.95rem 0.2rem; border-bottom: 1px solid var(--rule);
  font-size: 0.97rem;
}
.sem__topics time { color: var(--chalk-faint); font-size: 0.8rem; letter-spacing: 0.08em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.sem__link { margin-top: 1.6rem; }
@media (max-width: 900px) { .sem__grid { grid-template-columns: 1fr; } }

/* ── клуб: цепочка с портретами ── */
.club { padding-block: clamp(5rem, 12vh, 9rem); border-top: 1px solid var(--rule); }
.club__lead { color: var(--chalk-dim); max-width: 42em; margin-top: 1.3rem; }
.chain {
  list-style: none; padding: 0;
  margin-top: clamp(2.4rem, 6vh, 4rem);
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 2px;
}
.chain__i { position: relative; background: var(--surface); padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; }
.chain__pic { aspect-ratio: 4/5; overflow: clip; background: var(--stone-lift); }
.chain__pic img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0) brightness(0.86); transition: filter 0.6s var(--ease); }
.chain__i:hover .chain__pic img { filter: saturate(0) brightness(1); }
.chain__n { font-weight: 800; font-size: 0.85rem; letter-spacing: 0.1em; color: var(--chalk-faint); }
.chain__l { font-weight: 600; font-size: 0.98rem; line-height: 1.25; }
.chain__co { color: var(--chalk-dim); font-size: 0.8rem; }
.chain__i.is-own { outline: 1px solid var(--cedar); outline-offset: -1px; }
.chain__i.is-own .chain__n, .chain__i.is-own .chain__co { color: var(--cedar); }
.chain__i.is-own .chain__pic img { filter: saturate(0) brightness(1); }
@media (max-width: 1100px) { .chain { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) { .chain { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ── контакт ── */
.contact { padding-block: clamp(5rem, 12vh, 9rem) clamp(3rem, 7vh, 5rem); border-top: 1px solid var(--rule); }
.contact__lead { color: var(--chalk-dim); max-width: 36em; margin-top: 1.3rem; }
.contact__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  margin-top: clamp(2rem, 5vh, 3rem);
  background: var(--rule); border: 1px solid var(--rule);
}
.contact__grid > div { background: var(--stone); padding: clamp(1.4rem, 2.4vw, 2.2rem); position: relative; transition: background-color 0.5s var(--ease); }
.contact__grid > div::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: var(--cedar); transform: scaleX(0); transform-origin: left center;
  transition: transform 0.55s var(--ease);
}
.contact__grid > div:hover { background: var(--stone-lift); }
.contact__grid > div:hover::before { transform: scaleX(1); }
.contact__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--chalk-faint); margin-bottom: 0.7rem; }
.contact__val { font-size: 1.05rem; line-height: 1.45; }
.contact__val a { text-decoration: none; }
.contact__grid > div:first-child .contact__val { font-weight: 800; font-size: clamp(1.3rem, 1.6vw + 0.5rem, 1.9rem); white-space: nowrap; letter-spacing: 0.01em; }
.contact__sub { display: block; color: var(--chalk-dim); font-size: 0.9rem; }
.cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: clamp(2rem, 5vh, 3rem);
  padding: 1.05rem 1.7rem;
  border: 1px solid var(--cedar);
  color: var(--cedar); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  transition: background-color var(--t-mid) var(--ease), color var(--t-mid) var(--ease);
}
.cta:hover { background: var(--cedar); color: var(--stone); }
@media (max-width: 700px) { .contact__grid { grid-template-columns: 1fr; } }

/* ── подвал ── */
.foot {
  border-top: 1px solid var(--rule);
  padding: 1.6rem var(--gut) 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: var(--chalk-faint); font-size: 0.82rem;
}
.foot a { color: var(--chalk-dim); text-decoration: none; }
.foot a:hover { color: var(--chalk); }
.foot__nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }

/* ── кнопка звука ── */
.sndbtn {
  position: fixed; right: clamp(1rem, 2vw, 1.8rem); bottom: clamp(1rem, 2vw, 1.8rem);
  z-index: 60;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  background: rgba(20, 22, 23, 0.78);
  border: 1px solid var(--rule);
  color: var(--chalk-faint);
  font-family: inherit; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
}
.sndbtn:hover { color: var(--chalk-dim); border-color: rgba(196,122,58,.4); }
.sndbtn.is-on { color: var(--cedar); border-color: rgba(196,122,58,.5); }
.sndbtn__bars { display: flex; align-items: flex-end; gap: 2px; height: 11px; }
.sndbtn__bars i { width: 2px; height: 3px; background: currentColor; }
.sndbtn.is-on .sndbtn__bars i { animation: sndBar 1.1s var(--ease) infinite alternate; }
.sndbtn.is-on .sndbtn__bars i:nth-child(2) { animation-delay: 0.18s; }
.sndbtn.is-on .sndbtn__bars i:nth-child(3) { animation-delay: 0.36s; }
.sndbtn.is-on .sndbtn__bars i:nth-child(4) { animation-delay: 0.54s; }
@keyframes sndBar { from { height: 3px; } to { height: 11px; } }
@media (max-width: 560px) { .sndbtn__t { display: none; } .sndbtn { padding: 0.6rem; } }

@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
  .rv { opacity: 1; transform: none; }
  .hero__title span { transform: none; }
  .sndbtn.is-on .sndbtn__bars i { animation: none; height: 8px; }
}


/* ── полоса-разделитель: честно говорит, что это витрина клуба ─
   Не декорация, а раскрытие роли страницы: у компании есть свой
   рабочий сайт, эта страница - показ её места в цепочке клуба. */
.clubbar {
  position: relative; z-index: 41;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem var(--gut);
  background: var(--stone-lift);
  border-bottom: 1px solid var(--rule);
  font-size: 0.76rem; letter-spacing: 0.02em;
  color: var(--chalk-faint);
}
.clubbar a { color: var(--cedar); text-decoration: none; white-space: nowrap; }
.clubbar a:hover { text-decoration: underline; }
@media (max-width: 700px) { .clubbar span:first-child { display: none; } }


/* ── частые вопросы ── */
.faqsec { padding: clamp(4rem, 10vh, 7rem) 0; border-top: 1px solid var(--rule); }
.faq { margin-top: clamp(1.6rem, 4vh, 2.6rem); border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); padding: 1.1rem 0; }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--cedar); font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { color: var(--chalk-dim); margin: 0.8rem 0 0; max-width: 42em; }

/* ── клубный слой: подпись у логотипа, фоновое слово, выход на главную ── */
.top__logo .top__club {
  margin-left: 0.55rem;
  font-family: inherit;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--cedar);
  opacity: 0.75;
  vertical-align: 0.35em;
}
.club-mark {
  position: absolute;
  left: 50%;
  bottom: -0.1em;
  transform: translateX(-50%);
  z-index: 0;
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(4rem, 13vw, 13rem);
  letter-spacing: 0.01em;
  color: var(--chalk);
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.club-home {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1.6rem;
  font-size: 0.9375rem;
  color: var(--cedar);
  border-bottom: 1px solid rgba(196,122,58,0.4);
  padding-bottom: 2px;
  transition: border-color 300ms ease, color 300ms ease;
}
.club-home:hover { color: var(--chalk); border-color: var(--chalk); }
.club-home span { display: inline-block; transition: transform 200ms ease; }
.club-home:hover span { transform: translateX(4px); }


/* ── метка клуба в правом краю шапки: один вид на всех витринах ── */
.top__nav, .top nav { margin-left: auto; }

/* club-mark: страховка от переполнения - фоновое слово шире экрана и на
   узких вьюпортах растягивало страницу вбок */
.club { position: relative; overflow: clip; }

/* ── общий знак клуба в шапке витрины ──
   один и тот же на всех шести: контур дома в языке хаба плюс подпись.
   Цвет берём у шапки через currentColor, поэтому знак одинаково живёт и
   на тёмных витринах, и на светлой «Скандик». Переход - в том же окне:
   клуб это один проект */
.club-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-left: clamp(0.8rem, 1.6vw, 1.4rem);
  align-self: center;
  text-decoration: none;
  color: inherit;
  opacity: 0.55;
  white-space: nowrap;
  transition: opacity 220ms ease;
}
.club-tag:hover { opacity: 1; }
.club-tag__mark {
  width: 1.35em; height: 1.12em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.club-tag span {
  display: inline-flex; gap: 0.34em; align-items: baseline;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: lowercase;
}
.club-tag span i { font-style: normal; opacity: 0.72; }
@media (max-width: 700px) { .club-tag span { display: none; } .club-tag__mark { width: 1.05em; height: 1.05em; } }

/* ── карточка участника целиком кликабельна ──
   ссылка стоит на display:contents, чтобы не ломать сетку карточки, но
   такой элемент не создаёт своего блока: не было ни курсора-руки, ни
   подсветки, карточка выглядела мёртвой. Растягиваем область клика
   псевдоэлементом на всю карточку и даём внятный отклик */
.chain__i { position: relative; }
.chain__link { display: contents; color: inherit; text-decoration: none; }
.chain__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 240ms ease, background-color 240ms ease;
}
.chain__i:hover .chain__link::after {
  border-color: currentColor;
  background: rgb(255 255 255 / 0.03);
}
.chain__link:focus-visible::after { border-color: currentColor; outline: 2px solid currentColor; outline-offset: 2px; }

@media (max-width: 760px) { .who__role, .chain__n { font-size: 11px; } }

/* ── мобильная доводка: пальцевые цели ──
   замер показал ссылки высотой 17-27px, точки схем 11x11 - в такое трудно
   попасть пальцем. Норма 44px, добираем отступами, чтобы не менять вид */
@media (max-width: 760px) {
  .clubbar a, .foot a, .foot__nav a, .contact a, .kontakt a,
  .chelovek__links a, .club-home, .sem__link a, .lead a {
    display: inline-block;
    padding-block: 0.55rem;
    min-height: 44px;
  }
  .club-tag {
    min-width: 44px; min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .club-tag__mark { width: 1.05em; height: 1.05em; }
  /* поля у края: текст не должен касаться границы экрана */
  h1, h2, h3, p, li { padding-inline: 0; }
  section > h2, section > p, .poryadok__title, .poryadok__cap { padding-inline: 0.2rem; }
}
@media (max-width: 760px) {
  /* поля формы и согласие: высота под палец */
  .zayavka__input, input[type=text], input[type=tel], input[type=email], textarea { min-height: 44px; padding-block: 0.7rem; }
  .zayavka__consent, label:has(input[type=checkbox]) { min-height: 44px; display: flex; align-items: center; gap: 0.6rem; }
  input[type=checkbox] { width: 22px; height: 22px; flex: none; }
}

/* ── мобильное меню: цвета витрины «Ответ» ── */
.mobmenu, .mobmenu__btn {
  --mm-bg: var(--surface);
  --mm-fg: var(--chalk);
  --mm-dim: var(--chalk-dim);
  --mm-accent: var(--cedar);
  --mm-rule: rgb(232 230 225 / 0.14);
  --mm-scrim: rgb(0 0 0 / 0.55);
}

/* ── пальцевые цели: логотип шапки, ссылка под блоком работ, кнопка звука ── */
@media (max-width: 760px) {
  .top__logo { min-height: 44px; align-items: center; }
  .more__foot a, footer a { display: inline-block; padding-block: 0.6rem; min-height: 44px; }
  .sndbtn { min-width: 44px; min-height: 44px; justify-content: center; }
  /* флажок держим у первой строки: по центру многострочной метки он висел сам по себе */
  .zayavka__consent { align-items: flex-start; padding-block: 0.3rem; }
  .zayavka__consent input { width: 20px; height: 20px; margin-top: 0.15rem; }
}

/* ── заголовки на телефоне: последнее слово не остаётся одно в строке ── */
@media (max-width: 760px) {
  h2, h3 { text-wrap: balance; }
}

/* ── поля формы на телефоне: 16px ──
   Safari на iOS сам увеличивает страницу, когда фокус попадает в поле
   с кеглем меньше 16px, и вернуть масштаб пальцами уже сложно ── */
@media (max-width: 760px) {
  .zayavka__input, .zayavka input, .zayavka textarea, .zayavka select { font-size: 16px; }
}

/* ── шапка и клубная планка на телефоне ──
   планка стала выше, когда её ссылку добрали до 44px, а шапка стояла
   фиксированно на 2.1rem от верха и налезала на неё на 29px.
   На узком экране шапка липкая: идёт следом за планкой и прилипает к верху ── */
@media (max-width: 760px) {
  .top { position: sticky; top: 0; }
}
