/* ============================================================
   TAMPA MOBILE TIRE REPAIR — SHARED DESIGN SYSTEM
   Edit-once-update-everywhere stylesheet.
   ============================================================ */

:root {
  /* ⬇⬇⬇ EDIT PHONE HERE — ONE PLACE, EVERY PAGE UPDATES ⬇⬇⬇ */
  --phone-display: "(813) 590-1783";
  --phone-link: "+18135901783";
  --sms-link: "+18135901783";

  /* ⬇⬇⬇ EDIT EMAIL HERE ⬇⬇⬇ */
  --email: "dispatch@tampamobiletirerepair.com";

  /* ⬇⬇⬇ EDIT COLORS HERE ⬇⬇⬇ */
  --bone: #f6f2eb;
  --bone-2: #efe9df;
  --paper: #ffffff;
  --ink: #0e0e0e;
  --ink-2: #2a2a2a;
  --ink-3: #555;
  --ink-dim: #8a857c;
  --line: #e2dccf;
  --orange: #ff5a1f;
  --orange-dark: #d44715;
  --orange-soft: #ffe7dd;
  --black: #0a0a0a;

  /* Typography */
  --display: 'Bebas Neue', 'Impact', sans-serif;
  --body: 'Archivo', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1280px;
  --gutter: 20px;
}
@media (min-width: 720px) { :root { --gutter: 28px; } }

