:root {
  --bg: #f4f4f5;
  --bg-2: #e8e9eb;
  --surface: #ffffff;
  --text: #141414;
  --muted: #5a5f66;
  --accent: #c4161c;
  --accent-soft: #fde8e9;
  --accent-2: #8f0f14;
  --line: #d5d7db;
  --danger: #b91c1c;
  --steel: #3a3f46;
  --radius: 14px;
  --shadow: 0 12px 36px rgba(20, 20, 20, 0.08);
  --header-h: 68px;
  --container: 1120px;
  --pad: 1rem;
  --font: "Segoe UI", ui-sans-serif, system-ui, "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="dark"] {
  --bg: #101114;
  --bg-2: #181a1f;
  --surface: #22252b;
  --text: #f3f3f4;
  --muted: #a7adb6;
  --accent: #e53935;
  --accent-soft: #3a1517;
  --accent-2: #ff6b66;
  --line: #333841;
  --steel: #9aa0a8;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 380px at 0% -8%, rgba(196, 22, 28, 0.06), transparent 55%),
    radial-gradient(800px 360px at 100% 0%, rgba(58, 63, 70, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff; padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}
.narrow { width: min(760px, calc(100% - (var(--pad) * 2))); }

/* —— Header —— */
.site-header {
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: .75rem;
  justify-content: space-between;
}
.brand {
  display: flex; gap: .7rem; align-items: center;
  color: inherit; text-decoration: none; min-width: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: #111;
  box-shadow: 0 4px 14px rgba(20, 20, 20, .22);
  flex-shrink: 0; overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-text strong {
  font-size: .95rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-text small { color: var(--muted); font-size: .75rem; }
.brand-text bdi,
.eyebrow bdi,
.portrait-meta bdi,
.footer-copy bdi { unicode-bidi: isolate; }

.nav { display: none; align-items: center; gap: .15rem; flex: 1; justify-content: center; }
.nav > a {
  color: var(--muted); font-weight: 600; font-size: .9rem;
  text-decoration: none; padding: .45rem .55rem; border-radius: 10px;
  white-space: nowrap;
}
.nav > a:hover { color: var(--text); background: color-mix(in srgb, var(--bg-2) 80%, transparent); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.nav-mobile-extra { display: none; }
.header-cta-desktop { display: none; }
.lang-switch, .lang-desktop, .lang-link { display: none; }

.nav-toggle, .theme-toggle {
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  display: inline-grid; place-items: center; font-size: 1.05rem;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover, .theme-toggle:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }

.nav.open {
  display: flex; flex-direction: column; align-items: stretch;
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--surface);
  padding: 1rem var(--pad) calc(1.25rem + env(safe-area-inset-bottom, 0px));
  gap: .2rem; z-index: 70;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  animation: navIn .22s var(--ease);
}
.nav.open > a {
  font-size: 1.05rem; padding: .9rem .85rem;
  border-bottom: 1px solid var(--line); border-radius: 0;
}
.nav.open .nav-mobile-extra {
  display: flex; flex-direction: column; gap: .75rem;
  margin-top: .85rem; padding-top: .35rem;
}
.nav-cta-mobile { width: 100%; min-height: 48px; }

@keyframes navIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border-radius: 12px; padding: .85rem 1.2rem; font-weight: 700;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  font-family: inherit; font-size: .95rem; min-height: 46px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, .theme-toggle:focus-visible, .nav-toggle:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, .faq-btn:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(196, 22, 28, .28); }
.btn-primary:hover { background: var(--accent-2); color: #fff; }
html[data-theme="dark"] .btn-primary { color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost.on-dark { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.1); }
.btn-secondary { background: var(--surface); border-color: var(--line); color: var(--text); }
.btn-sm { padding: .55rem .95rem; font-size: .88rem; min-height: 40px; }
.btn-block { width: 100%; }
.btn.is-loading { opacity: .75; pointer-events: none; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 680px);
  display: flex; align-items: center;
  padding: 2.5rem 0 3.25rem;
  overflow: hidden; color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #141414 url("/assets/img/channel-banner.jpg") center/cover no-repeat;
  pointer-events: none;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.78) 42%, rgba(8,8,10,.5) 100%),
    linear-gradient(0deg, rgba(8,8,10,.65) 0%, transparent 42%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 1.75rem; align-items: center;
}
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .02em; margin: 0 0 .75rem; }
.hero .eyebrow { color: #ffb4b6; }
.hero .lead, .hero .trust-bullets { color: rgba(255,255,255,.84); }
.hero h1 {
  font-size: clamp(1.7rem, 5.2vw, 3.15rem);
  line-height: 1.12; margin: 0 0 .9rem; letter-spacing: -.02em; color: #fff;
  max-width: 16ch;
}
.lead { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.08rem); max-width: 38rem; margin: 0; }
.trust-bullets { padding-left: 1.15rem; color: var(--muted); margin: 1rem 0 0; }
.trust-bullets li { margin: .4rem 0; }
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-top: 1.4rem;
}

