/* napaacrepair.com — mobile-first, zero external requests (system fonts). */

:root {
  --ink: #10243a;
  --ink-soft: #3d5266;
  --line: #dfe6ee;
  --bg: #ffffff;
  --bg-soft: #f2f7fb;
  --brand: #0b6bcb;      /* cool blue */
  --brand-dark: #084f97;
  --accent: #e8541e;     /* warm call-to-action */
  --accent-dark: #c53f0e;
  --ok: #0f7a52;
  --wrap: 1080px;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(16, 36, 58, .08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 14px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; text-decoration: none; line-height: 1;
  padding: 14px 20px; border-radius: 999px; white-space: nowrap;
}
.btn-call {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 12px rgba(232, 84, 30, .28);
  transition: background .15s ease, transform .05s ease;
}
.btn-call:hover { background: var(--accent-dark); }
.btn-call:active { transform: translateY(1px); }
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 14px;
  padding-top: 10px; padding-bottom: 10px;
}
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.brand-mark { font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; }
.brand-sub { font-size: .72rem; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.nav { display: none; gap: 4px; margin-left: 8px; flex: 1; flex-wrap: wrap; }
.nav a {
  color: var(--ink-soft); text-decoration: none; font-weight: 600;
  padding: 8px 10px; border-radius: 8px; font-size: .95rem;
}
.nav a:hover { background: var(--bg-soft); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--brand-dark); background: var(--bg-soft); }
.header-cta { margin-left: auto; }
.header-cta .btn-call { padding: 11px 16px; font-size: .95rem; }

/* ---------- main / typography ---------- */
main { padding: 26px 0 40px; }
h1 {
  font-size: clamp(1.7rem, 5vw, 2.5rem); line-height: 1.15;
  letter-spacing: -.02em; margin: .2em 0 .5em;
}
h2 { font-size: clamp(1.3rem, 3.5vw, 1.7rem); margin: 1.6em 0 .5em; letter-spacing: -.01em; }
h3 { font-size: 1.15rem; margin: 1.4em 0 .4em; }
p { margin: 0 0 1em; }
.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 62ch; }
ul, ol { padding-left: 1.2em; }
li { margin: .35em 0; }

/* ---------- trust badges ---------- */
.badges { list-style: none; padding: 0; margin: 18px 0 6px; display: flex; flex-wrap: wrap; gap: 10px; }
.badges li {
  display: inline-flex; align-items: center; gap: 8px; margin: 0;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px; font-weight: 600; font-size: .92rem;
}
.badges li::before { content: "✓"; color: var(--ok); font-weight: 800; }

/* ---------- CTA card ---------- */
.cta-card {
  background: linear-gradient(160deg, #0b6bcb 0%, #084f97 100%);
  color: #fff; border-radius: var(--radius); padding: 24px 22px;
  margin: 28px 0; text-align: center; box-shadow: var(--shadow);
}
.cta-head { font-size: 1.3rem; font-weight: 800; margin: 0 0 4px; }
.cta-sub { margin: 0 0 16px; color: #dce9f7; }
.cta-card .btn-call { font-size: 1.08rem; padding: 15px 26px; }
.cta-fine { font-size: .82rem; color: #cfe0f2; margin: 14px 0 0; }

/* ---------- generic cards / grids ---------- */
.grid { display: grid; gap: 16px; margin: 20px 0; }
@media (min-width: 620px) { .grid.cols-2 { grid-template-columns: 1fr 1fr; } .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 18px; background: var(--bg);
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.panel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin: 22px 0; }
.panel p:last-child { margin-bottom: 0; }

.area-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.area-links a {
  display: inline-block; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px; text-decoration: none; font-weight: 600; color: var(--brand-dark);
}
.area-links a:hover { background: #e6f0fa; }

.related { margin: 30px 0 0; }
.related a { font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); margin-top: 40px; padding: 30px 0 90px; }
.footer-inner { display: grid; gap: 22px; }
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; } .site-footer { padding-bottom: 34px; } }
.footer-brand { font-weight: 800; font-size: 1.1rem; margin: 0 0 6px; }
.footer-h { font-weight: 700; margin: 0 0 4px; }
.footer-fine { font-size: .84rem; color: var(--ink-soft); }
.footer-legal { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 16px; }
.footer-legal p { margin: 0 0 6px; font-size: .84rem; color: var(--ink-soft); }

/* ---------- mobile sticky call bar ---------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
  padding: 10px 14px; display: flex;
  box-shadow: 0 -3px 14px rgba(16,36,58,.10);
}
.mobile-callbar .btn-call { width: 100%; justify-content: center; font-size: 1.05rem; padding: 15px; }

/* ---------- desktop adjustments ---------- */
@media (min-width: 860px) {
  .nav { display: flex; }
  .mobile-callbar { display: none; }
  .site-footer { padding-bottom: 34px; }
}

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

/* Photos */
.photo {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius); margin: 18px 0 6px;
}

/* text (SMS) button */
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.btn-text {
  background: transparent; color: inherit;
  border: 2px solid currentColor; opacity: .92;
  transition: opacity .15s ease, transform .05s ease;
}
.btn-text:hover { opacity: 1; }
.btn-text:active { transform: translateY(1px); }