/* Fill phone-text spans automatically via CSS */
.phone-text::after { content: var(--phone-display); }

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 64px;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
body.nav-open { overflow: hidden; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 0.95; letter-spacing: 0.01em; margin: 0 0 0.5em; }
h1 { font-size: clamp(44px, 9vw, 104px); }
h2 { font-size: clamp(34px, 6vw, 68px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--orange); font-weight: 700;
  margin-bottom: 14px; display: inline-block;
}
.eyebrow::before { content: "▸ "; }
.accent { color: var(--orange); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; font-family: var(--display); font-size: 20px;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  min-height: 52px; white-space: nowrap; border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 0 var(--orange-dark), 0 8px 20px rgba(255,90,31,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-dark), 0 12px 28px rgba(255,90,31,0.35); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--orange-dark); }
.btn-secondary { background: var(--ink); color: #fff; border: 2px solid var(--ink); }
.btn-secondary:hover { background: transparent; color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ============ EMERGENCY BANNER ============ */
.banner {
  background: var(--ink); color: var(--paper); font-family: var(--mono);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; overflow: hidden; white-space: nowrap;
  border-bottom: 3px solid var(--orange);
}
.banner-track { display: inline-block; animation: ticker 28s linear infinite; }
.banner span { padding: 0 18px; }
.banner span.dot { color: var(--orange); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .banner-track { animation: none; } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; background: var(--paper);
  border-bottom: 1px solid var(--line); z-index: 50; padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.04);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.logo-link { display: flex; align-items: center; flex-shrink: 1; min-width: 0; }
.logo-img { width: auto; height: 44px; flex-shrink: 0; }
@media (min-width: 720px) { .logo-img { height: 56px; } }

.nav-links { display: none; align-items: center; gap: 2px; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-link {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; color: var(--ink-2);
  padding: 10px 14px; border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--orange); background: var(--bone); }
.nav-link.active { color: var(--orange); }
.nav-link.active::after {
  content: ""; display: block; width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; margin-left: 4px;
}

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-phone {
  display: none;
  font-family: var(--display); font-size: 24px; letter-spacing: 0.04em;
  color: var(--ink); align-items: center; gap: 8px; padding: 6px 10px;
}
.nav-phone .accent { color: var(--orange); }
.nav-phone::before {
  content: ""; width: 9px; height: 9px; background: #2bd55a; border-radius: 50%;
  box-shadow: 0 0 10px #2bd55a; animation: pulse 1.6s ease-in-out infinite;
}
@media (min-width: 1100px) { .nav-phone { display: inline-flex; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .nav-phone::before { animation: none; } }

.nav-cta-button {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px;
  letter-spacing: 0.06em; background: var(--orange); color: #fff;
  padding: 10px 16px; border-radius: 4px;
  min-height: 44px; text-transform: uppercase;
  transition: background 0.15s ease;
}
.nav-cta-button:hover { background: var(--orange-dark); color: #fff; }

.nav-call-mobile {
  display: inline-flex; font-family: var(--display); font-size: 13px;
  letter-spacing: 0.06em; background: var(--ink); color: #fff;
  padding: 10px 12px; border-radius: 4px; align-items: center; gap: 6px;
  min-height: 44px; text-transform: uppercase;
}
@media (min-width: 1100px) { .nav-call-mobile { display: none; } }

/* ============ NAV DROPDOWNS (desktop hover, mobile tap) ============ */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; color: var(--ink-2);
  padding: 10px 14px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-dropdown-trigger:hover { color: var(--orange); background: var(--bone); }
.nav-dropdown-trigger.active { color: var(--orange); }
.nav-dropdown-trigger::after {
  content: "▾"; font-family: var(--body); font-size: 10px; transition: transform 0.2s ease;
}
.nav-dropdown.open .nav-dropdown-trigger::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; min-width: 280px;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.06);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Invisible hover bridge — fixes "death triangle" */
.nav-dropdown-menu::before {
  content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 4px;
  font-family: var(--body); font-size: 14px;
  color: var(--ink-2); font-weight: 500;
  transition: background 0.12s ease, color 0.12s ease;
  text-transform: none; letter-spacing: 0;
}
.nav-dropdown-menu a:hover { background: var(--orange-soft); color: var(--orange-dark); }
.nav-dropdown-menu a::before {
  content: "▸"; color: var(--orange); font-size: 12px;
}
.nav-dropdown-menu a.see-all {
  border-top: 1px solid var(--line); margin-top: 4px; padding-top: 14px;
  font-weight: 700; color: var(--orange); font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-dropdown-menu a.see-all::before { content: "↗"; }

/* ============ MOBILE HAMBURGER + DRAWER ============ */
.nav-toggle {
  display: flex; flex-direction: column; gap: 4px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.nav-toggle:hover { background: var(--bone); }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  transform: translateX(100%);
  background: var(--paper);
  padding: 24px 20px 100px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 105;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-header img { height: 44px; }
.mobile-nav-close {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 4px;
  font-size: 28px; line-height: 1; color: var(--ink);
  transition: background 0.15s ease;
}
.mobile-nav-close:hover { background: var(--bone); }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list > li { border-bottom: 1px solid var(--line); }
.mobile-nav-list a, .mobile-nav-grouptrigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px; width: 100%; text-align: left;
  font-family: var(--display); font-size: 22px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
  transition: color 0.15s ease;
}
.mobile-nav-list a.active { color: var(--orange); }
.mobile-nav-list a:hover, .mobile-nav-grouptrigger:hover { color: var(--orange); }
.mobile-nav-grouptrigger::after {
  content: "▾"; font-family: var(--body); font-size: 14px; transition: transform 0.2s ease;
}
.mobile-nav-group.open .mobile-nav-grouptrigger::after { transform: rotate(180deg); }
.mobile-nav-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none; padding: 0; margin: 0;
}
.mobile-nav-group.open .mobile-nav-submenu { max-height: 800px; }
.mobile-nav-submenu li { border: none; }
.mobile-nav-submenu a {
  font-family: var(--body); font-size: 15px;
  font-weight: 500; text-transform: none;
  letter-spacing: 0; color: var(--ink-3);
  padding: 12px 4px 12px 22px;
}
.mobile-nav-submenu a::before { content: "▸ "; color: var(--orange); margin-right: 6px; }
.mobile-nav-cta {
  margin-top: 24px; padding: 22px 20px;
  background: var(--bone); border-radius: 8px;
  text-align: center;
}
.mobile-nav-cta small {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--ink-3);
  text-transform: uppercase; font-weight: 700;
}
.mobile-nav-cta strong {
  display: block; font-family: var(--display);
  font-size: 34px; color: var(--orange);
  letter-spacing: 0.04em; margin: 4px 0 14px;
}
.mobile-nav-cta .btn { width: 100%; }

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  background: var(--bone-2); border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.breadcrumbs a { color: var(--ink-2); transition: color 0.12s ease; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { margin: 0 10px; color: var(--ink-dim); }
.breadcrumbs .current { color: var(--orange); font-weight: 700; }

/* ============ HERO ============ */
.hero {
  position: relative; padding: 40px 0 60px; overflow: hidden;
  background: radial-gradient(ellipse 1000px 600px at 90% -10%, rgba(255,90,31,0.10), transparent 60%), var(--bone);
}
@media (min-width: 720px) { .hero { padding: 60px 0 80px; } }
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 980px) { .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px;
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--paper);
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; box-shadow: 0 0 8px var(--orange);
}
.hero h1 { font-size: clamp(48px, 10vw, 108px); line-height: 0.88; text-transform: uppercase; margin-bottom: 20px; color: var(--ink); }
.hero h1 .line2 { color: var(--orange); display: block; }
.hero-sub { font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-3); margin-bottom: 28px; max-width: 540px; line-height: 1.55; }
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-call-display {
  display: block; font-family: var(--display);
  font-size: clamp(36px, 6.5vw, 52px); color: var(--orange);
  letter-spacing: 0.03em; margin-bottom: 8px; line-height: 1;
}
.hero-call-display small {
  display: block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-3); margin-bottom: 4px; text-transform: uppercase;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-3); text-transform: uppercase;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: "✓"; color: var(--orange); font-weight: 700; }

