:root {
  --red: #d92020;
  --red-dark: #a81717;
  --blue: #1d4eb8;
  --ink: #1a1a1a;
  --slate: #3a3a3a;
  --mute: #6b6b6b;
  --line: #e4e4e4;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --bg-dark: #1a1a1a;
  --gold: #ffc83d;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top contact bar */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a { color: #fff; }
.topbar .hours { color: #d4d4d4; }

/* Header */
header.site {
  background: #fff;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
header.site .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo .brand {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.5px;
}
.logo .brand .blue { color: var(--blue); }
.logo .tag {
  font-size: 12px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

nav.primary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
nav.primary a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--red);
  border-bottom-color: var(--red);
  text-decoration: none;
}

.cta-call {
  background: var(--red);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.cta-call:hover {
  background: var(--red-dark);
  text-decoration: none;
}
.cta-call .cta-short { display: none; }

/* Mobile nav */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 8px;
}

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(15,15,15,0.92) 0%, rgba(60,10,10,0.88) 60%, rgba(15,15,15,0.92) 100%),
    repeating-linear-gradient(45deg, #1a1a1a 0px, #1a1a1a 30px, #222 30px, #222 60px);
  color: #fff;
  padding: 90px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(217,32,32,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 48px;
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero .lede {
  font-size: 20px;
  max-width: 720px;
  margin: 0 auto 32px;
  color: #f0f0f0;
}
.hero .ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff !important;
}
.btn-primary:hover {
  background: var(--red-dark);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--ink) !important;
  text-decoration: none;
}

.hero .rating {
  margin-top: 28px;
  font-size: 15px;
  color: #f0f0f0;
}
.hero .rating .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

/* Sections */
section {
  padding: 72px 0;
}
section.alt {
  background: var(--bg-alt);
}
section h2 {
  font-size: 36px;
  margin: 0 0 16px;
  line-height: 1.2;
  color: var(--ink);
}
section .section-intro {
  font-size: 18px;
  color: var(--slate);
  max-width: 760px;
  margin: 0 0 40px;
}
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* Service grid */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: var(--ink);
}
.service-card p {
  margin: 0;
  color: var(--mute);
  font-size: 15px;
}

/* Brand grid */
.brand-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.brand-tile {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.brand-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-left-color: var(--red-dark);
}
.brand-tile strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.brand-tile span {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
}

