:root {
  --bg: #f6f8f7;
  --surface: #fff;
  --text: #0c1a15;
  --muted: #5c6d66;
  --green: #1a7a52;
  --green-dark: #071f18;
  --green-mid: #0f3d30;
  --green-light: #e8f3ed;
  --gold: #c9a24d;
  --gold-soft: #e8d4a8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 64px rgba(7, 31, 24, .14);
  --shadow-lg: 0 32px 80px rgba(7, 31, 24, .18);
  --shadow-sm: 0 10px 32px rgba(7, 31, 24, .08);
  --header-h: 68px;
  --wrap: min(1180px, calc(100% - 40px));
  --tap: 48px;
  --mob-bar: 68px;
  font-family: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  background: var(--bg); color: var(--text); line-height: 1.55;
  padding-bottom: calc(var(--mob-bar) + env(safe-area-inset-bottom, 0px));
}
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; height: auto; }
.wrap { width: var(--wrap); margin-inline: auto; }

/* ── Header ── */
.top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 31, 24, .92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 0;
}
.top__mob {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 120;
}
.logo {
  font-weight: 800; font-size: 1.15rem; color: #fff;
  letter-spacing: -.03em; white-space: nowrap;
}
.logo span { color: var(--gold-soft); font-weight: 700; }
.nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-weight: 500;
  font-size: .875rem;
  color: rgba(255,255,255,.72);
}
.nav a:hover { color: #fff; }
.nav a.is-active { color: var(--gold-soft); }

.top.is-scrolled {
  background: rgba(7, 31, 24, .98);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.nav__drawer { display: none; }
.top__aside {
  display: none;
  align-items: center;
  gap: 18px;
}
.top__contact {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px; line-height: 1.2;
}
.top__phone {
  font-weight: 700; font-size: .95rem; color: #fff;
  letter-spacing: -.01em; white-space: nowrap;
}
.top__phone:hover { color: var(--gold-soft); }
.top__hours {
  font-size: .68rem; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.48); white-space: nowrap;
}
.top__phone--mob {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 0 14px;
  border-radius: 999px; font-size: .78rem; font-weight: 700;
  color: var(--gold-soft); border: 1px solid rgba(201,162,77,.35);
  background: rgba(201,162,77,.08);
}
.burger {
  position: relative; z-index: 121;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  color: #fff; flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.burger span,
.burger::before,
.burger::after {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s;
}
.burger::before { content: ""; top: 14px; }
.burger span { top: 21px; }
.burger::after { content: ""; top: 28px; }
.top.nav-open .burger::before { transform: translateY(7px) rotate(45deg); }
.top.nav-open .burger span { opacity: 0; }
.top.nav-open .burger::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap); padding: 0 28px; border-radius: 999px;
  font-weight: 800; font-size: .95rem; border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
  touch-action: manipulation; cursor: pointer;
}
.btn:active { transform: scale(.97); }
.btn--sm { min-height: 42px; padding: 0 20px; font-size: .85rem; }
.btn--xl { min-height: 56px; font-size: 1rem; width: 100%; }
.btn--accent {
  background: linear-gradient(180deg, #d4b366 0%, var(--gold) 100%);
  color: var(--green-dark); border-color: transparent;
  box-shadow: 0 4px 20px rgba(201, 162, 77, .28);
}
.btn--accent:hover { box-shadow: 0 8px 28px rgba(201, 162, 77, .38); }
.btn--outline {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn--outline-dark {
  background: transparent; color: var(--green-dark);
  border-color: rgba(10, 46, 36, .2);
}
.btn--light { background: #fff; color: var(--green-dark); }
.btn--ghost-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--bot {
  background: rgba(125, 206, 160, .15); color: #fff;
  border-color: rgba(125, 206, 160, .55);
}
.btn--bot-on-dark { margin-top: 0; }
.btn--outline-on-dark {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.25);
}
.contact__actions .btn--bot-on-dark,
.price__cta .btn--bot-on-dark { margin-top: 0; }
.price__cta .btn--ghost-light { margin-top: 10px; }
.price__cta .btn--bot-on-dark { margin-top: 10px; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(201,162,77,.12) 0%, transparent 55%),
    linear-gradient(168deg, #071f18 0%, #0a2a22 42%, #0f3d30 100%);
  color: #fff; padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
}
.hero__glow {
  position: absolute; top: -30%; right: -20%; width: 70%; height: 90%;
  background: radial-gradient(circle, rgba(201,162,77,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; gap: 40px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; margin-bottom: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px rgba(201,162,77,.6);
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -.035em; margin-bottom: 18px;
  max-width: 14em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #f0dca0 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  font-size: clamp(1rem, 2vw, 1.12rem); font-weight: 400;
  color: rgba(255,255,255,.68); max-width: 34rem;
  margin-bottom: 24px; line-height: 1.65;
}
.hero__price {
  font-size: .92rem; font-weight: 500;
  color: rgba(255,255,255,.55); margin-bottom: 28px;
}
.hero__price strong {
  color: var(--gold-soft); font-weight: 700; font-size: 1.05rem;
}
.hero__actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: 420px;
}
.hero__actions .btn--xl { width: 100%; min-height: 52px; font-size: .92rem; }
.hero__bot {
  grid-column: 1 / -1;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.55); transition: color .15s;
}
.hero__bot:hover { color: var(--gold-soft); }
.hero__visual { position: relative; max-width: 540px; margin-inline: auto; }
.hero__frame {
  border-radius: calc(var(--radius) + 4px); overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}
.hero__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero__float {
  position: absolute; right: 16px; bottom: -16px;
  background: rgba(255,255,255,.97); color: var(--green-dark);
  padding: 16px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); text-align: left;
  border: 1px solid rgba(7,31,24,.06);
}
.hero__float-num { display: block; font-weight: 800; font-size: 1rem; letter-spacing: -.02em; }
.hero__float-txt { font-size: .72rem; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ── Trust strip ── */
.trust {
  background: var(--surface);
  border-bottom: 1px solid rgba(7,31,24,.06);
  padding: 0;
}
.trust__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
}
.trust__item {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(7,31,24,.06);
  text-align: center;
}
.trust__item:nth-child(odd) { border-right: 1px solid rgba(7,31,24,.06); }
.trust__item strong {
  display: block; font-size: .95rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 4px; letter-spacing: -.02em;
}
.trust__item span {
  font-size: .75rem; color: var(--muted); font-weight: 500; line-height: 1.35;
}

/* ── Sections ── */
.section-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
.section-tag--light { color: var(--gold); }
.section-title {
  font-size: clamp(1.45rem, 4vw, 2.1rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.15; margin-bottom: 28px;
}

/* ── Coverage map ── */
.coverage {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.coverage__grid { display: grid; gap: 28px; align-items: center; }
.coverage__lead {
  font-size: .95rem; color: var(--muted); line-height: 1.55; margin-bottom: 20px;
}
.coverage__list {
  margin: 0 0 24px; padding: 0; list-style: none;
  display: grid; gap: 10px;
}
.coverage__list li {
  position: relative; padding-left: 22px;
  font-size: .9rem; font-weight: 600; color: var(--text);
}
.coverage__list li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,83,.25);
}
.coverage__map {
  margin: 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212,168,83,.35);
}
.coverage__map svg,
.coverage__map img { display: block; width: 100%; height: auto; vertical-align: top; }
.coverage__map figcaption {
  padding: 12px 16px; text-align: center;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold);
  background: var(--green-dark);
}