.portrait-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: .9rem;
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  max-width: 280px;
  width: 100%;
  margin-inline: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.portrait, .portrait-photo {
  border-radius: 50%; width: 100%; height: auto;
  aspect-ratio: 1; object-fit: cover; background: #111;
}
.portrait-meta {
  display: flex; justify-content: space-between; gap: .75rem;
  margin-top: .75rem; color: rgba(255,255,255,.82); font-size: .9rem;
}
.portrait-meta strong { font-size: .92rem; }

/* —— Stats —— */
.stats {
  position: relative; z-index: 2;
  margin-top: -1.75rem; padding: 0 0 1rem;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.stat {
  padding: 1.1rem .85rem; text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block; font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  font-weight: 800; letter-spacing: -.02em; color: var(--text);
}
.stat span {
  color: var(--muted); font-size: .82rem; font-weight: 600;
  display: block; margin-top: .2rem; line-height: 1.3;
}

/* —— Sections —— */
.section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-alt { background: color-mix(in srgb, var(--bg-2) 75%, transparent); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 1.75rem; }
.section-head h2 { margin: 0 0 .55rem; font-size: clamp(1.45rem, 3.2vw, 2rem); letter-spacing: -.01em; }
.section-head p { margin: 0; color: var(--muted); }

.trust-grid { display: grid; gap: .85rem; }
.trust-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.2rem; box-shadow: var(--shadow);
}
.trust-card h3 { margin: 0 0 .4rem; font-size: 1rem; }
.trust-card p { margin: 0; color: var(--muted); }

.services-grid, .packages-grid, .cases-grid { display: grid; gap: .9rem; }
.service-card, .package-card, .case-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.service-card:hover, .package-card:hover, .case-card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 16px 40px rgba(20, 20, 20, .1);
}
.service-card.is-featured, .package-card.is-featured {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 16px 40px rgba(196, 22, 28, .12);
}
.service-card .btn, .package-card .btn { margin-top: auto; }
.service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .65rem; }
.service-icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); font-weight: 800;
}
.badge {
  font-size: .72rem; font-weight: 700; padding: .25rem .55rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-2);
}
.service-card h3, .package-card h3, .case-card h3 { margin: 0 0 .45rem; font-size: 1.08rem; }
.service-card p, .package-card p, .case-card p { color: var(--muted); margin: 0 0 .9rem; }
.service-price, .package-price {
  display: flex; flex-wrap: wrap; gap: .3rem .7rem; align-items: baseline; margin-bottom: 1rem;
}
.price-note, .muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.field-error { color: var(--danger); font-size: .85rem; margin: .35rem 0 0; font-weight: 600; }
.case-image { width: 100%; border-radius: 12px; margin-bottom: .85rem; object-fit: cover; aspect-ratio: 16/9; }