/* Specialty highlight */
.specialty {
  background: linear-gradient(135deg, #1d4eb8 0%, #0e2f7a 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 16px;
}
.specialty h2 {
  color: #fff;
  margin-top: 0;
}
.specialty p {
  font-size: 17px;
  color: #e6ecf7;
  margin: 0 0 20px;
}
.specialty .big {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  background: rgba(255,255,255,0.08);
  padding: 36px;
  border-radius: var(--radius);
}
.specialty .big small {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 2px;
  color: #d4ddef;
}

/* Reviews */
.reviews {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review blockquote {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
}
.review cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.review cite small {
  display: block;
  color: var(--mute);
  font-weight: 400;
  margin-top: 2px;
}

.review-meta {
  text-align: center;
  margin-bottom: 40px;
}
.review-meta .score {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.review-meta .num {
  font-size: 56px;
  font-weight: 900;
  color: var(--ink);
}
.review-meta .stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}
.review-meta .count {
  display: block;
  color: var(--mute);
  font-size: 15px;
  margin-top: 4px;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.why-item h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--red);
}
.why-item p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

/* Visit / Contact */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.visit .info {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.visit .info h2 { margin-top: 0; }
.info-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; }
.info-row .label {
  font-weight: 700;
  color: var(--ink);
  min-width: 80px;
}
.info-row .val {
  color: var(--slate);
  flex: 1;
}
.info-row .val a { color: var(--red); font-weight: 600; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq details[open] {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(217,32,32,0.08);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  position: relative;
  padding-right: 50px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.2s;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.65;
}
.faq details p a { color: var(--red); font-weight: 600; }

/* CTA band */
.cta-band {
  background: var(--red);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 32px;
}
.cta-band p {
  font-size: 18px;
  margin: 0 0 24px;
  color: #ffe7e7;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--red) !important;
}
.cta-band .btn-primary:hover { background: #f0f0f0; }

/* Footer */
footer.site {
  background: var(--bg-dark);
  color: #c4c4c4;
  padding: 56px 0 24px;
  font-size: 15px;
}
footer.site .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
footer.site h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer.site a { color: #c4c4c4; }
footer.site a:hover { color: #fff; }
footer.site ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.site ul li { margin-bottom: 8px; }
footer.site .brand-foot {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
footer.site .brand-foot .blue { color: #5a8aef; }
.bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

/* Subpage hero */
.subpage-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a0a0a 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.subpage-hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
  line-height: 1.2;
}
.subpage-hero p {
  font-size: 18px;
  color: #d4d4d4;
  max-width: 720px;
  margin: 0 auto;
}

/* Article / long content */
.prose {
  max-width: 780px;
}
.prose p { font-size: 17px; color: var(--slate); }
.prose h2 { font-size: 28px; margin-top: 40px; }
.prose h3 { font-size: 22px; margin-top: 32px; color: var(--ink); }
.prose ul { padding-left: 22px; }
.prose ul li { margin-bottom: 8px; color: var(--slate); }

/* Tablet / small laptop */
@media (max-width: 960px) {
  footer.site .container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 820px) {
  .container { padding: 0 18px; }
  .menu-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }
  nav.primary {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  nav.primary.open { display: block; }
  nav.primary ul {
    flex-direction: column;
    padding: 8px 18px;
    gap: 0;
  }
  nav.primary li { border-bottom: 1px solid var(--line); }
  nav.primary li:last-child { border-bottom: 0; }
  nav.primary a {
    display: block;
    padding: 16px 0;
    border-bottom: 0;
    min-height: 48px;
    box-sizing: border-box;
  }
  header.site .container {
    position: relative;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .logo .brand {
    font-size: 17px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .logo .brand .blue {
    display: block;
    white-space: nowrap;
  }
  .logo .tag {
    font-size: 10px;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 4px;
  }
  .cta-call {
    padding: 10px 14px;
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .cta-call .cta-num { display: none; }
  .cta-call .cta-short { display: inline; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: 32px; }
  .hero .lede { font-size: 17px; }
  .hero .ctas { gap: 12px; }
  .btn {
    padding: 14px 24px;
    font-size: 15px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  section { padding: 48px 0; }
  section h2 { font-size: 26px; }
  section .section-intro { font-size: 16px; }
  .specialty { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; }
  .specialty .big { font-size: 44px; padding: 24px; }
  .specialty .big small { font-size: 13px; }
  .visit { grid-template-columns: 1fr; gap: 24px; }
  .visit .info { padding: 28px 22px; }
  .map { min-height: 280px; }
  .map iframe { min-height: 280px; }
  footer.site { padding: 40px 0 20px; }
  footer.site .container { grid-template-columns: 1fr; gap: 28px; }
  .topbar { font-size: 13px; padding: 6px 0; }
  .topbar .container { gap: 8px; }
  .topbar .hours { display: none; }
  .subpage-hero { padding: 48px 0 40px; }
  .subpage-hero h1 { font-size: 28px; }
  .subpage-hero p { font-size: 16px; }
  .review { padding: 22px; }
  .review blockquote { font-size: 15px; }
  .service-card { padding: 22px 20px; }
  .cta-band { padding: 44px 0; }
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 16px; }
  .review-meta .num { font-size: 44px; }
  .review-meta .stars { font-size: 18px; }
  .faq summary { font-size: 15px; padding: 16px 18px; padding-right: 44px; }
  .faq summary::after { right: 18px; font-size: 22px; }
  .faq details p { font-size: 15px; padding: 0 18px 18px; }
  .prose p, .prose ul li { font-size: 16px; }
  .prose h2 { font-size: 24px; }
  .prose h3 { font-size: 19px; }
  .brand-tile { padding: 18px 16px; }
  .brand-tile strong { font-size: 17px; }
}

/* Very small phones */
@media (max-width: 420px) {
  .logo .tag { display: none; }
  .logo .brand { font-size: 16px; }
  .cta-call {
    padding: 0;
    width: 44px;
    height: 44px;
    justify-content: center;
    font-size: 18px;
  }
  .cta-call .cta-short { font-size: 18px; }
  .hero h1 { font-size: 28px; }
  .topbar .container span:first-child { font-size: 12px; }
}
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .logo .brand { font-size: 15px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
