:root {
  --accent: #e84b7a;
  --accent-dark: #c73662;
  --accent-soft: #fff0f5;
  --ink: #1c1c28;
  --muted: #64647a;
  --bg: #fffcfa;
  --bg-alt: #f7f4f8;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(28, 28, 40, .08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --gradient-text: linear-gradient(
    115deg,
    #b82a55 0%,
    #e84b7a 18%,
    #ff8fab 36%,
    #c4b5fd 52%,
    #f9a8d4 68%,
    #e84b7a 84%,
    #b82a55 100%
  );
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: 72px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 252, 250, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.header-row {
  display: flex; align-items: center; gap: 24px;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark { font-size: 1.75rem; }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800; color: var(--ink);
  letter-spacing: -.02em;
}
.logo__text small { font-size: 12px; color: var(--muted); font-weight: 500; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-size: 15px; font-weight: 600; color: var(--muted); transition: color .15s; }
.nav a:hover { color: var(--accent); }
.header-cta {
  padding: 10px 20px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232, 75, 122, .35);
  transition: transform .15s, background .15s;
  border: 0; font-family: inherit; cursor: pointer;
}
.header-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.burger {
  display: none; width: 44px; height: 44px;
  border: 0; border-radius: 12px; background: var(--bg-alt);
  cursor: pointer; position: relative;
}
.burger span, .burger::before, .burger::after {
  display: block; width: 20px; height: 2px; background: var(--ink);
  margin: 0 auto; border-radius: 1px;
}
.burger::before, .burger::after { content: ""; }
.burger::before { margin-bottom: 5px; }
.burger::after { margin-top: 5px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 20px rgba(232, 75, 122, .35);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: #fff; color: var(--accent-dark);
  border-color: rgba(232, 75, 122, .25);
}
.btn-soft { background: var(--accent-soft); color: var(--accent-dark); }
.btn-white { background: #fff; color: var(--accent-dark); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Hero */
.hero {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 70%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center;
}
.pill {
  display: inline-block; padding: 7px 16px;
  background: linear-gradient(135deg, #fff 0%, #fff8fb 100%);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  color: var(--accent-dark);
  border: 1px solid rgba(232, 75, 122, .15);
  box-shadow: 0 4px 16px rgba(232, 75, 122, .12);
  margin-bottom: 20px;
}

.text-shimmer {
  background: var(--gradient-text);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer 7s ease-in-out infinite;
}

@keyframes text-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  font-weight: 800; line-height: 1.1;
  margin: 0 0 20px; letter-spacing: -.03em;
}

.hero h1.text-shimmer {
  filter: drop-shadow(0 2px 12px rgba(232, 75, 122, .15));
}

.hero-lead {
  font-size: 1.125rem; line-height: 1.75;
  color: var(--muted); margin: 0 0 28px; max-width: 520px;
  font-weight: 500;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-list { list-style: none; margin: 0; padding: 0; }
.trust-list li { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }

.hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frames {
  position: relative;
  width: min(100%, 440px);
  height: 400px;
}

.hero-frame-wrap {
  position: absolute;
  animation: frame-float 5.5s ease-in-out infinite;
  will-change: transform;
}

.hero-frame-wrap--1 { width: 52%; top: 0; left: 0; z-index: 3; --rot: -4deg; animation-duration: 5s; animation-delay: 0s; }
.hero-frame-wrap--2 { width: 44%; top: 8%; right: 0; z-index: 4; --rot: 5deg; animation-duration: 6.2s; animation-delay: .8s; }
.hero-frame-wrap--3 { width: 46%; bottom: 4%; left: 6%; z-index: 2; --rot: 3deg; animation-duration: 5.8s; animation-delay: 1.6s; }
.hero-frame-wrap--4 { width: 38%; bottom: 0; right: 8%; z-index: 1; --rot: -6deg; animation-duration: 6.5s; animation-delay: 2.4s; }

@keyframes frame-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-frame-wrap:hover,
.hero-frame-wrap.is-front {
  z-index: 50;
  animation-play-state: paused;
}

.hero-frame {
  position: relative;
  display: block;
  width: 100%;
  background: #fff;
  padding: 10px 10px 28px;
  border-radius: 4px;
  box-shadow:
    0 2px 0 rgba(0,0,0,.04),
    0 16px 40px rgba(28, 28, 40, .14),
    0 0 0 1px rgba(0,0,0,.05);
  transform: rotate(var(--rot, 0deg));
  transition: transform .35s cubic-bezier(.34, 1.4, .64, 1), box-shadow .35s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-frame-wrap:hover .hero-frame,
.hero-frame-wrap.is-front .hero-frame {
  transform: rotate(var(--rot, 0deg)) scale(1.07) translateY(-8px);
  box-shadow:
    0 8px 0 rgba(0,0,0,.03),
    0 28px 56px rgba(232, 75, 122, .28),
    0 0 0 2px rgba(232, 75, 122, .2);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(232, 75, 122, .12);
  border-radius: 2px;
  pointer-events: none;
  transition: border-color .3s;
}

.hero-frame-wrap:hover .hero-frame::before,
.hero-frame-wrap.is-front .hero-frame::before {
  border-color: rgba(232, 75, 122, .35);
}

.hero-frame__mat {
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame__mat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.hero-frame-wrap:hover .hero-frame__mat img,
.hero-frame-wrap.is-front .hero-frame__mat img {
  transform: scale(1.04);
}

.hero-frame__caption {
  position: absolute;
  bottom: 8px;
  left: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.hero-frame__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  padding: 16px;
  text-align: center;
}

.hero-frame__placeholder em {
  font-style: normal;
  font-size: 2rem;
  opacity: .5;
}

.hero-frame__placeholder small {
  font-size: 12px;
  font-weight: 600;
  opacity: .7;
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame-wrap { animation: none; }
  .text-shimmer { animation: none; background-position: 0% center; }
}

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; margin: 0 0 12px; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--accent-dark) 0%, #e84b7a 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.section-footer { text-align: center; margin-top: 40px; }

/* Category cards */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cat-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(28,28,40,.12); }
.cat-card__img { aspect-ratio: 4/3; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--accent-soft), #fff5f8); }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover .cat-card__img img { transform: scale(1.06); }
.cat-card__img--birthday { background: linear-gradient(135deg, #ffe8f2, #ffc0d8); }
.cat-card__img--wedding { background: linear-gradient(135deg, #fff0f6, #f9a8d4); }
.cat-card__img--graduation { background: linear-gradient(135deg, #ede9fe, #c4b5fd); }
.cat-card__img--corporate { background: linear-gradient(135deg, #e0f2fe, #7dd3fc); }
.cat-card__img--gender-party { background: linear-gradient(135deg, #fce7f3, #e879f9); }
.cat-card__img--kids { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.cat-card__img:not(:has(img))::after {
  content: "🎈"; position: absolute; inset: 0;
  display: grid; place-items: center; font-size: 3rem; opacity: .4;
}
.cat-card__body { padding: 20px 22px 24px; }
.cat-card__body h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--accent-dark); }
.cat-card__body p { margin: 0 0 12px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.cat-card__link { font-size: 14px; font-weight: 700; color: var(--accent); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 32px 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.step__num {
  display: inline-flex; width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step p { margin: 0; font-size: 14px; color: var(--muted); }

/* Works */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.works-grid--large { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.work {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
  transition: transform .2s;
}
.work:hover { transform: translateY(-4px); }
.work img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.work figcaption { padding: 16px 18px; }
.work figcaption strong { display: block; font-size: 15px; margin-bottom: 4px; }
.work figcaption span, .work figcaption a { font-size: 13px; color: var(--muted); }
.work figcaption a:hover { color: var(--accent); }

/* CTA banner */
.cta-banner {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}
.cta-banner__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  margin: 0 0 8px; font-size: 1.85rem; font-weight: 800; letter-spacing: -.02em;
}
.cta-banner p { margin: 0; opacity: .9; }
.cta-hours { font-size: 14px; margin-top: 8px !important; opacity: .75 !important; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Messengers */
.messengers { display: flex; flex-direction: column; gap: 12px; }
.messengers--cta {
  flex-direction: row; flex-wrap: wrap; gap: 10px;
}
.messenger {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 16px;
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  transition: transform .15s, border-color .15s;
}
.messenger:hover { transform: translateY(-2px); border-color: var(--accent); }
.messenger__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff; flex-shrink: 0;
}
.messenger__text { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.messenger__text strong { font-size: 16px; }
.messenger__text small { font-size: 13px; color: var(--muted); font-weight: 500; }
.messenger--whatsapp .messenger__icon { background: #25d366; }
.messenger--telegram .messenger__icon { background: #2aabee; }
.messenger--max .messenger__icon { background: linear-gradient(135deg, #6c5ce7, #a29bfe); font-size: 11px; }
.messenger--instagram .messenger__icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743); }
.messenger--phone .messenger__icon { background: var(--accent); font-size: 1.25rem; }
.messenger--email .messenger__icon { background: #5b6ee1; }

/* Contact modal */
.contact-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.contact-modal[hidden] { display: none; }
.contact-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(28, 28, 40, .55);
  backdrop-filter: blur(4px);
}
.contact-modal__dialog {
  position: relative; width: min(440px, 100%);
  max-height: min(90vh, 640px); overflow: auto;
  background: #fff; border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(28, 28, 40, .25);
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.contact-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: var(--bg-alt); font-size: 1.5rem; line-height: 1;
  cursor: pointer; color: var(--muted);
}
.contact-modal__close:hover { background: #eee; color: var(--ink); }
.contact-modal__dialog h2 {
  margin: 0 28px 8px 0; font-size: 1.35rem; font-family: var(--font-display);
}
.contact-modal__lead { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.contact-modal__options { display: flex; flex-direction: column; gap: 10px; }
.contact-modal__hours {
  margin: 16px 0 0; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: 14px; color: var(--muted); text-align: center;
}
.js-open-contacts.btn { font-family: inherit; cursor: pointer; }

.messengers--cta .messenger {
  padding: 12px 18px; background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35); box-shadow: none; color: #fff;
}
.messengers--cta .messenger:hover { background: rgba(255,255,255,.25); border-color: #fff; transform: none; }
.messengers--cta .messenger__icon { width: 36px; height: 36px; border-radius: 10px; font-size: 11px; }
.messengers--cta .messenger__text strong { font-size: 14px; color: #fff; }
.messengers--cta .messenger__text small { display: none; }

/* Contacts page */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
.contacts-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow);
}
.contacts-card h2 { margin: 0 0 20px; font-size: 1.35rem; }
.contacts-hint { margin: -8px 0 20px; color: var(--muted); font-size: 15px; }
.contacts-empty { color: var(--muted); font-size: 14px; margin: 0; }
.contacts-list { list-style: none; margin: 0 0 24px; padding: 0; }
.contacts-list li { margin-bottom: 20px; }
.contacts-list__label {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; font-weight: 600;
}
.contacts-list__value { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.contacts-list__value--phone { font-size: 1.5rem; color: var(--accent-dark); }
.contacts-call { width: 100%; justify-content: center; }
.contacts-card--messengers .messengers { gap: 10px; }

.social-btn--max { background: rgba(108, 92, 231, .25); }
.social-btn--all { background: rgba(232, 75, 122, .25); margin-top: 4px; }

.seo-section { padding: 32px 0; background: var(--bg-alt); }
.seo-section p { margin: 0; font-size: 13px; color: var(--muted); text-align: center; max-width: 720px; margin-inline: auto; line-height: 1.7; }

/* Inner pages */
.page-top { padding: 48px 0 32px; background: var(--accent-soft); }
.page-top h1 {
  font-family: var(--font-display);
  margin: 0 0 8px; font-size: 2.1rem; font-weight: 800; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent-dark) 60%, #e84b7a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-desc { margin: 0; color: var(--muted); }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.crumbs a { color: var(--accent); }
.page-body { padding: 48px 0 72px; }
.cat-grid--catalog { margin-bottom: 56px; }

.catalog-section { margin-bottom: 48px; padding-top: 8px; border-top: 1px solid rgba(0,0,0,.06); }
.catalog-section__title { margin: 0 0 20px; font-size: 1.35rem; }
.catalog-section__title a { color: var(--accent-dark); }
.catalog-section__head h2 { margin: 0 0 8px; font-size: 1.35rem; }
.catalog-section__head h2 a { color: var(--accent-dark); }
.catalog-section__head p { margin: 0 0 20px; color: var(--muted); }

.tag-card--photo {
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.tag-card--photo .cat-card__img { aspect-ratio: 16/10; border-radius: 0; }
.tag-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}
.category-hero__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.category-hero__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.page-top--with-img { padding-bottom: 40px; }

.tag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.tag-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px; background: #fff; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow);
  transition: border-color .15s, transform .15s;
  text-decoration: none;
  color: inherit;
}
.tag-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.tag-card strong { font-size: 15px; }
.tag-card span { font-size: 13px; color: var(--muted); }
.subhead { font-size: 1.25rem; margin: 0 0 24px; }
.empty-box { text-align: center; padding: 48px 24px; background: var(--bg-alt); border-radius: var(--radius); }
.empty-box p { color: var(--muted); margin-bottom: 20px; }

/* Footer */
.site-footer { background: var(--ink); color: #fff; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; opacity: .7; margin: 12px 0 0; line-height: 1.6; }
.logo--footer { margin-bottom: 8px; }
.logo--footer strong { color: #fff; font-size: 1.1rem; }
.site-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; opacity: .5; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: 14px; }
.site-footer a { color: #fff; opacity: .85; }
.site-footer a:hover { opacity: 1; }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.social-btn {
  display: inline-block; padding: 10px 16px; border-radius: 10px;
  background: rgba(255,255,255,.1); font-size: 14px; font-weight: 600;
  text-align: center; transition: background .15s;
}
.social-btn:hover { background: rgba(255,255,255,.18); }
.footer-copy { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; opacity: .5; }

/* Mobile bar */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  padding: 12px 16px; background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  gap: 10px;
}
.mobile-bar__btn {
  flex: 1; padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 15px; text-align: center;
  border: 0; font-family: inherit; cursor: pointer;
}
.mobile-bar__btn--call { background: var(--accent); color: #fff; }
.mobile-bar__btn--wa { background: #25d366; color: #fff; }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .header-cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .site-header { position: relative; }
  .hero-grid, .cat-grid, .steps, .works-grid, .footer-grid, .contacts-grid, .category-hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; }
  .hero-copy { order: 1; }
  .hero-frames { height: 280px; max-width: 340px; margin: 24px auto 0; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
}
