/* ============================================================
   Drobný Úklid — sdílený design systém
   Směr: human-approachable (Airbnb / Duolingo)
   ============================================================ */

:root {
  --bg:      oklch(98% 0.004 240);
  --surface: oklch(100% 0 0);
  --surface-2: oklch(96.5% 0.008 240);
  --fg:      oklch(20% 0.02 240);
  --muted:   oklch(50% 0.018 240);
  --border:  oklch(90% 0.006 240);
  --accent:  oklch(56% 0.12 170);
  --accent-strong: oklch(47% 0.11 170);
  --accent-soft: oklch(94% 0.045 170);
  --success: oklch(55% 0.14 155);
  --success-soft: oklch(95% 0.04 155);
  --warn:    oklch(68% 0.12 75);
  --warn-soft: oklch(96% 0.04 90);

  --font-display: 'Söhne', 'Avenir Next', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgb(20 30 40 / 0.05), 0 1px 3px rgb(20 30 40 / 0.06);
  --shadow-md: 0 6px 16px rgb(20 30 40 / 0.08);
  --shadow-lg: 0 16px 40px rgb(20 30 40 / 0.12);

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h: 4.5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

::selection { background: var(--accent-soft); }

/* ---------- layout ---------- */

.container { width: min(1160px, 100% - 2 * var(--gutter)); margin-inline: auto; }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tint { background: var(--surface-2); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  border-radius: 1px;
  background: var(--accent);
}

.google-g { flex: none; }
.eyebrow .google-g { width: 15px; height: 15px; }

.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 18px; height: 2px;
  border-radius: 1px;
  background: var(--accent);
}

.h-display {
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  letter-spacing: -0.025em;
}

.h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); letter-spacing: -0.015em; }

.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  color: var(--muted);
  margin-top: 1.1rem;
  max-width: 62ch;
}

