:root {
  --red: #e11d2e;
  --red-dark: #b51220;
  --red-soft: #fff1f2;
  --blue: #1e3a8a;
  --blue-light: #3b82f6;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --slate: #404040;
  --mute: #6b7280;
  --line: #e5e7eb;
  --line-soft: #f3f4f6;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-tint: #fef7f8;
  --gold: #fbbf24;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: var(--red); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Top contact bar */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.topbar a {
  color: #fff;
  font-weight: 600;
}
.topbar a:hover { color: var(--gold); }
.topbar .hours { color: #a3a3a3; }

/* Header */
header.site {
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo .brand {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.3px;
  line-height: 1;
}
.logo .brand .blue { color: var(--blue); }
.logo .tag {
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 600;
}

nav.primary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
nav.primary a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.15s, border-color 0.15s;
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.cta-call {
  background: var(--red);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(225,29,46,0.25);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.cta-call:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(225,29,46,0.35);
}
.cta-call .cta-short { display: none; }

.menu-toggle {
  display: none;
  background: var(--ink);
  border: 0;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 18px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--red);
}
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before { display: none; }

/* Hero */
.hero {
  background: #fff;
  color: var(--ink);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225,29,46,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,58,138,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  margin: 0 0 24px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  max-width: 1000px;
}
.hero h1 .accent { color: var(--red); }
.hero .lede {
  font-size: 20px;
  max-width: 680px;
  margin: 0 0 36px;
  color: var(--slate);
  line-height: 1.6;
}
.hero .ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero .rating {
  margin-top: 36px;
  font-size: 14px;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: center;
}
.hero .rating strong { white-space: nowrap; }
.hero .rating .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.hero .rating strong { color: var(--ink); font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  min-height: 52px;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(225,29,46,0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(225,29,46,0.4);
  color: #fff !important;
}
.btn-secondary {
  background: var(--ink);
  color: #fff !important;
}
.btn-secondary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  color: #fff !important;
}
.btn-outline {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff !important;
}

/* Sections */
section {
  padding: 110px 0;
  position: relative;
}
section.alt { background: var(--bg-alt); }
section.tint { background: var(--bg-tint); }
section h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 0 0 20px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -1px;
  max-width: 900px;
}
section .section-intro {
  font-size: 19px;
  color: var(--slate);
  max-width: 720px;
  margin: 0 0 56px;
  line-height: 1.6;
}
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }
.center .eyebrow { padding-left: 0; }
.center .eyebrow::before { display: none; }

/* Wave divider between sections */
.wave-divider {
  position: relative;
  height: 80px;
  margin: -80px 0 0;
  background: var(--bg-alt);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path d="M0,40 C360,80 720,0 1440,40 L1440,0 L0,0 Z" fill="black"/></svg>') no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path d="M0,40 C360,80 720,0 1440,40 L1440,0 L0,0 Z" fill="black"/></svg>') no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Service / Feature grid */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  font-weight: 700;
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.service-card p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