.problems { padding: 48px 0; }
.problems__grid { display: grid; gap: 12px; }

.pro-card {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 14px;
  padding: 18px; background: var(--surface); border-radius: var(--radius-sm);
  border: 1px solid #e8eeeb; box-shadow: var(--shadow-sm);
  align-items: start;
}
.pro-card__ico {
  grid-row: 1 / span 2;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-light); color: var(--green);
}
.pro-card__ico svg { width: 24px; height: 24px; }
.pro-card h3 { font-size: 1rem; font-weight: 800; }
.pro-card p { font-size: .88rem; color: var(--muted); line-height: 1.45; }

.how { padding: 48px 0; background: var(--surface); }
.steps { display: grid; gap: 16px; }
.step {
  padding: 24px; background: var(--bg); border-radius: var(--radius);
  border: 1px solid #e8eeeb; position: relative;
}
.step__num {
  font-size: 2.5rem; font-weight: 800; color: var(--green);
  opacity: .25; line-height: 1; margin-bottom: 8px;
}
.step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--muted); }

.cta-band {
  background: var(--green-dark); color: #fff; padding: 28px 0;
}
.cta-band__inner {
  display: flex; flex-direction: column; gap: 16px; align-items: stretch; text-align: center;
}
.cta-band p { font-size: 1.05rem; opacity: .9; }
.cta-band strong { color: var(--gold); }

