/* ============================================================
   Сайт мастера маникюра — стили (M1), по дизайн-хендоффу.
   Токены из README дизайна. Палитра переключается через
   [data-palette] на <body>. Шрифты: Prata (заголовки),
   Montserrat (текст) — подключены в <head>.
   ============================================================ */

:root {
  --accent: #997799;
  --accent-deep: #7d5d80;
  --ink: #35302f;
  --ink-soft: #4a4443;
  --body-muted: #655d5b;
  --muted: #7a726f;
  --faint: #9b918e;
  --bg: #ece8e9;
  --surface: #ffffff;
  --surface-tint: #f4eff1;
  --surface-tint-2: #faf7f8;
  --footer-bg: #242021;
  --dark-cta: #35302f;
  --line: rgba(53, 48, 47, .10);
  --line-strong: rgba(53, 48, 47, .16);
  --hero-radius: 210px 210px 20px 20px;
  --shadow-card: 0 18px 40px -30px rgba(53, 48, 47, .3);
  --shadow-hero: 0 30px 70px -30px rgba(53, 48, 47, .4);
  --shadow-book: 0 40px 80px -40px rgba(45, 30, 40, .5);
}
body[data-palette="Нюд-роза"] { --accent: #c1929a; --accent-deep: #a2727b; }
body[data-palette="Терракота"] { --accent: #b5826a; --accent-deep: #966552; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Montserrat, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 92px 0; }
.section--white { background: var(--surface); }

h1, h2, h3 { font-family: Prata, Georgia, serif; font-weight: 400; margin: 0; }
.eyebrow {
  font-family: Montserrat; font-weight: 600; font-size: 12px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 14px;
}
.h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; letter-spacing: -.01em; }
.sec-head { max-width: 620px; }
.sec-head--center { margin: 0 auto 44px; text-align: center; }
.sec-head p { color: var(--body-muted); margin: 14px 0 0; text-wrap: pretty; }
.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: Montserrat; font-weight: 600; font-size: 15px;
  border: none; border-radius: 100px; padding: 14px 26px;
  cursor: pointer; transition: background .18s, filter .15s, color .18s, border-color .18s;
  line-height: 1;
}
.btn .arr { transition: transform .18s; }
.btn:hover .arr { transform: translateX(3px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); }
.btn--primary:active { filter: brightness(1.14); }
.btn--ghost { background: var(--surface-tint); color: var(--ink); }
.btn--ghost:hover { background: #ece3e6; }
.btn--ghost:active { filter: brightness(1.05); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn--outline:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { background: #c8bdc0 !important; color: #fff; cursor: not-allowed; filter: none; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(236, 232, 233, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: Prata; font-size: 22px; color: var(--ink); }
.logo__tag { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-weight: 500; font-size: 14.5px; color: var(--ink-soft); padding: 6px 0;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.nav__link:hover { color: var(--accent-deep); }
.nav__link.is-active { color: var(--accent-deep); font-weight: 600; border-bottom-color: var(--accent); }
.nav__cta { padding: 11px 20px; font-size: 14px; }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 84px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5vw, 66px); line-height: 1.08; letter-spacing: -.01em; }
.hero__sub { color: var(--body-muted); font-size: 17px; margin: 22px 0 30px; max-width: 30em; text-wrap: pretty; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 30px 40px; }
.trust__num { font-family: Prata; font-size: 30px; color: var(--accent); line-height: 1; }
.trust__label { font-size: 13px; color: var(--muted); margin-top: 6px; max-width: 9em; }
.hero__media { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--hero-radius); box-shadow: var(--shadow-hero);
  position: relative; z-index: 2;
}
.hero__blob {
  position: absolute; inset: -6% -8% auto auto; width: 62%; height: 62%;
  background: var(--accent); filter: blur(60px); opacity: .28; border-radius: 50%; z-index: 1;
}
.hero__badge {
  position: absolute; left: -14px; bottom: 26px; z-index: 3;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-card);
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.hero__badge b { color: var(--accent); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about__photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-card); }
.about p { color: var(--body-muted); margin: 0 0 16px; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 26px 0 22px; }
.fact__num { font-family: Prata; font-size: 34px; color: var(--accent); line-height: 1; }
.fact__label { font-size: 13px; color: var(--muted); margin-top: 6px; }
.diplomas { display: flex; flex-wrap: wrap; gap: 12px; }
.diploma {
  width: 96px; height: 130px; border-radius: 10px; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, #f4eff1, #f4eff1 8px, #efe7ea 8px, #efe7ea 16px);
  display: flex; align-items: flex-end; padding: 8px; cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.diploma:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.diploma span { font-family: "SF Mono", ui-monospace, monospace; font-size: 9px; color: var(--muted); line-height: 1.2; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.service {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.service:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.service__cat {
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.service h3 { font-size: 22px; line-height: 1.25; }
.service__desc { color: var(--body-muted); font-size: 14.5px; margin: 10px 0 18px; flex: 1; }
.service__meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.service__time { font-size: 13.5px; color: var(--muted); }
.service__price { font-family: Prata; font-size: 22px; color: var(--ink); }
.disclaimer { color: var(--faint); font-size: 12.5px; margin: 26px auto 0; max-width: 760px; text-align: center; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.pf {
  position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 3/4;
  cursor: pointer; background: #ddd;
}
.pf img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pf:hover img { transform: scale(1.06); }
.pf__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px; color: #fff;
  font-size: 13px; font-weight: 500;
  background: linear-gradient(transparent, rgba(30, 20, 25, .72));
}
.pf--cta {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--surface-tint); border: 1px dashed var(--line-strong); color: var(--accent-deep);
  font-weight: 600; padding: 20px; aspect-ratio: 3/4;
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.review__text { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; }
.review__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review__who b { display: block; font-size: 14px; }
.review__who span { font-size: 12.5px; color: var(--faint); }
.badge-src { font-size: 11px; font-weight: 600; color: var(--accent-deep); background: var(--surface-tint); border-radius: 100px; padding: 5px 11px; white-space: nowrap; }

/* ---------- Booking (zapis) ---------- */
.zapis { background: var(--accent); }
.zapis__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 54px; align-items: center; }
.zapis__left { color: #fff; }
.zapis__left .eyebrow { color: rgba(255, 255, 255, .82); }
.zapis__left h2 { color: #fff; }
.zapis__left p { color: rgba(255, 255, 255, .88); margin: 16px 0 24px; }
.promises { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.promises li { display: flex; align-items: flex-start; gap: 12px; color: #fff; font-size: 15px; }
.promises .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 255, 255, .22);
  display: grid; place-items: center; font-size: 12px; margin-top: 1px;
}
.book-card { background: var(--surface); border-radius: 22px; padding: 28px; box-shadow: var(--shadow-book); }

/* stepper */
.stepper { display: flex; align-items: center; margin-bottom: 24px; }
.stepper__item { display: flex; align-items: center; gap: 10px; }
.stepper__num {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; font-weight: 600; border: 1px solid transparent;
  background: #f0ebed; color: #a89ea1; transition: background .18s, color .18s;
}
.stepper__item.is-on .stepper__num { background: var(--accent); color: #fff; border-color: var(--accent); }
.stepper__item { cursor: default; }
.stepper__item.is-on { cursor: pointer; }
.stepper__label { font-size: 13px; white-space: nowrap; color: #a89ea1; font-weight: 500; }
.stepper__item.is-on .stepper__label { color: #6b6265; }
.stepper__item.is-active .stepper__label { color: var(--accent-deep); font-weight: 600; }
.stepper__bar { flex: 1; height: 2px; margin: 0 10px; border-radius: 2px; background: #e6dfe1; transition: background .18s; }
.stepper__bar.is-done { background: var(--accent); }
@media (max-width: 520px) { .stepper__label { display: none; } }

.book-step { display: none; }
.book-step.is-active { display: block; }

.svc-choice {
  width: 100%; text-align: left; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  transition: border-color .15s, background .15s; font-family: inherit;
}
.svc-choice:hover { border-color: var(--accent); }
.svc-choice.is-active { border-color: var(--accent); background: var(--surface-tint-2); }
.svc-choice__name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.svc-choice__meta { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.svc-choice__price { font-family: Prata; color: var(--ink); }

/* calendar */
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal__month { font-weight: 600; font-size: 15px; }
.cal__nav { background: var(--surface-tint); border: none; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; font-size: 15px; color: var(--ink); }
.cal__nav[disabled] { color: #cfc7c9; cursor: default; background: #f5f3f4; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal__wd { text-align: center; font-size: 11px; color: var(--faint); padding-bottom: 4px; }
.cal__day {
  aspect-ratio: 1/1; border-radius: 9px; border: 1px solid transparent; background: var(--surface-tint-2);
  font-family: inherit; font-size: 13.5px; cursor: pointer; color: var(--ink);
  display: grid; place-items: center; transition: background .12s, color .12s;
}
.cal__day[disabled] { background: transparent; color: #cfc7c9; cursor: default; }
.cal__day.is-selected { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.cal__day.is-blank { background: transparent; cursor: default; }

.times { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.times-empty { font-size: 13.5px; color: var(--muted); }
.time {
  border: none; border-radius: 100px; padding: 9px 15px; font-family: inherit; font-size: 13.5px;
  background: var(--surface-tint); color: var(--accent-deep); cursor: pointer; transition: background .12s;
}
.time[disabled] { background: #f5f3f4; color: #c3bbbd; text-decoration: line-through; cursor: default; }
.time.is-selected { background: var(--accent); color: #fff; }

.book-nav { display: flex; gap: 10px; margin-top: 20px; }
.book-summary { background: var(--surface-tint-2); border-radius: 12px; padding: 12px 14px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.field input[type="text"], .field input[type="tel"] {
  width: 100%; border: 1px solid var(--line-strong); border-radius: 12px; padding: 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
.field input:focus { outline: none; border-color: var(--accent); }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--body-muted); margin: 4px 0 4px; }
.consent input { margin-top: 3px; flex: none; }
.consent a { color: var(--accent-deep); text-decoration: underline; }
.book-done { text-align: center; padding: 8px 0; }
.book-done__check { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 26px; margin: 0 auto 14px; }
.book-done h3 { font-size: 24px; margin-bottom: 8px; }
.book-done__note { font-size: 13.5px; color: var(--body-muted); margin: 12px 0 18px; }
.book-done__note b { color: var(--ink); }
.link-reset { background: none; border: none; color: var(--accent-deep); text-decoration: underline; cursor: pointer; font-family: inherit; font-size: 13.5px; margin-top: 12px; }

/* ---------- Basic booking form ---------- */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field select, .field textarea {
  width: 100%; border: 1px solid var(--line-strong); border-radius: 12px; padding: 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
.field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.basic-hint { font-size: 12.5px; color: var(--faint); margin: 14px 0 0; text-align: center; }
@media (max-width: 420px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Contacts ---------- */
.kont__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.kont__row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.kont__row .k { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); width: 90px; flex: none; padding-top: 2px; }
.kont__row .v { color: var(--ink); font-size: 15.5px; }
.socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.social-chip { font-size: 13px; font-weight: 600; color: var(--accent-deep); background: var(--surface-tint); border-radius: 100px; padding: 8px 15px; }
.map-ph {
  aspect-ratio: 16/11; border-radius: 18px; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, #f1ecee, #f1ecee 10px, #ebe4e7 10px, #ebe4e7 20px);
  display: grid; place-items: center;
}
.map-ph span { font-family: ui-monospace, monospace; font-size: 12px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-family: inherit; font-size: 16.5px; font-weight: 500; color: var(--ink); }
.faq__sign { font-family: Prata; color: var(--accent); font-size: 22px; flex: none; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; color: var(--body-muted); font-size: 15px; }
.faq__item.is-open .faq__a { max-height: 300px; }
.faq__a-inner { padding: 0 0 20px; }

/* ---------- Final CTA ---------- */
.final { padding: 40px 0 100px; }
.final__card {
  position: relative; overflow: hidden; background: var(--dark-cta); color: #fff;
  border-radius: 26px; padding: 64px 40px; text-align: center;
}
.final__card h2 { color: #fff; }
.final__card p { color: rgba(255, 255, 255, .78); margin: 14px 0 26px; }
.final__blob { position: absolute; inset: auto auto -30% -10%; width: 50%; height: 90%; background: var(--accent); filter: blur(70px); opacity: .4; border-radius: 50%; }
.final__card > * { position: relative; z-index: 2; }
.final__card .btn--primary { background: var(--accent); }
.final__card .btn--primary:hover { background: var(--accent-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: #cfc8c9; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 60px 0 34px; }
.footer__name { font-family: Prata; font-size: 22px; color: #fff; margin-bottom: 12px; }
.footer p { font-size: 14px; line-height: 1.7; margin: 0; color: #b3abac; }
.footer h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #8f8788; margin: 0 0 14px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { font-size: 14px; color: #cfc8c9; }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0 30px; font-size: 12.5px; color: #8f8788; display: flex; flex-wrap: wrap; gap: 6px 20px; }

/* ---------- Floating CTA ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  background: var(--accent); color: #fff; border-radius: 100px; padding: 14px 22px;
  font-weight: 600; font-size: 14px; box-shadow: var(--shadow-book);
  display: inline-flex; align-items: center; gap: 8px; transition: background .18s;
}
.fab:hover { background: var(--accent-deep); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(25, 18, 22, .88);
  display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: min(880px, 92vw); max-height: 80vh; border-radius: 14px; }
.lightbox__cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #fff; font-size: 14px; }
.lightbox__x { position: absolute; top: 20px; right: 24px; font-size: 30px; color: #fff; cursor: pointer; line-height: 1; background: none; border: none; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 34px; color: #fff; cursor: pointer; background: none; border: none; padding: 10px 16px; }
.lightbox__nav--prev { left: 8px; }
.lightbox__nav--next { right: 8px; }
.lightbox__cta { position: absolute; bottom: 56px; left: 0; right: 0; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid, .about__grid, .zapis__grid, .kont__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; max-width: 420px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .burger { display: inline-flex; }
  .header__row { height: 64px; }
  .section { padding: 68px 0; }
  .container { padding: 0 20px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn { justify-content: center; }
  .fab { right: 14px; bottom: 14px; padding: 12px 18px; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); }
  .h2 { font-size: clamp(26px, 7vw, 34px); }
}

/* ---------- Юридические страницы ---------- */
.legal-top { border-bottom: 1px solid var(--line); background: var(--surface); }
.legal-top__row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.legal-back { font-weight: 600; color: var(--accent-deep); font-size: 14px; }
.legal-wrap { max-width: 820px; padding-top: 32px; padding-bottom: 70px; }
.legal-wrap h1 { font-family: Prata, serif; font-size: clamp(26px, 4vw, 38px); margin: 8px 0 18px; }
.legal-wrap h2 { font-family: Prata, serif; font-size: 20px; margin: 26px 0 8px; }
.legal-wrap p { color: var(--body-muted); margin: 0 0 12px; }
.legal-wrap a { color: var(--accent-deep); text-decoration: underline; }
.legal-note { background: #fff8f2; border: 1px solid #f0e0d2; color: #7a5c46; border-radius: 12px; padding: 14px 16px; font-size: 14px; margin-bottom: 22px; }
.legal-meta { font-size: 13.5px; color: var(--faint) !important; }
.legal-foot { margin-top: 34px; }

/* ---------- Cookie-баннер ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 760px; margin: 0 auto;
  background: var(--footer-bg); color: #e9e2e4; border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.5); font-size: 13.5px;
}
.cookie a { color: #fff; text-decoration: underline; }
.cookie button { flex: none; background: var(--accent); color: #fff; border: none; border-radius: 100px; padding: 9px 20px; font-weight: 600; cursor: pointer; font-family: inherit; }
.cookie button:hover { background: var(--accent-deep); }
@media (max-width: 560px) { .cookie { flex-direction: column; align-items: stretch; text-align: center; bottom: 84px; } }

/* Мобильное меню (простое, раскрывается по бургеру) */
.burger { background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--ink); display: block; }
.mobile-menu { display: none; background: var(--surface); border-bottom: 1px solid var(--line); }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 14px 20px; border-bottom: 1px solid var(--line); font-weight: 500; }