.hero-visual {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 28px 60px -20px rgba(14,14,14,0.35), 0 4px 12px rgba(14,14,14,0.08);
  background: var(--ink); aspect-ratio: 16 / 11;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px; pointer-events: none;
}
.badge-pill {
  background: rgba(14,14,14,0.85); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px; border-radius: 100px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.badge-pill .dot {
  width: 8px; height: 8px; background: #2bd55a;
  border-radius: 50%; animation: pulse 1.6s ease-in-out infinite;
}
.badge-pill.orange { background: var(--orange); border-color: rgba(255,255,255,0.2); }

/* Page hero (smaller variant, for subpages) */
.page-hero {
  padding: 50px 0 60px;
  background: radial-gradient(ellipse 800px 400px at 90% 0%, rgba(255,90,31,0.10), transparent 60%), var(--bone);
}
.page-hero h1 { font-size: clamp(40px, 8vw, 80px); text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero .lead { font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-3); max-width: 720px; line-height: 1.55; }
.page-hero .lead strong { color: var(--ink); font-weight: 700; }

/* ============ STATS BAR ============ */
.stats { background: var(--ink); color: var(--paper); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--display); font-size: clamp(34px, 5vw, 52px); line-height: 1; color: var(--orange); }
.stat-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-top: 4px; color: var(--paper); opacity: 0.85; }