.services { padding: 48px 0; }
.cards { display: grid; gap: 12px; }
.card {
  padding: 24px; background: var(--surface); border-radius: var(--radius);
  border: 1px solid #e8eeeb; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: var(--green-dark); }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.5; }

.compare { padding: 0 0 48px; }
.compare__box {
  display: grid; gap: 12px;
}
.compare__col {
  padding: 24px; border-radius: var(--radius);
}
.compare__col h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; }
.compare__col ul { list-style: none; display: grid; gap: 10px; }
.compare__col li {
  font-size: .9rem; padding-left: 24px; position: relative; line-height: 1.4;
}
.compare__col--us {
  background: var(--surface); border: 2px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.compare__col--us li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.compare__col--them {
  background: #eef1ef; border: 1px solid #dde4e0; opacity: .85;
}
.compare__col--them li::before { content: "×"; position: absolute; left: 0; color: #999; font-weight: 800; }

.price { padding: 0 0 48px; }
.price__box {
  background: linear-gradient(135deg, #0a2e24, #1a7a52);
  color: #fff; border-radius: 28px; padding: 32px 24px;
  box-shadow: var(--shadow);
}
.price__label { font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 8px; }
.price__box h2 { font-size: clamp(2.2rem, 8vw, 3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-bottom: 8px; }
.price__sub { opacity: .8; font-size: .95rem; margin-bottom: 20px; }
.price__list { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }
.price__list li { font-size: .95rem; padding-left: 22px; position: relative; }
.price__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.price__cta { display: flex; flex-direction: column; }

.photos { padding: 48px 0; background: #e8eeeb; }
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-sm);
}

.faq { padding: 48px 0; background: var(--surface); }
.faq__list { display: grid; gap: 10px; }
.faq__item {
  border: 1px solid #e8eeeb; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--bg);
}
.faq__item summary {
  padding: 18px 20px; font-weight: 800; font-size: .95rem;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.2rem; color: var(--green); font-weight: 800; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { padding: 0 20px 18px; font-size: .9rem; color: var(--muted); line-height: 1.5; }

.contact { padding: 0; }
.contact__box {
  background: linear-gradient(180deg, var(--green-dark), #061f18);
  color: #fff; padding: 40px 24px 48px; text-align: center;
}
.contact__box h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; }
.contact__box > p { color: rgba(255,255,255,.75); margin-bottom: 24px; max-width: 22rem; margin-inline: auto; font-size: .95rem; }
.contact__actions { display: flex; flex-direction: column; gap: 12px; max-width: min(100%, 420px); margin: 0 auto 20px; }
.contact__phones { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact__phones-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; align-items: center; }
.contact__phones-row a { font-weight: 800; font-size: 1.05rem; color: var(--gold); min-height: var(--tap); display: inline-flex; align-items: center; }
.contact__phones-row span { opacity: .4; }
.contact__hours {
  margin: 0; font-size: .78rem; font-weight: 500;
  color: rgba(255,255,255,.55);
}

.foot {
  background: #061f18; color: rgba(255,255,255,.75);
  padding: 24px 0 calc(16px + env(safe-area-inset-bottom, 0px));
}
.foot__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.foot__logo { font-size: 1.15rem; font-weight: 800; color: #fff; }
.foot__logo span { color: var(--gold-soft); }
.foot__brand p { font-size: .85rem; opacity: .65; margin-top: 4px; }
.foot__legal { font-size: .75rem; opacity: .45; margin-top: 10px; }
.foot__fine { font-size: .7rem; opacity: .35; max-width: 22rem; line-height: 1.45; margin-top: 6px; }
.foot__links { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.foot__tg, .foot__bot {
  font-size: .88rem; font-weight: 600; color: var(--gold-soft);
  padding: 10px 18px; border-radius: 999px; text-align: center;
  border: 1px solid rgba(125, 206, 160, .3);
}
.foot__bot { color: #fff; background: rgba(125, 206, 160, .12); }

.mob-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 31, 24, .96);
  backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mob-bar a {
  display: flex; align-items: center; justify-content: center;
  min-height: 46px; border-radius: 12px;
  font-weight: 700; font-size: .74rem; line-height: 1.2; text-align: center;
  padding: 8px 6px; touch-action: manipulation;
  transition: transform .15s;
}
.mob-bar a:active { transform: scale(.97); }
.mob-bar__call {
  background: linear-gradient(180deg, #d4b366 0%, var(--gold) 100%);
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(201,162,77,.25);
}
.mob-bar__tg {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.mob-bar__bot {
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.1);
}

/* ── Mobile nav ── */
.top.nav-open .nav {
  display: flex; flex-direction: column; align-items: stretch;
  position: fixed; left: 16px; right: 16px;
  top: calc(68px + env(safe-area-inset-top, 0px));
  background: #fff; color: var(--text);
  padding: 8px 8px 16px; border-radius: var(--radius);
  box-shadow: var(--shadow); z-index: 110;
  max-height: calc(100dvh - 88px); overflow-y: auto;
}
.top.nav-open .nav > a {
  padding: 14px 16px; font-size: .95rem; font-weight: 600;
  border-radius: var(--radius-sm); color: var(--text);
}
.top.nav-open .nav > a:hover { background: var(--bg); }
.top.nav-open .nav__drawer {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid rgba(7,31,24,.08);
}
.top.nav-open .nav__tel {
  padding: 12px 16px; font-size: 1.05rem; font-weight: 700;
  color: var(--green-dark);
}
.top.nav-open .nav__hours {
  padding: 0 16px 4px; font-size: .78rem; font-weight: 500;
  color: var(--muted);
}
.top.nav-open .nav__cta { margin: 8px 8px 0; width: calc(100% - 16px); }
.top.nav-open::before {
  content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 105;
}
.top.nav-open .burger { z-index: 112; }

/* ── Tablet ── */
@media (min-width: 640px) {
  body { padding-bottom: 0; }
  .mob-bar { display: none; }
  .top__phone--mob { display: none; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .trust__item { border-bottom: 0; border-right: 1px solid rgba(7,31,24,.06); }
  .trust__item:nth-child(odd) { border-right: 1px solid rgba(7,31,24,.06); }
  .trust__item:last-child { border-right: 0; }
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .compare__box { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .coverage__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .btn--xl { width: auto; }
  .cta-band__inner { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
  .foot__inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start; }
  .foot__links { align-items: flex-end; }
  .contact__box { border-radius: 28px 28px 0 0; margin-top: 48px; }
  .contact__phones { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px 28px; }
}

/* ── Desktop ── */
@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .top__mob { display: none; }
  .top__inner {
    grid-template-columns: auto 1fr auto;
    gap: 32px; min-height: 76px; padding: 12px 0;
  }
  .nav { display: flex; }
  .top__aside { display: flex; }
  .hero__grid { grid-template-columns: 1.08fr .92fr; gap: 56px; }
  .hero__actions { max-width: none; }
  .hero__visual { margin-inline: 0; }
  .problems__grid { grid-template-columns: repeat(4, 1fr); }
  .pro-card { display: block; }
  .pro-card__ico { margin-bottom: 14px; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .price__box {
    display: grid; grid-template-columns: 1fr auto; gap: 40px;
    align-items: center; padding: 48px;
  }
  .price__list { margin-bottom: 0; }
  .problems, .how, .services, .photos, .faq, .coverage { padding: 72px 0; }
  .compare { padding-bottom: 72px; }
  .price { padding-bottom: 72px; }
  .contact__box { padding: 56px; max-width: 640px; margin: 72px auto 0; border-radius: 28px; }
}

@media (max-width: 959px) {
  .top__inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .top__aside { display: none; }
}

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
