:root {
  --bg: #ffffff;
  --band: #f2f6fb;
  --ink: #111a26;
  --muted: #3d4a5c;
  --brand: #0b4f9c;
  --brand-ink: #ffffff;
  --call: #ffd23f;
  --call-ink: #111a26;
  --line: #c9d4e2;
  --focus: #c2410c;
  --radius: 14px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1620;
    --band: #16202d;
    --ink: #f1f5fa;
    --muted: #c3cdd9;
    --brand: #7db4f5;
    --brand-ink: #0f1620;
    --line: #2d3b4d;
    --focus: #fdba74;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 125%; -webkit-text-size-adjust: 100%; }
@media (max-width: 600px) { html { font-size: 118.75%; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  padding-bottom: 5.5rem;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

a { color: var(--brand); text-underline-offset: 0.15em; }
:focus-visible { outline: 4px solid var(--focus); outline-offset: 3px; }

.wrap { max-width: 64rem; margin: 0 auto; padding: 0 16px; }
@media (min-width: 600px) { .wrap { padding: 0 32px; } }

.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--bg); padding: 0.75rem 1rem; z-index: 10; }
.skip:focus { left: 0; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 6vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; max-width: 42rem; }

section { padding: 3rem 0; }
.band { background: var(--band); }

.top { border-bottom: 1px solid var(--line); background: var(--bg); }
.top-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.25rem; }
.logo img { display: block; }
.btn.top-call { display: none; }
@media (min-width: 900px) { .btn.top-call { display: inline-flex; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.2rem; padding: 0.6rem 1.4rem;
  border-radius: var(--radius); font-weight: 700; text-decoration: none;
  border: 2px solid transparent; text-align: center;
}
.btn-call { background: var(--call); color: var(--call-ink); border-color: #b8900a; }
.btn-plain { background: var(--bg); color: var(--brand); border-color: var(--brand); }
.btn-big { font-size: 1.15rem; min-height: 3.8rem; }

.hero { padding: 3.5rem 0 3rem; }
.lead { font-size: 1.2rem; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0 1rem; }
.actions .btn { overflow-wrap: anywhere; }
@media (max-width: 600px) { .actions .btn { width: 100%; } }
.hours { color: var(--muted); font-weight: 600; }

.grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr)); }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.card p { margin: 0; color: var(--muted); }
.card svg { width: 2.2rem; height: 2.2rem; margin-bottom: 0.5rem; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.steps { margin: 0; padding-left: 1.5rem; display: grid; gap: 1rem; max-width: 42rem; }
.steps li::marker { font-weight: 800; color: var(--brand); }

.prices { border-collapse: collapse; width: 100%; max-width: 36rem; }
.prices th, .prices td { text-align: left; padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line); }
.prices td { font-weight: 700; text-align: right; }

.checks { padding-left: 1.5rem; max-width: 42rem; }
.checks li { margin-bottom: 0.5rem; }

details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); margin-bottom: 0.75rem; max-width: 46rem; }
summary { cursor: pointer; padding: 1rem 1.25rem; font-weight: 700; min-height: 3rem; }
details p { padding: 0 1.25rem 1rem; margin: 0; }

.foot { border-top: 1px solid var(--line); padding: 2rem 0; color: var(--muted); }
.foot p { margin: 0 0 0.4rem; }

.callbar {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  font-size: 1.2rem; min-height: 3.8rem; box-shadow: 0 6px 20px rgba(0,0,0,0.25); z-index: 5;
}
@media (min-width: 900px) { .callbar { display: none; } }

.todo { background: #ffe4e6; color: #9f1239; padding: 0 0.25em; border-radius: 4px; }

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