/* Specialty highlight */
.specialty {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.specialty::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225,29,46,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.specialty > div { position: relative; z-index: 1; }
.specialty h2 {
  color: #fff;
  margin-top: 0;
  font-size: clamp(32px, 4vw, 48px);
}
.specialty p {
  font-size: 17px;
  color: #d4d4d4;
  margin: 0 0 28px;
  line-height: 1.6;
}
.specialty .big {
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  color: var(--red);
  letter-spacing: -3px;
}
.specialty .big small {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
}

/* Brand grid */
.brand-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.brand-tile {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.brand-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transition: width 0.2s ease;
}
.brand-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.brand-tile:hover::before { width: 100%; opacity: 0.04; }
.brand-tile strong {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.brand-tile span {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Reviews */
.review-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 32px;
  border-radius: var(--radius-full);
  margin-bottom: 56px;
}
.review-meta .num {
  font-size: 48px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1.5px;
}
.review-meta .info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-meta .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
}
.review-meta .count {
  color: var(--mute);
  font-size: 13px;
  font-weight: 500;
}

.reviews {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.review blockquote {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
  font-weight: 400;
}
.review cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review cite small {
  display: block;
  color: var(--mute);
  font-weight: 500;
  margin-top: 2px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.why-item {
  padding: 8px 0;
}
.why-item .num {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.why-item h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
.why-item p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

/* Visit / Contact */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit .info {
  background: #fff;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.visit .info h2 {
  margin-top: 0;
  font-size: clamp(28px, 3.5vw, 42px);
}
.info-row {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-of-type { border-bottom: 0; }
.info-row .label {
  font-weight: 700;
  color: var(--mute);
  min-width: 90px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-top: 2px;
}
.info-row .val {
  color: var(--ink);
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}
.info-row .val a {
  color: var(--red);
  font-weight: 700;
}

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

/* FAQ */
.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq details[open] {
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(225,29,46,0.08);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  position: relative;
  padding-right: 58px;
  min-height: 48px;
  display: flex;
  align-items: center;
  letter-spacing: -0.2px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 32px;
  height: 32px;
  background: var(--red-soft);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.faq summary::before {
  content: "+";
  position: absolute;
  right: 34px;
  top: 50%;
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
  transform: translateY(-52%);
  z-index: 1;
  transition: transform 0.2s;
}
.faq details[open] summary::before {
  content: "−";
}
.faq details p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}
.faq details p a { color: var(--red); font-weight: 600; }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225,29,46,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: #fff;
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.cta-band p {
  font-size: 19px;
  margin: 0 0 36px;
  color: #d4d4d4;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--ink) !important;
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
.cta-band .btn-primary:hover {
  background: var(--red);
  color: #fff !important;
}

/* Footer */
footer.site {
  background: #fff;
  color: var(--slate);
  padding: 80px 0 32px;
  font-size: 15px;
  border-top: 1px solid var(--line);
}
footer.site .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
}
footer.site h4 {
  color: var(--ink);
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}
footer.site a { color: var(--slate); }
footer.site a:hover { color: var(--red); }
footer.site ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.site ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
footer.site .brand-foot {
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
footer.site .brand-foot .blue { color: var(--blue); }
footer.site p { line-height: 1.6; color: var(--slate); }
.bottom {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding-top: 24px;
  text-align: center;
  color: var(--mute);
  font-size: 13px;
}

/* Subpage hero */
.subpage-hero {
  background: var(--bg-alt);
  color: var(--ink);
  padding: 100px 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(225,29,46,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 18px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.subpage-hero p {
  font-size: 19px;
  color: var(--slate);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Article / long content */
.prose {
  max-width: 820px;
}
.prose p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
}
.prose h2 {
  font-size: 34px;
  margin-top: 56px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.prose h3 {
  font-size: 22px;
  margin-top: 36px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.prose ul { padding-left: 22px; }
.prose ul li {
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}
.prose ul li strong { color: var(--ink); }
.prose a { font-weight: 600; }

/* Tablet */
@media (max-width: 1100px) {
  .visit { grid-template-columns: 1fr; }
  .specialty { grid-template-columns: 1fr; padding: 56px 40px; }
  .specialty .big { font-size: 80px; }
}
@media (max-width: 960px) {
  footer.site .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
}

/* Mobile */
@media (max-width: 820px) {
  .container { padding: 0 20px; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  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 24px;
    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: 18px 0;
    border-bottom: 0;
    min-height: 48px;
    box-sizing: border-box;
    font-size: 15px;
  }
  header.site .container {
    position: relative;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .logo .brand {
    font-size: 18px;
    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: 1.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 4px;
  }
  .cta-call {
    padding: 10px 16px;
    font-size: 13px;
    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: 64px 0 80px; }
  .hero .lede { font-size: 17px; margin-bottom: 28px; }
  .hero .ctas { gap: 12px; }
  .btn { padding: 14px 24px; font-size: 14px; min-height: 50px; }
  section { padding: 64px 0; }
  section .section-intro { font-size: 17px; margin-bottom: 40px; }
  .eyebrow { font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
  .specialty { padding: 48px 28px; }
  .specialty .big { font-size: 62px; padding: 24px 16px; }
  .specialty .big small { font-size: 11px; letter-spacing: 4px; }
  .visit .info { padding: 32px 24px; }
  .visit .info h2 { font-size: 28px; }
  .map { min-height: 320px; }
  .map iframe { min-height: 320px; }
  footer.site { padding: 56px 0 24px; }
  footer.site .container { grid-template-columns: 1fr; gap: 36px; }
  .topbar { font-size: 12px; padding: 8px 0; }
  .topbar .container { gap: 8px; }
  .topbar .hours { display: none; }
  .subpage-hero { padding: 64px 0 64px; }
  .review { padding: 26px; }
  .review blockquote { font-size: 15px; }
  .service-card { padding: 28px 26px; }
  .service-card .icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 18px; }
  .cta-band { padding: 72px 0; }
  .cta-band p { font-size: 17px; }
  .review-meta { padding: 16px 24px; gap: 14px; }
  .review-meta .num { font-size: 36px; }
  .faq summary { font-size: 15px; padding: 18px 22px; padding-right: 56px; }
  .faq summary::after { right: 18px; width: 28px; height: 28px; }
  .faq summary::before { right: 28px; font-size: 20px; }
  .faq details p { font-size: 15px; padding: 0 22px 20px; }
  .prose p, .prose ul li { font-size: 16px; }
  .prose h2 { font-size: 26px; margin-top: 40px; }
  .prose h3 { font-size: 19px; margin-top: 28px; }
  .brand-tile { padding: 22px 20px; }
  .brand-tile strong { font-size: 18px; }
}

/* 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;
  }
  .topbar .container span:first-child { font-size: 12px; }
}
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .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; }
}