/* ============ SECTIONS ============ */
section { padding: 60px 0; }
@media (min-width: 720px) { section { padding: 88px 0; } }
.section-header { max-width: 720px; margin-bottom: 40px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { text-transform: uppercase; }
.section-header p { color: var(--ink-3); font-size: 17px; margin-top: 12px; }

/* Common section backgrounds */
.bg-bone { background: var(--bone); }
.bg-bone-2 { background: var(--bone-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bg-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bg-ink { background: var(--ink); color: var(--paper); }

/* ============ PROBLEM BAND ============ */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 900px) { .problem-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.problem-list { list-style: none; padding: 0; margin: 20px 0 0; }
.problem-list li {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--ink-2);
}
.problem-list li::before { content: "✕"; color: var(--orange); font-weight: 900; flex-shrink: 0; font-size: 20px; line-height: 1.2; }
.problem-vs {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 4px solid var(--orange); padding: 28px; border-radius: 6px;
  box-shadow: 0 12px 30px -16px rgba(14,14,14,0.18);
}
.problem-vs h3 { text-transform: uppercase; color: var(--ink); font-size: 28px; margin-bottom: 14px; }
.problem-vs p { color: var(--ink-2); font-size: 16px; line-height: 1.6; }

/* ============ PHOTO + COPY ROW (services, trust, etc.) ============ */
.photo-row {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center; margin-bottom: 48px;
}
@media (min-width: 900px) { .photo-row { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.photo-row.reverse > :first-child { order: 1; }
@media (min-width: 900px) { .photo-row.reverse > :first-child { order: 2; } }
.photo-frame {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(14,14,14,0.3), 0 2px 6px rgba(14,14,14,0.06);
  aspect-ratio: 16 / 11; background: var(--bone-2);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame .photo-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; padding: 8px 12px; border-radius: 100px;
  text-transform: uppercase; font-weight: 700;
}

/* ============ SERVICE CARDS ============ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px; position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden; display: block;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: rgba(255,90,31,0.4); transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(14,14,14,0.18);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--orange-soft); color: var(--orange);
  border-radius: 50%; margin-bottom: 16px;
}
.service-card h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
.service-card p { color: var(--ink-3); font-size: 15px; line-height: 1.55; }
.service-card .price {
  display: block; margin-top: 14px; font-family: var(--mono);
  font-size: 12px; color: var(--orange); letter-spacing: 0.06em; font-weight: 700;
}
.service-card .card-link {
  display: inline-block; margin-top: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-2); font-weight: 700; text-transform: uppercase;
  border-bottom: 1px solid var(--ink-2);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.service-card:hover .card-link { color: var(--orange); border-color: var(--orange); }

/* ============ PROCESS STEPS ============ */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding-top: 12px; }
.process-step .num {
  font-family: var(--display); font-size: 80px; color: transparent;
  line-height: 1; margin-bottom: 8px;
  -webkit-text-stroke: 2px var(--orange); display: block;
}
.process-step h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
.process-step p { color: var(--ink-3); font-size: 15px; }

/* ============ TRUST BULLETS ============ */
.trust-bullets { list-style: none; padding: 0; margin: 20px 0 0; }
.trust-bullets li {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
}
.trust-bullets .ico {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--orange-soft); color: var(--orange);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-size: 18px; font-weight: 700;
}
.trust-bullets strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 2px; font-weight: 700; }
.trust-bullets span.txt { color: var(--ink-3); font-size: 14px; line-height: 1.5; }

/* ============ AREAS GRID ============ */
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 900px) { .areas-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.area-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 600px) { .area-list { grid-template-columns: repeat(3, 1fr); } }
.area-list a {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; padding: 12px 14px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  text-transform: uppercase; display: flex; align-items: center; gap: 8px;
  color: var(--ink-2);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.area-list a::before { content: "◉"; color: var(--orange); font-size: 13px; }
.area-list a:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-soft); }
.areas-note {
  margin-top: 22px; font-family: var(--mono); font-size: 13px;
  color: var(--ink-2); padding: 16px; background: var(--paper);
  border-left: 3px solid var(--orange); border-radius: 4px; line-height: 1.6;
}
.areas-note strong { display: block; margin-bottom: 6px; color: var(--orange); font-weight: 700; }