.package-card { position: relative; }
.package-ribbon {
  position: absolute; top: 12px; right: 12px; font-size: .72rem; font-weight: 700;
  background: var(--accent); color: #fff; padding: .25rem .55rem; border-radius: 999px;
}
html[data-theme="dark"] .package-ribbon { color: #fff; }
.package-card ul { padding-left: 1.1rem; margin: 0 0 1.1rem; color: var(--muted); }
.package-card li { margin: .28rem 0; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.steps li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem; box-shadow: var(--shadow);
}
.steps span { color: var(--accent); font-weight: 800; font-size: .9rem; }
.steps h3 { margin: .35rem 0; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); }

.cases-grid { margin-bottom: 1.25rem; }
.case-result { color: var(--accent-2) !important; font-weight: 600; }

.stack-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
}
.stack-list li {
  border: 1px solid var(--line); background: var(--surface); border-radius: 999px;
  padding: .5rem .9rem; font-weight: 600; font-size: .88rem;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.gallery-card {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #111;
  text-decoration: none; color: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery-card:hover { text-decoration: none; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card .gallery-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 2.2rem .8rem .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  font-weight: 700; font-size: .88rem; line-height: 1.25;
}
.gallery-card .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(196, 22, 28, .94);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.gallery-card:hover .play { transform: translate(-50%, -50%) scale(1.06); }
.gallery-card .play::before {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.rate-note { text-align: center; margin-top: 1.25rem; font-size: .9rem; }

/* —— FAQ / Lead —— */
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: .25rem .4rem .7rem; margin-bottom: .55rem;
}
.faq-q { margin: 0; font-size: 1rem; }
.faq-btn {
  width: 100%; text-align: start; border: 0; background: transparent; color: var(--text);
  font: inherit; font-weight: 700; cursor: pointer; padding: .8rem .6rem;
  border-radius: 8px; min-height: 48px;
}
.faq-btn:hover { background: color-mix(in srgb, var(--bg-2) 80%, transparent); }
.faq-btn[aria-expanded="true"] { color: var(--accent-2); }
.faq-a { padding: 0 .6rem .35rem; }
.faq-a p { color: var(--muted); margin: 0; }

.section-cta { padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.lead-grid { display: grid; gap: 1.5rem; }
.contact-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.contact-chips a {
  border: 1px solid var(--line); background: var(--surface); border-radius: 999px;
  padding: .55rem .95rem; color: var(--text); font-weight: 600; text-decoration: none;
  min-height: 42px; display: inline-flex; align-items: center;
}
.contact-chips a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.lead-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.15rem; box-shadow: var(--shadow);
}
.form-row { margin-bottom: .85rem; }
.form-row.two { display: grid; gap: .7rem; }
.form-row label, .check { display: block; font-weight: 600; margin-bottom: .35rem; }
.form-row input, .form-row select, .form-row textarea,
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem .9rem; min-height: 48px;
  background: var(--bg); color: var(--text); font: inherit;
}
.lead-form textarea { min-height: 110px; resize: vertical; }
.check {
  display: flex; gap: .55rem; align-items: flex-start;
  font-weight: 500; color: var(--muted); margin: 1rem 0;
}
.check input { width: auto; min-height: auto; margin-top: .25rem; }
.hp { position: absolute; left: -10000px; opacity: 0; height: 0; width: 0; }

/* —— Footer / floats —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
  background: var(--bg-2);
}
.footer-grid { display: grid; gap: 1.25rem; }
.footer-grid p { margin: .35rem 0; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-copy { margin-top: 1.35rem; color: var(--muted); font-size: .88rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: .5rem .85rem; margin-top: .65rem; }
.footer-social a { font-weight: 600; }

.float-messengers {
  position: fixed;
  right: max(.75rem, env(safe-area-inset-right, 0px));
  bottom: max(.75rem, env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; gap: .45rem; z-index: 40;
}
.float-btn {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  color: #fff !important; font-weight: 800; text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .15s ease;
}
.float-btn:hover { transform: translateY(-2px); text-decoration: none; }
.float-btn.wa { background: #128c7e; }
.float-btn.tg { background: #229ed9; }
.float-btn.vk { background: #0077ff; }
.float-btn.yt { background: #c4302b; }

.toast {
  position: fixed; left: 50%;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  background: #0f172a; color: #fff; padding: .85rem 1.1rem; border-radius: 12px;
  box-shadow: var(--shadow); z-index: 90; max-width: min(92vw, 420px);
}
.toast.err { background: var(--danger); }

.legal-page { padding-top: 1.5rem; }
.legal-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.35rem 1.2rem 1.75rem; box-shadow: var(--shadow);
}
.legal-card .legal-brand { color: var(--accent); font-weight: 700; margin: 0 0 1rem; }
.legal h1 { margin-top: 0; font-size: clamp(1.45rem, 3vw, 2rem); }
.legal h2 { margin-top: 1.4rem; font-size: 1.1rem; }
.legal p { color: var(--muted); }
.legal-contacts {
  margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--text);
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* —— Breakpoints —— */
@media (max-width: 479px) {
  :root { --pad: .85rem; --header-h: 62px; }
  .brand-text small.brand-role { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .hero {
    min-height: auto;
    padding: 1.75rem 0 2.5rem;
  }
  .hero h1 { max-width: none; }
  .hero-visual { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .stats { margin-top: -1.1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 1rem; }
  .stat:last-child { border-bottom: 0; }
  .gallery-grid { gap: .55rem; }
  .gallery-card .play { width: 40px; height: 40px; }
  .gallery-card .gallery-cap { font-size: .78rem; padding: 1.6rem .55rem .55rem; }
  .float-messengers {
    flex-direction: row; flex-wrap: wrap; justify-content: flex-end;
    max-width: calc(100vw - 1.2rem);
  }
  .float-btn { width: 42px; height: 42px; font-size: .72rem; border-radius: 12px; }
  .section-cta { padding-bottom: 5.5rem; }
  .site-footer { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)); }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero-visual { max-width: 220px; margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .float-messengers { bottom: max(.65rem, env(safe-area-inset-bottom, 0px)); }
  .section-cta { padding-bottom: 5rem; }
  .site-footer { padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px)); }
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; }
}

