:root {
  --red: #c9271d;
  --red-dark: #a91e16;
  --black: #161616;
  --black-soft: #232323;
  --gray: #f4f4f3;
  --gray-dark: #e7e7e5;
  --muted: #666a70;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(20, 20, 20, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container { width: min(1248px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 88px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.025em; }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 44px); line-height: 1.12; }
p { line-height: 1.7; }
.muted { color: var(--muted); }
.text-link { color: var(--red); font-weight: 750; }
.text-link:hover { color: var(--red-dark); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(29, 29, 29, .97);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 128px; height: auto; }
.brand-name {
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.22);
  color: #d0d0d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 650; }
.nav a:hover, .nav a[aria-current="page"] { color: #ff665e; }
.nav .nav-cta { padding: 11px 18px; color: #fff; background: var(--red); border-radius: 7px; }
.nav .nav-cta:hover { color: #fff; background: var(--red-dark); }
.menu-button { display: none; padding: 8px; color: #fff; background: transparent; border: 0; }
.menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 24px; height: 2px; background: currentColor; content: ""; }
.menu-lines { position: relative; }
.menu-lines::before { position: absolute; top: -7px; }
.menu-lines::after { position: absolute; top: 7px; }

.hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  color: #fff;
  background: #222 url("assets/hero-bg.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,16,16,.91) 0%, rgba(16,16,16,.68) 47%, rgba(16,16,16,.2) 100%), linear-gradient(0deg, rgba(10,10,10,.35), transparent 55%);
  content: "";
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 90px 0; }
.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 12px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 { margin: 0 0 28px; font-size: clamp(48px, 6vw, 72px); line-height: 1.05; letter-spacing: -.045em; }
.hero p { max-width: 580px; margin-bottom: 32px; color: #ddd; font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 760;
  transition: .18s ease;
}
.button-primary { color: #fff; background: var(--red); }
.button-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.button-secondary { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.button-secondary:hover { background: rgba(255,255,255,.2); }
.button-dark { color: #fff; background: var(--black); }
.button-dark:hover { background: #333; }

.stats { padding: 38px 0; color: #fff; background: var(--black); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.1); }
.stat strong { display: block; margin-bottom: 4px; font-size: clamp(28px, 4vw, 40px); line-height: 1; }
.stat span { color: #aaa; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 54px; }
.media-card { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.lead { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.service-card { padding: 25px; background: #fff; border: 1px solid #e9e9e7; border-radius: 13px; box-shadow: 0 2px 5px rgba(0,0,0,.035); transition: .18s ease; }
.service-card:hover { border-color: rgba(201,39,29,.3); box-shadow: 0 9px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.service-mark { display: grid; width: 48px; height: 48px; margin-bottom: 18px; place-items: center; color: var(--red); background: #fcecec; border-radius: 10px; font-size: 15px; font-weight: 900; }
.service-card h3 { margin-bottom: 9px; font-size: 19px; }
.service-card p { margin-bottom: 0; color: #5d6167; font-size: 14px; }
.section-link { margin-top: 40px; text-align: center; }

.proof {
  position: relative;
  padding: 96px 0;
  color: #fff;
  background: #222 url("assets/customer-service.png") center / cover no-repeat;
  text-align: center;
}
.proof::before { position: absolute; inset: 0; background: rgba(18,18,18,.62); content: ""; }
.proof-inner { position: relative; max-width: 760px; margin: auto; }
.proof .eyebrow { color: #fff; }
.proof h2 { font-size: clamp(32px, 4vw, 46px); }
.proof p { color: #e4e4e4; font-size: 18px; }

.location-section { background: var(--gray); }
.location-card { padding: 30px; background: #fff; border: 1px solid #e5e5e2; border-radius: var(--radius); box-shadow: 0 5px 16px rgba(0,0,0,.05); }
.location-card h3 { margin-bottom: 18px; font-size: 24px; }
.details { display: grid; gap: 13px; margin: 0 0 25px; padding: 0; list-style: none; }
.detail { display: grid; grid-template-columns: 30px 1fr; align-items: start; color: #555b61; }
.detail-symbol { color: var(--red); font-weight: 900; }
.detail strong { display: block; color: var(--black); }
.hours-table { width: 100%; margin: 18px 0 25px; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid #ececea; }
.hours-table td:last-child { text-align: right; font-weight: 700; }

.signup { background: #fff; }
.signup-panel { padding: 30px; background: var(--gray); border: 1px solid var(--gray-dark); border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 750; }
.field input { width: 100%; min-height: 47px; padding: 11px 13px; color: #202020; background: #fff; border: 1px solid #d4d4d1; border-radius: 8px; }
.field input:focus { border-color: var(--red); outline: 3px solid rgba(201,39,29,.12); }
.field-full { grid-column: 1 / -1; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 18px 0; color: #666; font-size: 11px; line-height: 1.55; }
.consent input { margin-top: 3px; accent-color: var(--red); }
.form-status { min-height: 22px; margin: 12px 0 0; color: #2b6b34; font-size: 14px; font-weight: 700; }

.page-hero { padding: 80px 0; color: #fff; background: var(--black); text-align: center; }
.page-hero h1 { margin-bottom: 14px; font-size: clamp(42px, 6vw, 62px); }
.page-hero p:last-child { max-width: 640px; margin: 0 auto; color: #b9b9b9; font-size: 18px; }
.all-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cta-band { padding: 64px 0; color: #fff; background: var(--red); text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 650px; margin: 0 auto 26px; color: #ffe5e2; }
.cta-band .button-secondary { background: #fff; color: var(--red); border-color: #fff; }

.map-wrap { min-height: 420px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: stretch; }

.legal { padding: 76px 0 96px; }
.legal h1 { margin-bottom: 8px; font-size: clamp(40px, 6vw, 58px); }
.legal .legal-subtitle { color: var(--muted); }
.legal h2 { margin-top: 40px; margin-bottom: 12px; font-size: 25px; }
.legal h3 { margin-top: 26px; margin-bottom: 10px; font-size: 18px; }
.legal p, .legal li { color: #4d5257; line-height: 1.75; }
.legal a { color: var(--red); text-decoration: underline; }

.site-footer { padding: 58px 0 24px; color: #b8b8b8; background: var(--black-soft); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 70px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { width: 130px; }
.footer-brand span { padding-left: 14px; border-left: 1px solid #555; color: #ddd; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer h3 { color: #fff; font-size: 15px; letter-spacing: 0; }
.site-footer p { font-size: 14px; }
.footer-links { display: grid; gap: 11px; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.copyright { margin-top: 42px; padding-top: 22px; border-top: 1px solid #393939; font-size: 12px; }

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    padding: 25px 16px 32px;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    background: #202020;
    box-shadow: 0 16px 30px rgba(0,0,0,.25);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 10px; }
  .nav .nav-cta { text-align: center; }
  .menu-button { display: block; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .all-services { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 24px, 1248px); }
  .section { padding: 66px 0; }
  .brand img { width: 110px; }
  .brand-name { padding-left: 10px; font-size: 10px; }
  .hero { min-height: 590px; background-position: 60% center; }
  .hero-content { padding: 72px 0; }
  .hero h1 { font-size: 47px; }
  .hero p { font-size: 17px; }
  .actions .button { width: 100%; }
  .stats { padding: 28px 0; }
  .stats-grid { gap: 10px; }
  .stat strong { font-size: 26px; }
  .stat span { font-size: 9px; }
  .service-grid, .all-services, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .proof { padding: 75px 0; }
  .page-hero { padding: 62px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { align-items: flex-start; }
}

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