/* ============ TESTIMONIALS ============ */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--paper); border: 1px solid var(--line);
  padding: 26px; border-radius: 6px;
  box-shadow: 0 12px 24px -16px rgba(14,14,14,0.15);
}
.review-stars { color: var(--orange); font-size: 18px; letter-spacing: 0.06em; margin-bottom: 12px; }
.review blockquote { margin: 0 0 18px; font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.review blockquote::before {
  content: "\201C"; font-family: var(--display); font-size: 52px;
  color: var(--orange); line-height: 0; display: block; margin-bottom: 10px;
}
.review-meta { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-avatar {
  width: 38px; height: 38px; background: var(--orange); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-size: 18px; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.13em; color: var(--ink-3); text-transform: uppercase; }

/* ============ QUOTE FORM ============ */
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .quote-grid { grid-template-columns: 0.85fr 1fr; gap: 56px; } }
.quote-pitch h2 { text-transform: uppercase; margin-bottom: 18px; }
.quote-pitch p { color: var(--ink-3); font-size: 16px; }
.quote-call {
  display: block; font-family: var(--display);
  font-size: clamp(34px, 5.5vw, 52px); color: var(--orange);
  letter-spacing: 0.03em; margin: 14px 0;
}
.quote-bullets { list-style: none; padding: 0; margin: 22px 0 0; }
.quote-bullets li { padding: 9px 0; font-size: 15px; display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); }
.quote-bullets li::before { content: "→"; color: var(--orange); font-weight: 700; flex-shrink: 0; }

.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 24px; box-shadow: 0 24px 50px -22px rgba(14,14,14,0.22);
}
@media (min-width: 720px) { .form-card { padding: 36px; } }
.form-card h3 { text-transform: uppercase; font-size: 28px; margin-bottom: 4px; color: var(--ink); }
.form-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--orange); text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.two { grid-template-columns: 1fr; }
@media (min-width: 500px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field label {
  display: block; font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--ink-3); margin-bottom: 6px; font-weight: 700;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--bone); border: 1px solid var(--line);
  border-radius: 4px; padding: 14px; color: var(--ink);
  font-family: var(--body); font-size: 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 50px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 3px rgba(255,90,31,0.15);
}
.form-field textarea { min-height: 90px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--orange); color: #fff; padding: 18px;
  font-family: var(--display); font-size: 22px; letter-spacing: 0.07em;
  border-radius: 4px; text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 0 var(--orange-dark); margin-top: 6px; min-height: 56px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-dark); }
