:root {
  --red: #d81920;
  --red-dark: #a31318;
  --ink: #16181b;
  --ink-2: #222529;
  --paper: #f6f5f2;
  --paper-2: #ececea;
  --line: #2c2f34;
  --gold: #ffb400;
  --ok: #1c8a43;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
h1, h2, h3, h4 {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.checker {
  height: 10px;
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%),
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  background-color: var(--gold);
}

/* Top bar */
.topbar { background: var(--ink); color: #cfd2d6; font-size: .85rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar a { text-decoration: none; color: #cfd2d6; }
.topbar .stars { color: var(--gold); }

/* Header */
header.site {
  background: var(--ink-2);
  color: #fff;
  border-bottom: 4px solid var(--red);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand .mark {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.3rem; color: #fff;
  flex: none;
}
.brand .name { line-height: 1.1; }
.brand .name strong { display: block; font-size: 1.25rem; font-weight: 900; letter-spacing: .01em; }
.brand .name span { display: block; font-size: .72rem; color: #b8bcc2; text-transform: uppercase; letter-spacing: .08em; }

.call-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; text-decoration: none;
  font-weight: 800; padding: 12px 20px; border-radius: 999px;
  font-size: 1.05rem; white-space: nowrap;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease;
}
.call-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.call-btn.ghost { background: transparent; border: 2px solid #fff; }
.call-btn.ghost:hover { background: #fff; color: var(--ink); }

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 80% -10%, #2a2e34 0%, var(--ink) 55%);
  color: #fff;
  padding: 64px 0 56px;
}
.hero .grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.hero .eyebrow {
  display: inline-block; background: var(--red); color: #fff; font-weight: 800;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.08; margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lede { font-size: 1.1rem; color: #d6d8db; max-width: 46ch; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero .facts { display: grid; gap: 12px; margin-top: 30px; grid-template-columns: repeat(3, auto); }
.hero .facts div { font-size: .85rem; color: #c7cacf; }
.hero .facts strong { display: block; color: #fff; font-size: 1.15rem; }

.hero-panel {
  background: var(--ink-2); border: 1px solid #34383e; border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.hero-panel h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 14px; }
.hero-panel ul { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.hero-panel li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: #e4e6e8; }
.hero-panel li::before { content: "\2713"; color: var(--ok); font-weight: 900; }
.hero-panel .map-embed { border-radius: 8px; overflow: hidden; margin-top: 10px; border: 1px solid #34383e; }
.hero-panel .map-embed iframe { width: 100%; height: 160px; border: 0; display: block; }

/* Sections */
section { padding: 60px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .kicker { color: var(--red); font-weight: 800; letter-spacing: .08em; font-size: .8rem; text-transform: uppercase; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 8px; }
.section-head p { color: #4a4e55; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.svc-card {
  background: #fff; border: 1px solid #e3e1db; border-radius: var(--radius);
  padding: 22px; transition: transform .15s ease, box-shadow .15s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-card .ico {
  width: 44px; height: 44px; border-radius: 8px; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  color: var(--red); font-size: 1.3rem;
}
.svc-card h3 { font-size: 1.02rem; margin-bottom: 6px; text-transform: none; }
.svc-card p { color: #5a5e64; font-size: .92rem; margin: 0; }

/* Badges / warranty band */
.badge-band { background: var(--ink); color: #fff; }
.badge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.badge-card { text-align: center; padding: 10px; }
.badge-card .num { font-size: 1.7rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.badge-card .label { font-size: .88rem; color: #c7cacf; text-transform: uppercase; letter-spacing: .04em; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review-card { background: #fff; border: 1px solid #e3e1db; border-radius: var(--radius); padding: 22px; }
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { color: #33363b; font-style: italic; }
.review-card .who { font-weight: 700; font-size: .88rem; color: #6a6e75; font-style: normal; }
.rating-hero { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.rating-hero .score { font-size: 2.6rem; font-weight: 900; }
.rating-hero .stars-lg { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; }
.rating-hero .count { color: #5a5e64; font-size: .95rem; }

/* Location */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.loc-card { background: #fff; border: 1px solid #e3e1db; border-radius: var(--radius); padding: 26px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid #ece9e3; font-size: .95rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr.today td { color: var(--red); font-weight: 800; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid #e3e1db; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Contact */
.contact-band { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
form.lead-form { display: grid; gap: 14px; background: #fff; border: 1px solid #e3e1db; border-radius: var(--radius); padding: 26px; }
form.lead-form label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #4a4e55; margin-bottom: 4px; display: block; }
form.lead-form input, form.lead-form select, form.lead-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d6d3cb; border-radius: 8px; font-size: 1rem; font-family: inherit;
}
form.lead-form textarea { min-height: 110px; resize: vertical; }
form.lead-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.lead-form button {
  background: var(--red); color: #fff; border: 0; padding: 14px 20px; font-weight: 800;
  border-radius: 999px; font-size: 1rem; cursor: pointer; text-transform: uppercase; letter-spacing: .03em;
}
form.lead-form button:hover { background: var(--red-dark); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .85rem; color: #5a5e64; margin-top: 10px; }
.contact-side h3 { font-size: 1.2rem; margin-bottom: 10px; }
.contact-side ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 12px; }
.contact-side li { display: flex; gap: 10px; }
.contact-side .lbl { color: #6a6e75; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; display: block; }
.contact-side .val { font-weight: 700; }

/* Footer */
footer.site { background: var(--ink); color: #b8bcc2; padding: 40px 0 20px; font-size: .88rem; }
footer.site .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; padding-bottom: 24px; border-bottom: 1px solid #2c2f34; }
footer.site h4 { color: #fff; font-size: .9rem; margin-bottom: 10px; }
footer.site a { text-decoration: none; color: #b8bcc2; }
footer.site a:hover { color: #fff; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-bottom { padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: #8b8f96; }
.foot-credit { font-size: 12.8px; color: #9aa4b4; margin-top: 6px; }
.foot-credit a { text-decoration: underline; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (max-width: 860px) {
  .hero .grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero .facts { grid-template-columns: repeat(3, 1fr); }
  footer.site .foot-grid { grid-template-columns: 1fr; }
  form.lead-form .row2 { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: center; text-align: center; }
}