.lead--center { margin-inline: auto; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.brand svg { width: 30px; height: 30px; color: var(--accent-strong); }

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.nav-links { display: flex; align-items: center; gap: 0.35rem; }

.nav-link {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 550;
  color: var(--muted);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-link:hover { color: var(--fg); background: var(--surface-2); }
.nav-link[aria-current="page"] { color: var(--fg); background: var(--surface); box-shadow: inset 0 0 0 1px var(--border); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: oklch(99% 0 0);
  box-shadow: 0 4px 12px oklch(56% 0.12 170 / 0.32), inset 0 1px 0 oklch(100% 0 0 / 0.18);
}

.btn--primary:hover { background: var(--accent-strong); box-shadow: 0 8px 20px oklch(56% 0.12 170 / 0.36); }

.btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover { border-color: oklch(80% 0.02 240); box-shadow: var(--shadow-md); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 16.5px; }
.btn--block { width: 100%; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 15.5px;
  font-weight: 650;
  color: var(--fg);
  white-space: nowrap;
}

.btn-phone svg { width: 18px; height: 18px; color: var(--accent-strong); }
.btn-phone:hover { color: var(--accent-strong); }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; }

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 45%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(closest-side, oklch(56% 0.12 170 / 0.1), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.8rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 550;
  color: var(--muted);
}

.chip svg { width: 15px; height: 15px; color: var(--accent-strong); }
.chip--live { color: var(--success); border-color: oklch(85% 0.05 155); background: var(--success-soft); }
.chip--live svg { color: var(--success); }

.hero-media { position: relative; }

.hero-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

.hero-float {
  position: absolute;
  bottom: clamp(0.9rem, 3vw, 1.4rem);
  left: clamp(0.9rem, 3vw, 1.4rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  background: color-mix(in oklch, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero-float svg { width: 34px; height: 34px; color: var(--accent-strong); }
.hero-float strong { display: block; font-family: var(--font-display); font-size: 1.02rem; line-height: 1.2; }
.hero-float span { font-size: 13px; color: var(--muted); }

/* ---------- stats strip ---------- */

.stats-strip {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat {
  background: var(--surface);
  padding: 1.6rem 1.4rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat span { font-size: 14px; color: var(--muted); }

/* ---------- value cards ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card--lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 1.2rem;
}

.card-icon svg { width: 26px; height: 26px; }
.card-icon--green { background: var(--success-soft); color: var(--success); }
.card-icon--amber { background: var(--warn-soft); color: var(--warn); }

.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 15px; color: var(--muted); }

/* ---------- services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-card img {
  width: 100%;
  height: auto;
}

.service-card-body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }

.service-card-body p { font-size: 15px; color: var(--muted); }

.service-list { display: flex; flex-direction: column; gap: 0.55rem; margin-top: auto; padding-top: 0.7rem; }

.service-list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 14.5px; color: var(--fg); font-weight: 500; }

.service-list svg { flex: none; width: 16px; height: 16px; color: var(--accent-strong); margin-top: 0.18rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--accent-strong);
}

.card-link svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* ---------- highlight band ---------- */

.band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.band img { height: 100%; min-height: 320px; object-fit: cover; }
.band-content { padding: clamp(1.75rem, 4vw, 3rem); }

.band-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

.band-tags .chip { background: var(--surface-2); box-shadow: none; }

/* ---------- price list ---------- */

.price-block { margin-bottom: 2.5rem; }
.price-block:last-child { margin-bottom: 0; }

.price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.4rem;
}

.price-head h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
.price-head span { font-size: 13.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.03em; text-transform: uppercase; }

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 0.25rem;
  border-bottom: 1px dashed var(--border);
}

.price-row:last-child { border-bottom: none; }

.price-row .name { font-size: 15.5px; font-weight: 550; }
.price-row .name small { display: block; font-weight: 400; font-size: 13.5px; color: var(--muted); margin-top: 0.15rem; }

.price-row .price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.price-row .price i { font-style: normal; font-weight: 500; color: var(--muted); font-size: 0.82em; }

.price-note {
  margin-top: 1rem;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ---------- reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.review .stars { display: flex; gap: 0.2rem; color: var(--warn); }
.review .stars svg { width: 17px; height: 17px; }

.review blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--fg); }

.review-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; border-top: 1px solid var(--border); padding-top: 1.1rem; }

.review-author strong { display: block; font-size: 15px; font-weight: 650; }
.review-author span { font-size: 13px; color: var(--muted); }

.review-owner {
  font-size: 12.5px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.review-owner strong { display: block; font-size: 12.5px; font-weight: 650; color: var(--fg); margin-bottom: 0.2rem; }

.review-meta { display: flex; align-items: center; gap: 0.55rem; font-size: 13px; color: var(--muted); }
.review-meta svg { width: 15px; height: 15px; }

/* ---------- check grid ---------- */

.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.05rem 1.2rem;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.check-item svg { flex: none; width: 20px; height: 20px; color: var(--success); }

/* ---------- services detail ---------- */

.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.service-item { display: flex; flex-direction: column; gap: 0.6rem; }
.service-item h3 { font-size: 1.08rem; }
.service-item p { font-size: 14.5px; color: var(--muted); }
.service-item .service-price {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.service-item .service-price i { font-style: normal; font-size: 0.8em; font-weight: 500; opacity: 0.8; }

.services-subhead {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.6rem 0 0.85rem;
}

.services-subhead:first-child { margin-top: 0; }

.services-subhead::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ---------- info / fact list ---------- */

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.fact svg { flex: none; width: 22px; height: 22px; color: var(--accent-strong); margin-top: 0.15rem; }
.fact strong { display: block; font-family: var(--font-display); font-size: 1.02rem; font-weight: 650; margin-bottom: 0.2rem; }
.fact p { font-size: 14px; color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--fg);
  color: oklch(96% 0.01 240);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  width: 45%;
  height: 160%;
  background: radial-gradient(closest-side, oklch(56% 0.12 170 / 0.5), transparent 70%);
  pointer-events: none;
}

.cta-band-inner { position: relative; max-width: 560px; }
.cta-band .h2 { color: oklch(96% 0.01 240); }
.cta-band p { color: oklch(80% 0.02 240); margin-top: 1rem; max-width: 48ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.9rem; }

.btn--light {
  background: oklch(96% 0.01 240);
  color: var(--fg);
}
.btn--light:hover { background: oklch(100% 0 0); }
.btn--outline-light {
  background: transparent;
  border-color: oklch(100% 0 0 / 0.3);
  color: oklch(96% 0.01 240);
}
.btn--outline-light:hover { border-color: oklch(100% 0 0 / 0.6); background: oklch(100% 0 0 / 0.06); }

/* ---------- forms ---------- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }

.field label { font-size: 14px; font-weight: 600; }
.field label span { color: var(--accent-strong); }

.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(56% 0.12 170 / 0.18);
}

.field input::placeholder, .field textarea::placeholder { color: oklch(65% 0.02 240); }

.field .error-msg { display: none; font-size: 13px; color: oklch(50% 0.14 25); }

.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: oklch(55% 0.14 25); }
.field.invalid .error-msg { display: block; }

.form-consent { grid-column: 1 / -1; font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 0.6rem; }
.form-consent input { width: auto; margin-top: 0.15rem; accent-color: var(--accent); flex: none; }
.form-consent.invalid { color: oklch(50% 0.14 25); }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success.show { display: block; }

.form-success .check {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
}
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); max-width: 42ch; margin-inline: auto; }

/* ---------- contact ---------- */

.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }

/* ---------- contact side ---------- */

.contact-list { display: flex; flex-direction: column; gap: 0.9rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-item:hover { border-color: oklch(82% 0.03 240); box-shadow: var(--shadow-sm); }

.contact-item svg { flex: none; width: 22px; height: 22px; color: var(--accent-strong); }
.contact-item strong { display: block; font-size: 15px; font-weight: 650; }
.contact-item span { font-size: 14px; color: var(--muted); }
.contact-item a { font-size: 15.5px; font-weight: 650; }
.contact-item a:hover { color: var(--accent-strong); }

.hours-chip { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 13.5px; font-weight: 600; color: var(--success); background: var(--success-soft); border-radius: 999px; padding: 0.5rem 0.9rem; margin-top: 1.1rem; }
.hours-chip svg { width: 15px; height: 15px; }

/* ---------- page hero ---------- */

.page-hero { padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(1.75rem, 4vw, 2.5rem); }
.page-hero .h-display { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.breadcrumb { font-size: 13.5px; color: var(--muted); margin-bottom: 1rem; letter-spacing: 0.02em; }
.breadcrumb a { font-weight: 600; }
.breadcrumb a:hover { color: var(--accent-strong); }
.breadcrumb span { margin-inline: 0.4rem; color: oklch(75% 0.02 240); }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--border); background: var(--surface-2); padding-block: 3rem 2.25rem; margin-top: clamp(2rem, 5vw, 4rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
}

.footer-brand p { font-size: 14.5px; color: var(--muted); max-width: 34ch; margin-top: 0.9rem; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 14.5px; color: var(--fg); font-weight: 500; }
.footer-col a:hover { color: var(--accent-strong); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 13.5px;
  color: var(--muted);
}

.footer-social { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.footer-social a { font-weight: 550; }

.footer-bottom a:hover { color: var(--accent-strong); }

/* ---------- legal pages ---------- */

.legal { max-width: 760px; }
.legal h2 { font-size: clamp(1.1rem, 2vw, 1.32rem); letter-spacing: -0.015em; margin-top: 2.5rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { font-size: 15.5px; line-height: 1.7; margin-top: 0.85rem; color: var(--fg); }
.legal a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.legal p strong { font-weight: 650; }
.legal ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.85rem; }
.legal li { font-size: 15.5px; line-height: 1.7; }
.legal-date { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 14.5px; color: var(--muted); }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 560px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr; }
  .band img { min-height: 260px; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }

  .nav { flex-wrap: wrap; height: auto; gap: 0.75rem; padding: 0.6rem 0; }
  .nav-links {
    order: 3;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    padding: 0.25rem 0 0;
    transform: none;
    transition: none;
  }
  .nav-links.open { transform: none; }
  .nav-link { padding: 0.55rem 0.9rem; border-radius: 999px; font-size: 15px; }
  .nav-toggle { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-cta .btn-phone--desktop { display: none; }
  .brand-logo { height: 30px; border-radius: 8px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }

  .service-grid, .value-grid, .reviews-grid, .price-grid, .fact-grid, .form-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { gap: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat { padding: 1.2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .hero-float { padding: 0.8rem 0.95rem; }
  .cta-band .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; }
  .btn-phone { font-size: 14.5px; }
  .check-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 26px; border-radius: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
