/* ══════════════════════════════════════════════════════════════════
   СТИЛИ СТРАНИЦЫ «МЗИАНЕТИ ВЫХОДНОГО ДНЯ»
   Базовая система — style.css (общая с index.html).
   Здесь только то, чего в общей системе ещё нет.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --ink:        #2e2117;   /* тёмные секции */
  --ink-line:   rgba(255,255,255,.14);
  --on-ink:     #d9c8b2;   /* текст на тёмном */
  --on-ink-mut: rgba(232,213,188,.66);
  --deep-green: #22432f;   /* секция «тем, кто хочет делать» */
  --ph-bg:      rgba(200,134,14,.13);
}

/* ─── ОБЩЕЕ ─── */
.wk-dark { background: var(--ink); color: var(--on-ink); }
.wk-dark h1, .wk-dark h2, .wk-dark h3 { color: #fdf6ea; }
.wk-dark .sec-hd .sub { color: var(--on-ink-mut); }
.wk-narrow { max-width: 720px; }
.wk-eyebrow {
  font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.1rem;
}
.wk-lead { font-size: clamp(1.02rem,2vw,1.18rem); line-height: 1.6; color: var(--muted); }
.wk-dark .wk-lead { color: var(--on-ink-mut); }
.wk-note { font-size: .86rem; font-style: italic; color: var(--muted); }
.ph {
  background: var(--ph-bg); border-bottom: 1px dashed var(--gold);
  padding: 0 .18em; border-radius: 3px; font-style: normal;
  overflow-wrap: anywhere; word-break: break-word;
}
.wk-dark .ph, #top .ph { background: rgba(232,160,42,.18); border-bottom-color: var(--gold-lt); color: #f6e3c4; }

/* еловая ветка-разделитель */
.wk-branch { display: block; width: 260px; max-width: 60%; height: auto; margin: 0 auto; color: var(--primary); opacity: .55; }
.wk-dark .wk-branch { color: var(--gold-lt); opacity: .45; }

/* ─── НАВИГАЦИЯ ─── */
.wk-nav { gap: 1.5rem; }
.wk-nav .wk-menu { display: flex; gap: 1.4rem; }
.wk-nav .wk-menu a { font-size: .9rem; font-weight: 600; color: var(--text); transition: color .2s; }
.wk-nav .wk-menu a:hover { color: var(--accent); }
.wk-nav .wk-nav-cta { margin-left: 1.2rem; }
.wk-burger {
  display: none; width: 46px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.wk-burger span { display: block; height: 2.5px; background: var(--text); border-radius: 2px; margin: 5px 0; transition: transform .25s, opacity .25s; }
.wk-burger.on span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.wk-burger.on span:nth-child(2) { opacity: 0; }
.wk-burger.on span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.wk-mobmenu {
  position: fixed; inset: 0; z-index: 190; background: var(--bg);
  display: none; flex-direction: column; justify-content: center; gap: 1.4rem;
  padding: 5rem 2rem 2.5rem; text-align: center;
}
.wk-mobmenu.on { display: flex; }
.wk-mobmenu a.wk-mob-link { font-family: 'Barboskin', Georgia, serif; font-size: 1.4rem; color: var(--text); }
.wk-mobmenu .wk-mob-foot { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.wk-mobmenu .wk-mob-foot a.wk-tel { font-weight: 700; color: var(--primary); }
@media (max-width: 1023px) {
  .wk-nav .wk-menu, .wk-nav .wk-nav-cta { display: none; }
  .wk-burger { display: block; }
}

/* липкая нижняя панель на мобильном */
.wk-bottombar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(250,245,238,.97); backdrop-filter: blur(10px);
  box-shadow: 0 -2px 16px rgba(61,43,30,.12);
  transform: translateY(120%); transition: transform .3s ease;
  display: none;
}
.wk-bottombar.on { transform: none; }
.wk-bottombar .btn { width: 100%; justify-content: center; }
@media (max-width: 767px) { .wk-bottombar { display: block; } body { padding-bottom: 76px; } }

/* ─── БЛОК 2 · ПЕРВЫЙ ЭКРАН ─── */
#top > .container { width: 100%; }
#top {
  background: var(--ink); color: var(--on-ink);
  padding: 8.5rem 0 4.5rem; min-height: 92vh;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.wk-hero-grid {
  display: grid; column-gap: 3.5rem; align-items: center; width: 100%;
  grid-template-columns: minmax(0,1fr);
  grid-template-areas: "brand" "eyebrow" "title" "lead" "btns" "meta";
}
.wk-brand { grid-area: brand; display: flex; align-items: center; gap: 1.15rem; margin-bottom: 1.8rem; }
.wk-brand img { height: 104px; width: auto; flex-shrink: 0; }
.wk-brand-nm {
  font-family: 'Barboskin', Georgia, serif; color: #fdf6ea;
  font-size: clamp(1.7rem,3vw,2.7rem); line-height: 1.06;
}
.wk-brand-sub { font-size: .92rem; line-height: 1.45; color: var(--on-ink); margin-top: .45rem; }
.wk-brand-gloss { font-size: .8rem; line-height: 1.45; color: var(--on-ink-mut); margin-top: .15rem; }
.wk-hero-eyebrow { grid-area: eyebrow; }
.wk-hero-title { grid-area: title; color: #fdf6ea; font-size: clamp(2.05rem,4.4vw,3.6rem); line-height: 1.07; margin-bottom: 1.4rem; }
.wk-hero-lead { grid-area: lead; font-size: clamp(1rem,1.6vw,1.16rem); line-height: 1.62; color: var(--on-ink-mut); max-width: 620px; margin-bottom: 2rem; }
.wk-hero-btns { grid-area: btns; display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.wk-hero-meta { grid-area: meta; font-size: .88rem; line-height: 1.75; color: var(--on-ink-mut); }
/* баннер первого экрана: десктоп — подложка всей секции, мобильный — кадр сверху */
.wk-hero-bg { display: block; }
.wk-hero-bg img { display: block; width: 100%; }
@media (min-width: 901px) {
  .wk-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .wk-hero-bg img { height: 100%; object-fit: cover; object-position: 74% center; }
  #top::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg,
      rgba(46,33,23,.97) 0%, rgba(46,33,23,.95) 26%,
      rgba(46,33,23,.80) 46%, rgba(46,33,23,.34) 70%, rgba(46,33,23,.12) 100%);
  }
  #top > .container { position: relative; z-index: 2; }
  .wk-brand, .wk-hero-title, .wk-hero-lead, .wk-hero-meta { max-width: 660px; }
}
.btn-ghost { background: transparent; color: var(--gold-lt); border-color: var(--gold-lt); }
.btn-ghost:hover { background: var(--gold-lt); color: var(--ink); transform: translateY(-2px); }
@media (max-width: 900px) {
  #top { min-height: auto; padding: 7rem 0 3.5rem; }
  .wk-hero-grid {
    grid-template-columns: minmax(0,1fr);
    grid-template-areas: "brand" "eyebrow" "title" "art" "lead" "btns" "meta";
    row-gap: 0;
  }
  .wk-brand { gap: .9rem; margin-bottom: 1.4rem; }
  .wk-brand img { height: 68px; }
  #top { flex-direction: column; padding-top: 5.5rem; }
  .wk-hero-bg { width: 100%; margin-bottom: 2rem; }
  .wk-hero-bg img { aspect-ratio: 16/9; object-fit: cover; object-position: 64% center; }
  .wk-hero-btns .btn { width: 100%; justify-content: center; }
}

/* ─── БЛОК 3 · СТРОКА ДОВЕРИЯ ─── */
.wk-trust { background: var(--ink); padding: 0 0 4.5rem; }
.wk-trust-inner { border-top: 1px solid var(--ink-line); padding-top: 2.75rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.wk-trust-n { font-family: 'Barboskin', Georgia, serif; font-size: clamp(1.5rem,2.6vw,2rem); color: var(--gold-lt); line-height: 1.15; margin-bottom: .45rem; }
.wk-trust-t { font-size: .89rem; line-height: 1.55; color: var(--on-ink-mut); }
@media (max-width: 767px) { .wk-trust-inner { grid-template-columns: repeat(2,1fr); gap: 1.75rem; } }

/* ─── БЛОК 4 · «ЗНАКОМО?» ─── */
.wk-known { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 1023px) { .wk-known { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px)  { .wk-known { grid-template-columns: 1fr; } }
.wk-known-card {
  position: relative; background: var(--card); border-radius: var(--r);
  padding: 2.1rem 1.6rem 1.5rem; box-shadow: var(--sh); font-size: .98rem; line-height: 1.6;
}
.wk-known-card::before {
  content: '\201C'; position: absolute; top: -.35rem; left: .7rem;
  font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: var(--primary); opacity: .28;
}
.wk-known-close {
  max-width: 760px; margin: 2.5rem auto 0; text-align: center;
  font-size: clamp(1.08rem,2.2vw,1.3rem); line-height: 1.55; font-weight: 600;
}

/* ─── БЛОК 5 · ЧТО ЭТО ─── */
.wk-ic { color: var(--primary); display: block; margin-bottom: 1rem; }
.wk-what-note { text-align: center; margin-top: 1.75rem; font-style: italic; color: var(--muted); font-size: .9rem; }

/* ─── БЛОК 6 · ДВА ЧАСА ─── */
.wk-tl-head { display: grid; grid-template-columns: 1fr 110px 1fr; gap: 0; margin-bottom: 1rem; }
.wk-tl-head div { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.wk-tl-head div:nth-child(1) { text-align: right; padding-right: 1.2rem; }
.wk-tl-head div:nth-child(3) { padding-left: 1.2rem; }
.wk-tl2 { display: grid; grid-template-columns: 1fr 110px 1fr; row-gap: 1rem; }
.wk-tl2-cell {
  min-width: 0;
  background: var(--card); border-radius: var(--r); padding: 1.1rem 1.3rem;
  box-shadow: var(--sh); font-size: .92rem; line-height: 1.55; color: var(--muted);
}
.wk-tl2-axis { position: relative; display: flex; align-items: center; justify-content: center; }
.wk-tl2-axis::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  top: -1rem; bottom: -1rem; width: 2px; background: var(--border);
}
.wk-tl2-row:first-child .wk-tl2-axis::before { top: 50%; }
.wk-tl2-dot {
  position: relative; z-index: 1; background: var(--bg);
  border: 2px solid var(--border); border-radius: 50px;
  padding: .3rem .6rem; font-size: .74rem; font-weight: 800; color: var(--muted);
  transition: color .3s, border-color .3s, background .3s;
}
.wk-tl2-dot.lit { color: #fff; background: var(--accent); border-color: var(--accent); }
.wk-tl2-row { display: contents; }
.wk-tl2-merge {
  grid-column: 1 / -1; background: var(--bg-alt); border-radius: var(--r);
  padding: 1.6rem 1.75rem; box-shadow: var(--sh); display: flex; gap: 1.25rem; align-items: center;
}
.wk-tl2-merge .wk-tl2-merge-sun { flex-shrink: 0; color: var(--gold-lt); }
.wk-tl2-merge-time { font-weight: 800; color: var(--accent); font-size: .8rem; letter-spacing: .08em; margin-bottom: .3rem; }
.wk-tl2-merge-tx { font-size: 1rem; line-height: 1.55; }
.wk-tag, .wk-tag-time { display: none; }
@media (max-width: 860px) {
  .wk-tl-head { display: none; }
  .wk-tl2 { grid-template-columns: 1fr; row-gap: .75rem; }
  .wk-tl2-axis { display: none; }
  .wk-tl2-cell { position: relative; padding-top: 2.5rem; }
  .wk-tag {
    display: inline-block; position: absolute; top: .9rem; left: 1.3rem;
    font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    padding: .18rem .55rem; border-radius: 50px;
  }
  .wk-tag-kids { background: rgba(61,158,110,.16); color: var(--pdk); }
  .wk-tag-adults { background: rgba(200,88,48,.14); color: var(--accent); }
  .wk-tag-time { display: block; position: absolute; top: .9rem; right: 1.3rem; font-size: .72rem; font-weight: 800; color: var(--muted); }
  .wk-tl2-merge { flex-direction: column; text-align: center; }
}
.wk-tl-foot { margin-top: 1.75rem; text-align: center; font-size: .93rem; color: var(--muted); }

/* ─── БЛОК 7 · ПЕРЕВОРОТ РОЛЕЙ ─── */
#wk-reversal { position: relative; overflow: hidden; }
.wk-rev-sun { position: absolute; right: -14%; bottom: -42%; width: min(760px, 88vw); color: rgba(232,160,42,.10); pointer-events: none; }
.wk-rev-inner { position: relative; z-index: 1; max-width: 900px; }
.wk-rev-claim {
  font-family: 'Barboskin', Georgia, serif; color: #fdf6ea;
  font-size: clamp(1.55rem,3.4vw,2.7rem); line-height: 1.22; margin-bottom: 2rem;
}
.wk-rev-p { font-size: clamp(1rem,1.7vw,1.16rem); line-height: 1.65; color: var(--on-ink-mut); max-width: 720px; margin-bottom: 2.5rem; }
.wk-rev-q {
  border-left: 3px solid var(--gold-lt); padding-left: 1.5rem;
  font-style: italic; font-size: 1.02rem; line-height: 1.65; color: var(--on-ink); max-width: 660px;
}
.wk-rev-q cite { display: block; margin-top: .7rem; font-style: normal; font-size: .84rem; color: var(--gold-lt); font-weight: 700; }

/* ─── БЛОК 8 · УЧРЕЖДЕНИЯ ─── */
.wk-places { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 1023px) { .wk-places { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px)  { .wk-places { grid-template-columns: 1fr; } }
.wk-place {
  min-width: 0;
  background: var(--card); border-radius: var(--r); padding: 1.6rem;
  box-shadow: var(--sh); border: 1px solid transparent;
  transition: transform .2s, border-color .2s;
}
.wk-place:hover { transform: translateY(-3px); border-color: var(--primary); }
.wk-place h3 { font-size: 1.1rem; margin: .7rem 0 .5rem; }
.wk-place p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: .8rem; }
.wk-place-book {
  font-size: .84rem; font-style: italic; color: var(--pdk);
  border-top: 1px solid var(--border); padding-top: .7rem; margin: 0;
}
.wk-places-note { margin-top: 2rem; max-width: 780px; font-size: .96rem; color: var(--muted); }
.wk-plate {
  margin-top: 1.5rem; background: var(--bg-alt); border-radius: var(--r);
  padding: 1.6rem 1.9rem; display: flex; flex-direction: column; gap: .9rem;
}
.wk-plate p { margin: 0; font-size: .95rem; line-height: 1.6; }
.wk-plate .wk-plate-ic { flex-shrink: 0; color: var(--primary); }

/* ─── БЛОК 9 · ПАСПОРТ ─── */
.wk-pass-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .wk-pass-wrap { grid-template-columns: 1fr; gap: 2.25rem; } }
.wk-pass {
  background: var(--card); border-radius: var(--r); box-shadow: var(--sh-md);
  display: grid; grid-template-columns: 1fr 1.15fr; overflow: hidden;
  transform: rotate(-4deg); position: relative;
}
@media (max-width: 900px) { .wk-pass { transform: none; grid-template-columns: 1fr; } }
.wk-pass-l { padding: 1.5rem 1.4rem; border-right: 1px dashed var(--border); }
.wk-pass-r { padding: 1.5rem 1.4rem; }
@media (max-width: 900px) { .wk-pass-l { border-right: none; border-bottom: 1px dashed var(--border); } }
.wk-pass-hdr { font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: var(--accent); margin-bottom: .9rem; }
.wk-pass-photo {
  width: 76px; height: 96px; border: 1.5px dashed var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: var(--muted); margin-bottom: 1rem;
}
.wk-pass-field { margin-bottom: .8rem; }
.wk-pass-field span { display: block; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.wk-pass-field i { display: block; height: 1px; background: var(--border); }
.wk-pass-col { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.wk-pass-rec { font-family: Georgia, serif; font-style: italic; font-size: .95rem; line-height: 1.65; color: var(--text); margin-bottom: 1rem; }
.wk-pass-rec.faded { color: var(--border); }
.wk-pass-stamp { position: absolute; right: .9rem; bottom: .9rem; color: rgba(200,88,48,.32); }
.wk-coins { display: flex; gap: .6rem; justify-content: center; margin-top: 1.4rem; color: var(--gold); }
.wk-nums { display: grid; gap: 1.5rem; }
.wk-num { display: flex; gap: 1.1rem; align-items: flex-start; }
.wk-num-n { font-family: 'Barboskin', Georgia, serif; font-size: 2.4rem; line-height: 1; color: var(--accent); flex-shrink: 0; min-width: 2.2rem; }
.wk-num h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.wk-num p { font-size: .92rem; color: var(--muted); line-height: 1.6; margin: 0; }
.wk-pass-hi {
  margin-top: 2.5rem; background: var(--card); border-radius: var(--r);
  padding: 1.9rem 2.1rem; box-shadow: var(--sh); position: relative;
  font-size: clamp(1rem,1.9vw,1.14rem); line-height: 1.6; font-weight: 600;
}
.wk-pass-hi .wk-hi-stamp { position: absolute; right: 1rem; top: 1rem; color: rgba(200,134,14,.22); }
@media (max-width: 600px) { .wk-pass-hi .wk-hi-stamp { display: none; } }

/* ─── БЛОК 10 · КЛУБ РОДИТЕЛЕЙ ─── */
.wk-parents-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .wk-parents-grid { grid-template-columns: 1fr; gap: 2rem; } }
.wk-steps { list-style: none; counter-reset: st; display: grid; gap: 1rem; }
.wk-steps li { display: flex; gap: 1rem; align-items: flex-start; font-size: .96rem; line-height: 1.6; color: var(--muted); }
.wk-steps li b { color: var(--text); }
.wk-steps li::before {
  counter-increment: st; content: counter(st);
  font-family: 'Barboskin', Georgia, serif; font-size: 1.5rem; line-height: 1;
  color: var(--accent); flex-shrink: 0; min-width: 1.5rem;
}
.wk-topics { list-style: none; margin-top: 1rem; }
.wk-topics li { display: flex; gap: .8rem; align-items: flex-start; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.wk-topics li:last-child { border-bottom: none; }
.wk-topics .wk-bullet { color: var(--gold-lt); flex-shrink: 0; margin-top: .2rem; }
.wk-chairs { color: var(--primary); display: block; margin: 0 auto; max-width: 300px; }
.wk-soft-plate {
  margin-top: 1.75rem; background: var(--bg-alt); border-radius: var(--r);
  padding: 1.5rem 1.8rem; font-size: .96rem; line-height: 1.6;
}

/* дневник родителя */
.wk-diary { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.5rem; align-items: center; margin-top: 2.5rem; }
@media (max-width: 900px) { .wk-diary { grid-template-columns: 1fr; gap: 1.5rem; } }
.wk-diary-ph { background: var(--card); border-radius: var(--r); padding: .9rem; box-shadow: var(--sh); }
.wk-diary-ph img { width: 100%; display: block; border-radius: var(--r-s); }
.wk-diary-tx h3 { font-size: clamp(1.2rem,2.2vw,1.5rem); margin-bottom: .9rem; }
.wk-diary-tx p { font-size: .96rem; line-height: 1.65; color: var(--muted); }
.wk-diary-tx p + p { margin-top: .8rem; }

/* ─── БЛОК 11 · РАСПИСАНИЕ ─── */
.wk-months { display: flex; gap: .7rem; overflow-x: auto; padding: .5rem .25rem 1.5rem; }
.wk-month {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: .45rem;
  background: var(--card); border-radius: 50px; padding: .9rem .95rem; box-shadow: var(--sh); min-width: 74px;
}
.wk-month span { font-size: .7rem; font-weight: 800; letter-spacing: .07em; color: var(--muted); }
.wk-month.fest { background: linear-gradient(135deg,#fff8ee,#fdeccd); border: 2px solid var(--gold-lt); margin-left: 1.5rem; min-width: 108px; }
.wk-month.fest span { color: var(--accent); }
.wk-month.fest em { font-size: .64rem; font-style: normal; color: var(--muted); letter-spacing: .05em; }
.wk-weeks { display: grid; gap: .6rem; }
.wk-week-row { display: grid; grid-template-columns: 70px 1fr 1fr; gap: 1rem; align-items: center; background: var(--card); border-radius: var(--r); padding: 1rem 1.3rem; box-shadow: var(--sh); }
.wk-week-row.hd { background: none; box-shadow: none; padding-top: 0; padding-bottom: .2rem; }
.wk-week-row.hd div { font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.wk-week-n { font-family: 'Barboskin', Georgia, serif; font-size: 1.35rem; color: var(--accent); }
.wk-week-c { font-size: .92rem; line-height: 1.55; }
.wk-week-c.mut { color: var(--muted); }
.wk-week-lbl { display: none; }
@media (max-width: 767px) {
  .wk-week-row { grid-template-columns: 1fr; gap: .5rem; }
  .wk-week-row.hd { display: none; }
  .wk-week-lbl { display: block; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
}

/* ─── БЛОК 12 · ТРИ СЛОЯ ─── */
.wk-layers { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
@media (max-width: 767px) { .wk-layers { grid-template-columns: 1fr; gap: 1.5rem; } }
.wk-layer h3 { margin-bottom: .9rem; color: var(--accent); }
.wk-layer ul { list-style: none; }
.wk-layer li { display: flex; gap: .7rem; align-items: flex-start; padding: .55rem 0; font-size: .93rem; line-height: 1.55; color: var(--muted); }
.wk-layer li .wk-bullet { color: var(--primary); flex-shrink: 0; margin-top: .25rem; }
.wk-rings { display: block; margin: 0 auto 2.5rem; color: var(--primary); width: 300px; max-width: 100%; }

/* ─── БЛОК 13 · ОТКУДА ЭТО ─── */
.wk-origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .wk-origin-grid { grid-template-columns: 1fr; gap: 2rem; } }
.wk-map { width: 100%; height: auto; color: var(--gold-lt); }
.wk-laws { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin: 2.5rem 0 1.75rem; }
@media (max-width: 767px) { .wk-laws { grid-template-columns: 1fr; } }
.wk-law {
  border: 1px solid var(--ink-line); border-radius: var(--r); padding: 1.6rem 1.4rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.wk-law-tx { font-family: 'Barboskin', Georgia, serif; font-size: 1.2rem; color: #fdf6ea; }
.wk-law svg { color: var(--gold-lt); }

/* ─── БЛОК 14 · КТО ВЕДЁТ ─── */
.wk-team { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media (max-width: 1023px) { .wk-team { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .wk-team { grid-template-columns: 1fr; } }
.wk-person { background: var(--card); border-radius: var(--r-l); padding: 1.4rem; box-shadow: var(--sh); }
.wk-person-ph {
  aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; margin-bottom: 1rem;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  font-family: 'Barboskin', Georgia, serif; font-size: 2rem; color: var(--primary);
}
.wk-person-ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: filter .25s; }
.wk-person:hover .wk-person-ph img { filter: none; }
.wk-person-nm { font-family: 'Barboskin', Georgia, serif; font-size: 1.08rem; margin-bottom: .3rem; }
.wk-person-role { font-size: .85rem; font-weight: 700; color: var(--accent); line-height: 1.45; margin-bottom: .45rem; }
.wk-person-ab { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.wk-team-foot { margin-top: 2rem; text-align: center; font-size: .93rem; color: var(--muted); max-width: 760px; margin-left: auto; margin-right: auto; }

/* ─── БЛОК 15 · ИСТОРИИ ─── */
.wk-stories { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 1023px) { .wk-stories { grid-template-columns: 1fr; } }
.wk-story { position: relative; background: var(--card); border-radius: var(--r); padding: 1.8rem; box-shadow: var(--sh); overflow: hidden; }
.wk-story-n { font-family: 'Barboskin', Georgia, serif; font-size: 2.6rem; line-height: 1; color: var(--accent); margin-bottom: .6rem; }
.wk-story h3 { font-size: 1.08rem; margin-bottom: .6rem; }
.wk-story p { font-size: .92rem; line-height: 1.65; color: var(--muted); margin: 0; }
.wk-story-ic { position: absolute; right: 1rem; top: 1.2rem; color: var(--primary); opacity: .3; }

/* ─── БЛОК 16 · КУДА ВЕДЁТ ─── */
.wk-stairs { display: grid; gap: 1rem; max-width: 900px; margin: 0 auto; }
.wk-stair { background: var(--card); border-radius: var(--r); padding: 1.5rem 1.8rem; box-shadow: var(--sh); border-left: 4px solid var(--border); }
.wk-stair:nth-child(1) { margin-right: 12%; border-left-color: var(--primary); }
.wk-stair:nth-child(2) { margin-left: 6%; margin-right: 6%; border-left-color: var(--gold-lt); }
.wk-stair:nth-child(3) { margin-left: 12%; border-left-color: var(--accent); }
@media (max-width: 767px) { .wk-stair, .wk-stair:nth-child(1), .wk-stair:nth-child(2), .wk-stair:nth-child(3) { margin: 0; } }
.wk-stair-lbl { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.wk-stair h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.wk-stair p { font-size: .92rem; color: var(--muted); line-height: 1.6; margin: 0; }
.wk-photo-slot {
  margin: 2.5rem auto 0; max-width: 1000px; aspect-ratio: 21/9;
  background: var(--bg-alt); border-radius: var(--r-l);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem;
  color: var(--muted); font-size: .86rem; text-align: center; padding: 1rem;
  object-fit: cover;
}
.wk-photo-slot svg { color: var(--primary); opacity: .35; }
@media (max-width: 767px) { .wk-photo-slot { aspect-ratio: 16/9; } }
.wk-link-arrow { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; color: var(--primary); border-bottom: 1px solid rgba(61,158,110,.4); }
.wk-link-arrow:hover { color: var(--pdk); }

/* ─── БЛОК 17 · СТОИМОСТЬ ─── */
.wk-price { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; max-width: 860px; margin: 0 auto 2.5rem; }
@media (max-width: 767px) { .wk-price { grid-template-columns: 1fr; } }
.wk-pc {
  min-width: 0; position: relative; background: var(--card); border-radius: var(--r-l);
  padding: 2rem; box-shadow: var(--sh); text-align: center; overflow: hidden;
  display: flex; flex-direction: column;
}
.wk-pc .btn { margin-top: auto; align-self: center; }
.wk-pc.feat { border: 2px solid var(--gold-lt); }
.wk-pc-lbl { font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.wk-pc-price { font-family: 'Barboskin', Georgia, serif; font-size: 2.3rem; color: var(--accent); margin-bottom: .15rem; }
.wk-pc-per { font-size: .88rem; color: var(--muted); margin-bottom: .9rem; }
.wk-pc p { font-size: .92rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.4rem; }
.wk-pc-stamp { position: absolute; right: -18px; bottom: -18px; color: rgba(200,88,48,.2); transform: rotate(-12deg); pointer-events: none; }
.wk-inc { max-width: 720px; margin: 0 auto; }
.wk-inc h3 { font-family: 'Nunito', sans-serif; font-size: 1.02rem; font-weight: 800; margin-bottom: 1rem; }
.wk-inc ul { list-style: none; }
.wk-inc li { display: flex; gap: .8rem; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .94rem; }
.wk-inc li:last-child { border-bottom: none; }
.wk-inc li .wk-bullet { color: var(--gold); flex-shrink: 0; margin-top: .2rem; }
.wk-money-plate { max-width: 720px; margin: 1.5rem auto 0; background: var(--card); border-radius: var(--r); padding: 1.5rem 1.8rem; box-shadow: var(--sh); font-size: .95rem; line-height: 1.65; }
.wk-money-plate + .wk-money-plate { margin-top: 1rem; }

/* ─── БЛОК 18 · ТРИ ШАГА ─── */
.wk-steps3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; position: relative; max-width: 960px; margin: 0 auto; }
@media (max-width: 767px) { .wk-steps3 { grid-template-columns: 1fr; gap: 2rem; } }
.wk-step3 { text-align: center; position: relative; }
.wk-step3-n { font-family: 'Barboskin', Georgia, serif; font-size: 4rem; line-height: 1; color: var(--accent); margin-bottom: .5rem; }
.wk-step3 h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.wk-step3 p { font-size: .93rem; color: var(--muted); line-height: 1.6; margin: 0; }
.wk-arc { position: absolute; top: 26px; color: var(--gold-lt); opacity: .6; pointer-events: none; }
.wk-arc.a1 { left: 22%; } .wk-arc.a2 { left: 55%; }
@media (max-width: 767px) { .wk-arc { display: none; } }

/* ─── БЛОК 19 · ВОПРОСЫ ─── */
.wk-faq { max-width: 820px; margin: 0 auto; }
.wk-faq-item { border-bottom: 1px solid rgba(61,43,30,.12); }
.wk-faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem;
  padding: 1.15rem 0; min-height: 48px;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text);
  transition: color .2s;
}
.wk-faq-q:hover { color: var(--accent); }
.wk-faq-pm { flex-shrink: 0; color: var(--accent); transition: transform .3s; }
.wk-faq-pm .v { transition: opacity .25s, transform .3s; transform-origin: 12px 12px; }
.wk-faq-item.open .wk-faq-pm { transform: rotate(180deg); }
.wk-faq-item.open .wk-faq-pm .v { opacity: 0; transform: scaleY(.2); }
.wk-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.wk-faq-item.open .wk-faq-a { max-height: 500px; }
.wk-faq-a p { font-size: .95rem; line-height: 1.7; color: var(--muted); padding-bottom: 1.2rem; margin: 0; }

/* ─── БЛОК 20 · ТЕМ, КТО ХОЧЕТ ДЕЛАТЬ ─── */
#wk-doers { background: var(--deep-green); color: rgba(232,242,232,.72); }
#wk-doers h2, #wk-doers h3 { color: #f2f8f0; }
#wk-doers .wk-eyebrow { color: #9ed4b0; }
.wk-roles { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 1023px) { .wk-roles { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .wk-roles { grid-template-columns: 1fr; } }
.wk-role { border: 1px solid rgba(255,255,255,.16); border-radius: var(--r); padding: 1.4rem; }
.wk-role h3 { font-size: 1.02rem; margin-bottom: .5rem; }
.wk-role p { font-size: .88rem; line-height: 1.6; margin: 0; color: rgba(232,242,232,.72); }
.wk-role-time { display: block; margin-top: .7rem; font-size: .8rem; color: #9ed4b0; font-weight: 700; }

/* ─── БЛОК 21 · ЗАЯВКА ─── */
.wk-form-lead { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; color: var(--muted); }
.wk-fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .wk-fg-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .wk-brand { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .wk-brand img { height: 76px; }
}

/* ─── ДОСТУПНОСТЬ / ДВИЖЕНИЕ ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fi { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ══════════════════════════════════════════════════════════════════
   ПРАВКИ ПО ЗАМЕЧАНИЯМ МАРКЕТОЛОГА
   ══════════════════════════════════════════════════════════════════ */

/* ─── CTA-полоса посреди страницы ─── */
.wk-cta-strip { padding: 4.5rem 0; text-align: center; }
.wk-cta-strip.wk-dark { background: var(--ink); }
.wk-cta-tx {
  font-family: 'Barboskin', Georgia, serif; color: #fdf6ea;
  font-size: clamp(1.35rem,2.8vw,2.1rem); line-height: 1.2;
  max-width: 820px; margin: 0 auto .9rem;
}
.wk-cta-sub { color: var(--on-ink-mut); font-size: 1.02rem; max-width: 640px; margin: 0 auto 2rem; }
.wk-center-cta { text-align: center; margin-top: 2.5rem; margin-bottom: 0; }
@media (max-width: 600px) {
  .wk-cta-strip .btn, .wk-center-cta .btn { width: 100%; justify-content: center; }
}

/* ─── плашка-термин ─── */
.wk-term {
  display: flex; gap: 1.1rem; align-items: flex-start; max-width: 820px; margin: 0 auto;
  background: var(--card); border-radius: var(--r); padding: 1.5rem 1.8rem;
  box-shadow: var(--sh); font-size: .98rem; line-height: 1.65; color: var(--muted);
}
.wk-term svg { flex-shrink: 0; color: var(--gold); margin-top: .2rem; }
.wk-term b { color: var(--text); }

/* ─── компактные карточки учреждений ─── */
.wk-place.slim { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem 1.4rem; }
.wk-place.slim .wk-ic { margin-bottom: 0; flex-shrink: 0; }
.wk-place.slim h3 { margin: 0 0 .3rem; font-size: 1.02rem; }
.wk-place.slim p { margin: 0; font-size: .88rem; }

/* ─── переворот ролей: усиленная строка ─── */
.wk-rev-line {
  font-family: 'Barboskin', Georgia, serif; color: #fdf6ea;
  font-size: clamp(1.15rem,2.2vw,1.5rem); line-height: 1.35;
  max-width: 820px; margin: 2.25rem 0 2.5rem;
}

/* ─── три закона на светлом фоне ─── */
.wk-laws.light .wk-law { background: var(--card); border-color: transparent; box-shadow: var(--sh); }
.wk-laws.light .wk-law-tx { color: var(--text); }
.wk-laws.light .wk-law svg { color: var(--gold); }

/* ─── фраза про лето ─── */
.wk-summer-line {
  text-align: center; font-family: 'Barboskin', Georgia, serif; color: var(--text);
  font-size: clamp(1.2rem,2.4vw,1.7rem); line-height: 1.3;
  max-width: 760px; margin: 2.5rem auto 0;
}

/* ─── три шага перед формой ─── */
.wk-steps-inline {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
  max-width: 940px; margin: 0 auto 2.5rem;
}
.wk-steps-inline div { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; line-height: 1.5; color: var(--muted); }
.wk-steps-inline span { font-family: 'Barboskin', Georgia, serif; font-size: 1.3rem; line-height: 1; color: var(--accent); flex-shrink: 0; }
@media (max-width: 767px) { .wk-steps-inline { grid-template-columns: 1fr; gap: .8rem; } }

/* ─── «не кружок, не школа, не детская комната» ─── */
.wk-nots { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.25rem; }
.wk-nots span {
  border: 1.5px solid var(--border); border-radius: 999px; padding: .55rem 1.3rem;
  font-size: .95rem; font-weight: 700; color: var(--muted); background: var(--card);
}

/* ─── фотографии ─── */
.wk-photo { max-width: 1000px; margin: 2.5rem auto 0; }
.wk-photo img {
  width: 100%; display: block; border-radius: var(--r-l);
  aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--sh-md);
}
.wk-photo-cap { text-align: center; font-size: .84rem; font-style: italic; color: var(--muted); margin-top: .8rem; }
.wk-side-photo { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); }
.wk-side-photo img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.wk-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.wk-gallery div { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh); }
.wk-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.wk-gallery div:hover img { transform: scale(1.04); }
@media (max-width: 767px) { .wk-gallery { grid-template-columns: repeat(2,1fr); gap: .7rem; } }

/* ─── единственный тариф ─── */
.wk-price.one { grid-template-columns: minmax(0,470px); justify-content: center; margin-bottom: 2.5rem; }

/* ─── внешний кадр базы, вставленный вручную ─── */
img.wk-photo-slot { max-width: 1000px; margin: 2.5rem auto 0; display: block; }

/* ─── калькулятор стоимости ─── */
.wk-calc {
  max-width: 720px; margin: 2.5rem auto 0; text-align: center;
  background: var(--card); border-radius: var(--r-l); padding: 2rem 2.25rem;
  box-shadow: var(--sh-md);
}
.wk-calc h3 { margin-bottom: 1.25rem; }
.wk-calc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 0; border-bottom: 1px solid var(--border); text-align: left;
}
.wk-calc-lbl { font-weight: 700; font-size: .97rem; }
.wk-seg { display: inline-flex; background: var(--bg-alt); border-radius: 999px; padding: 3px; }
.wk-seg button {
  border: none; background: none; padding: .5rem 1.15rem; border-radius: 999px;
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: background .2s, color .2s;
}
.wk-seg button.on { background: var(--accent); color: #fff; }
.wk-step { display: inline-flex; align-items: center; gap: .9rem; }
.wk-step button {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border); background: var(--card);
  font-size: 1.1rem; line-height: 1; color: var(--text); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.wk-step button:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.wk-step button:disabled { opacity: .3; cursor: default; }
.wk-step output { min-width: 1.4rem; text-align: center; font-weight: 800; font-size: 1.05rem; }
.wk-calc-out { padding: 1.6rem 0 .5rem; }
.wk-calc-sum { font-family: 'Barboskin', Georgia, serif; font-size: clamp(1.9rem,4.6vw,2.7rem); line-height: 1.1; color: var(--accent); }
.wk-calc-note { font-size: .95rem; color: var(--muted); margin-top: .4rem; }
.wk-calc-break { font-size: .85rem; color: var(--muted); margin-top: .9rem; }
.wk-calc-hint { font-size: .85rem; font-weight: 700; color: var(--pdk); margin-top: .5rem; }
@media (max-width: 560px) {
  .wk-calc { padding: 1.5rem 1.25rem; }
  .wk-calc-row { flex-direction: column; align-items: stretch; gap: .6rem; }
  .wk-seg { width: 100%; }
  .wk-seg button { flex: 1; }
  .wk-step { justify-content: space-between; }
  .wk-calc .btn { width: 100%; justify-content: center; }
}
.wk-calc + .wk-inc { margin-top: 3.5rem; }

/* ─── строка расчёта в форме заявки ─── */
.wk-form-calc {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(200,134,14,.10); border: 1px solid rgba(200,134,14,.28);
  border-radius: var(--r-s); padding: .85rem 1.1rem; margin-bottom: 1.5rem;
}
.wk-form-calc-lbl {
  display: block; font-size: .7rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .2rem;
}
.wk-form-calc-tx { font-size: .9rem; font-weight: 700; color: var(--text); line-height: 1.45; }
.wk-form-calc-edit { flex-shrink: 0; font-size: .84rem; font-weight: 700; color: var(--primary); border-bottom: 1px solid rgba(61,158,110,.4); }
.wk-form-calc-edit:hover { color: var(--pdk); }
@media (max-width: 560px) { .wk-form-calc { flex-direction: column; align-items: flex-start; gap: .5rem; } }

/* ─── ФИНАЛЬНЫЙ БЛОК ЗАЯВКИ НА ТЁМНО-ЗЕЛЁНОМ ─── */
.wk-green { background: var(--deep-green); }
.wk-green .wk-steps-inline div { color: var(--on-ink-mut); }
.wk-green .wk-steps-inline span { color: var(--gold-lt); }
.wk-green .form-wrap {
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
}