.form-submit:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--orange-dark); }
.form-or {
  text-align: center; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-3); margin: 18px 0;
  position: relative; font-weight: 700;
}
.form-or::before, .form-or::after { content: ""; position: absolute; top: 50%; width: 38%; height: 1px; background: var(--line); }
.form-or::before { left: 0; } .form-or::after { right: 0; }
.form-call { display: grid; gap: 10px; }
@media (min-width: 500px) { .form-call { grid-template-columns: 1fr 1fr; } }
.botcheck { position: absolute !important; left: -9999px !important; }
.form-success {
  display: none; background: rgba(43,213,90,0.08);
  border: 1px solid #2bd55a; padding: 28px; border-radius: 8px; text-align: center;
}
.form-success.active { display: block; }
.form-success h3 { color: #1a9a3f; font-size: 32px; text-transform: uppercase; }
.form-success p { color: var(--ink-2); }

/* ============ FAQ ACCORDION ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; text-align: left;
  font-family: var(--display); font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--orange); }
.faq-q-icon { font-family: var(--display); font-size: 32px; color: var(--orange); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--ink-3); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { padding: 0 0 22px; line-height: 1.65; font-size: 16px; }

/* ============ RELATED CARDS GRID (used on service & city pages) ============ */
.related-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-top: 32px;
}
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 22px; border-radius: 6px; display: block;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.related-card:hover {
  border-color: var(--orange); transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(14,14,14,0.18);
}
.related-card-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.13em;
  color: var(--orange); font-weight: 700; text-transform: uppercase;
  margin-bottom: 8px;
}
.related-card h4 {
  font-size: 22px; text-transform: uppercase; color: var(--ink);
  margin-bottom: 6px;
}
.related-card p { font-size: 14px; color: var(--ink-3); line-height: 1.5; margin-bottom: 10px; }
.related-card-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--orange); font-weight: 700; text-transform: uppercase;
}
.related-card-link::after { content: " →"; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--ink); color: var(--paper); text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,90,31,0.25), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 22px, rgba(255,255,255,0.025) 22px, rgba(255,255,255,0.025) 24px);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 { font-size: clamp(44px, 8vw, 88px); text-transform: uppercase; line-height: 0.9; margin-bottom: 18px; color: #fff; }
.final-cta h2 .accent { color: var(--orange); }
.final-cta p { font-size: 17px; max-width: 560px; margin: 0 auto 14px; color: rgba(255,255,255,0.78); }
.phone-display-big {
  display: block; font-family: var(--display);
  font-size: clamp(44px, 11vw, 92px); color: var(--orange);
  letter-spacing: 0.03em; margin: 14px 0 24px; line-height: 1;
}
.phone-display-big small {
  display: block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; font-weight: 700; margin-bottom: 8px;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.final-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.final-cta .btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============ FOOTER ============ */
.footer { background: #0a0a0a; color: var(--paper); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo-badge {
  display: inline-block; background: #fff; padding: 10px 14px;
  border-radius: 6px; margin-bottom: 16px;
}
.footer-logo-badge img { height: 50px; width: auto; display: block; }
.footer h4 {
  font-size: 18px; text-transform: uppercase; margin-bottom: 14px;
  color: var(--orange); font-family: var(--display); letter-spacing: 0.06em;
}
.footer p, .footer a, .footer li { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer p strong, .footer li strong { color: #fff; }
.footer a:hover { color: var(--orange); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom {
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}

/* ============ STICKY MOBILE CALL BAR ============ */
.call-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--orange); color: #fff;
  padding: 14px 16px; text-align: center;
  font-family: var(--display); font-size: 20px; letter-spacing: 0.06em;
  z-index: 100;
  display: flex; justify-content: center; align-items: center; gap: 10px;
  min-height: 56px; box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
  text-transform: uppercase;
}
.call-bar::before { content: "☏"; font-size: 22px; animation: ring 1.4s ease-in-out infinite; }
@keyframes ring { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-15deg); } 75% { transform: rotate(15deg); } }
@media (prefers-reduced-motion: reduce) { .call-bar::before { animation: none; } }
@media (min-width: 900px) { .call-bar { display: none; } }

/* ============ FADE-IN ANIMATION ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-in { opacity: 1; transform: none; transition: none; } }

/* ============ PROSE CONTENT (service/city pages) ============ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; text-transform: uppercase; }
.prose h3 {
  margin-top: 1.8em; font-size: 28px;
  text-transform: uppercase; color: var(--ink);
}
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin: 0 0 1.1em; }
.prose p strong { color: var(--ink); font-weight: 700; }
.prose ul { padding-left: 0; list-style: none; margin: 1.2em 0 1.8em; }
.prose ul li {
  position: relative; padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px; line-height: 1.55; color: var(--ink-2);
}
.prose ul li::before {
  content: "▸"; position: absolute; left: 4px; top: 10px;
  color: var(--orange); font-weight: 700;
}
.prose-callout {
  margin: 24px 0; padding: 20px 24px;
  background: var(--paper); border-left: 4px solid var(--orange);
  border-radius: 4px;
}
.prose-callout p { margin: 0; font-size: 16px; color: var(--ink-2); }
.prose-callout strong { color: var(--orange); }

/* ============ CONTACT / VALUES CARDS ============ */
.cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 720px) { .cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.info-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 26px; border-radius: 6px; text-align: center;
}
.info-card .ico {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: var(--orange-soft); color: var(--orange);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-size: 26px;
}
.info-card h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 6px; }
.info-card p { color: var(--ink-3); font-size: 14px; line-height: 1.55; margin-bottom: 10px; }
.info-card a.action {
  display: inline-block; margin-top: 8px;
  font-family: var(--display); font-size: 22px;
  color: var(--orange); letter-spacing: 0.04em;
  word-break: break-word;
}

/* ============ HOURS TABLE ============ */
.hours-table {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; padding: 8px 24px;
}
.hours-table .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hours-table .row:last-child { border-bottom: none; }
.hours-table .day { color: var(--ink-2); font-weight: 700; }
.hours-table .time { color: var(--orange); font-weight: 700; }