@media (min-width: 768px) {
  :root { --header-h: 72px; --pad: 1.25rem; }
  .brand-text strong { font-size: 1rem; }
  .header-cta-desktop { display: inline-flex; }
  .hero {
    min-height: min(86vh, 700px);
    padding: 3.5rem 0 4rem;
  }
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 2.5rem; }
  .portrait-card { max-width: 300px; margin-inline: 0 0 auto; }
  .packages-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .package-card.is-featured { transform: translateY(-4px); }
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
  .lead-grid { grid-template-columns: .9fr 1.1fr; align-items: start; gap: 2rem; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .legal-card { padding: 2rem 2.1rem 2.4rem; }
  .lead-form { padding: 1.35rem 1.4rem; }
}

/* Desktop nav: mid screens get compact links */
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .nav > a { font-size: .86rem; padding: .4rem .5rem; }
}

@media (min-width: 1024px) {
  :root { --pad: 1.5rem; }
  .nav > a { font-size: .9rem; padding: .45rem .6rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .gallery-card { aspect-ratio: 3 / 4.2; }
  .hero h1 { font-size: clamp(2.2rem, 3.2vw, 3.2rem); }
}

@media (min-width: 1280px) {
  .container { width: min(1180px, calc(100% - 3rem)); }
  .portrait-card { max-width: 320px; }
}

@media (hover: none) {
  .btn:hover, .float-btn:hover, .gallery-card:hover img { transform: none; }
  .service-card:hover, .package-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .gallery-card img, .float-btn, .nav.open { transition: none; animation: none; }
}
