/* ============================================================
   Titan Auto Services — Design System
   1:1 visual match to the live titanautoservices.com (Elementor).
   Saira (display) + Roboto (body). Red #ed1c24 + orange-red #ff4d24.
   Powered by Reckless Media.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --primary:       #ed1c24;   /* logo / stat band / buttons / card borders */
  --primary-dark:  #c8141b;   /* accessible red for small text on white */
  --primary-darker:#a81016;
  --accent:        #ff4d24;   /* orange-red: eyebrows, stars, small icons, links */
  --accent-dark:   #e23a14;
  --accent-text:   #cc3300;   /* WCAG-passing orange-red for small text/links on white (5.2:1) */
  --ink:           #101010;
  --ink-2:         #161616;
  --ink-3:         #020101;
  --surface:       #ffffff;
  --surface-2:     #f5f5f5;   /* light gray band */
  --surface-3:     #ececec;
  --surface-dark:  #101010;
  --border:        #e6e6e6;
  --border-dark:   #2a2a2a;
  --text:          #2b2b2b;
  --text-soft:     #707070;
  --muted:         #909090;
  --on-dark:       #ffffff;
  --on-dark-soft:  rgba(255,255,255,0.78);
  --on-dark-mute:  rgba(255,255,255,0.55);

  --font-body:    'Roboto', 'Roboto Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Saira', 'Saira Fallback', 'Arial Narrow', Arial, sans-serif;
  --font-accent:  'Saira', 'Saira Fallback', 'Arial Narrow', Arial, sans-serif;

  --radius:    4px;
  --radius-sm: 3px;
  --radius-lg: 6px;
  --shadow:    0 16px 40px rgba(0,0,0,0.10);
  --shadow-sm: 0 6px 22px rgba(0,0,0,0.07);
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --z-content: 10;
  --z-nav: 10002;
  --z-mobile-menu: 10001;
  --z-modal: 10010;
}

/* ---------- Font fallbacks (CLS guard) ---------- */
@font-face { font-family: 'Roboto Fallback'; src: local('Arial');        size-adjust: 100%; ascent-override: 92%; descent-override: 24%; line-gap-override: 0%; }
@font-face { font-family: 'Saira Fallback';  src: local('Arial Narrow'); size-adjust: 105%; ascent-override: 92%; descent-override: 22%; line-gap-override: 0%; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; overflow-x: clip; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-text); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; color: var(--ink); margin: 0 0 .5em; font-weight: 700; letter-spacing: 0; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h3.h4s { font-size: 1.05rem; margin: 0 0 .4em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
p > a { text-decoration: underline; text-underline-offset: 2px; }
.contact-card p, .offer-deal-inner p { text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--gray { background: var(--surface-2); }
.section--dark { background: var(--surface-dark); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.center { text-align: center; }
.measure { max-width: 720px; }
.measure.center { margin-inline: auto; }
.mt-0 { margin-top: 0; }

/* ---------- Eyebrow label ---------- */
.eyebrow {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-text);
  display: inline-block;
  margin-bottom: .9rem;
}
.section--dark .eyebrow { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .92rem;
  padding: .95em 1.7em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-darker); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f0f0f0; color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-lg { padding: 1.1em 2.1em; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* link-style button (VIEW MORE / LEARN MORE underline) */
.btn-link { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: .85rem; color: var(--ink); border-bottom: 2px solid var(--primary); padding: 6px 18px 8px 0; display: inline-flex; align-items: center; gap: 10px; }
.btn-link::after { content: "→"; color: var(--primary); }
.btn-link:hover { color: var(--primary); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink-3);
  color: var(--on-dark-soft);
  font-size: .82rem;
  border-bottom: 1px solid var(--border-dark);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar a { color: var(--on-dark-soft); }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info svg { width: 15px; height: 15px; fill: var(--accent); flex-shrink: 0; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { display: inline-flex; color: var(--accent); }
.topbar-social a:hover { color: var(--primary); }
.topbar-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: background .25s ease, box-shadow .25s ease;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo .logo-light { display: none; }
.nav-logo .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover, .nav-links .current > a { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* dropdown */
.has-sub > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; min-width: 290px;
  list-style: none; margin: 0; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
  z-index: var(--z-nav);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.submenu a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-size: .92rem; font-weight: 500; color: var(--text); }
.submenu a:hover { background: var(--surface-2); color: var(--accent); }

/* transparent nav over hero (homepage) — nav stays in normal flow (sticky)
   below the topbar; the hero slides UP under it via negative margin so the
   nav never overlaps the black topbar. */
.nav.nav-transparent:not(.scrolled) { background: transparent; border-bottom-color: transparent; }
.nav.nav-transparent:not(.scrolled) .nav-links a,
.nav.nav-transparent:not(.scrolled) .has-sub > a::after,
.nav.nav-transparent:not(.scrolled) .has-mega > a::after { color: #fff; }
.nav.nav-transparent:not(.scrolled) .nav-links a:hover { color: var(--accent); }
.nav.nav-transparent:not(.scrolled) .nav-logo .logo-dark { display: none; }
.nav.nav-transparent:not(.scrolled) .nav-logo .logo-light { display: block; }
.nav.scrolled { box-shadow: var(--shadow-sm); }

/* ---------- Mega menu (Services) ---------- */
.nav-links > li.has-mega { position: static; }
.has-mega > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 3px solid var(--primary); box-shadow: var(--shadow);
  padding: 32px clamp(20px,5vw,48px); z-index: var(--z-nav);
  opacity: 0; visibility: hidden; transform: translateY(0); transition: opacity .16s ease;
  pointer-events: none;
}
/* invisible hover bridge: fills the gap between the Services link and the panel
   so moving the cursor down into the mega doesn't drop :hover and close it */
.mega::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 38px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-inner { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px 28px; }
.mega-col { min-width: 0; }
.mega-head { display: block; font-family: var(--font-display); font-weight: 700; font-size: .98rem !important; text-transform: none !important; letter-spacing: 0 !important; color: var(--ink) !important; padding: 0 0 10px !important; margin-bottom: 8px; border-bottom: 2px solid var(--surface-3); }
.mega-head:hover { color: var(--accent) !important; }
.mega-col a:not(.mega-head) { display: block; font-family: var(--font-body) !important; text-transform: none !important; letter-spacing: 0 !important; font-size: .9rem !important; font-weight: 400 !important; color: var(--text-soft) !important; padding: 6px 0 !important; }
.mega-col a:not(.mega-head):hover { color: var(--accent) !important; }
.mega-inner .mega-all { display: none; } /* mobile-only "All Services" link, injected by main.js */

/* mobile toggle */
.mobile-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.mobile-toggle span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.mobile-toggle span + span { margin-top: 5px; }
.nav.nav-transparent:not(.scrolled) .mobile-toggle span { background: #fff; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  margin-top: -84px;            /* slide hero up under the sticky transparent nav (nav min-height) */
  display: flex; align-items: center;
  color: #fff;
  padding: 170px 0 90px;
  background: #0c0c0d;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(8,8,9,.90) 0%, rgba(8,8,9,.66) 50%, rgba(8,8,9,.35) 100%), var(--hero-img, none);
  background-size: cover; background-position: center; z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero-sub { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.35rem); color: #fff; letter-spacing: .01em; margin-bottom: .9rem; }
.hero-lead { max-width: 56ch; color: rgba(255,255,255,.82); font-size: 1.05rem; }
.hero .btn-row { margin-top: 28px; }
.hero-contact { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-contact .ico-line { display: flex; align-items: center; gap: 12px; }
.hero-contact .ico-line svg { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; }
.hero-contact .lbl { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: rgba(255,255,255,.6); display: block; }
.hero-contact .val { font-weight: 600; color: #fff; }

/* service quick-strip (under hero) */
.service-strip { background: rgba(16,16,18,.96); position: relative; z-index: 1; }
.service-strip .container { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding-block: 26px; }
.service-strip a {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  color: #fff; padding: 14px 8px; border-radius: var(--radius-sm); transition: background .15s;
}
.service-strip a:hover { background: rgba(255,255,255,.06); color: #fff; }
.service-strip .ico { width: 64px; height: 64px; display: grid; place-items: center; }
.service-strip .ico img { width: 64px; height: 64px; object-fit: contain; transition: filter .2s ease, transform .2s ease; filter: brightness(0) invert(1); }
.service-strip a:hover .ico img { filter: none; transform: scale(1.06); }
.service-strip .lbl { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; font-weight: 500; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; color: #fff; text-align: center;
  padding: clamp(150px, 18vw, 210px) 0 clamp(48px, 7vw, 80px);
  background: #101012;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(10,10,12,.74), rgba(10,10,12,.84)), var(--hero-img, none);
  background-size: cover; background-position: center; z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,.82); max-width: 60ch; margin: 14px auto 0; }

/* breadcrumbs */
.breadcrumbs { font-size: .85rem; color: var(--muted); padding: 16px 0; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumbs li::after { content: "/"; margin-left: 8px; color: var(--border); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: #666666; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current] { color: var(--text); }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-rev .split-media { order: -1; }

/* photo with corner stat badge (Auto Repair Elevated) */
.photo-badge { position: relative; }
.photo-badge img { border-radius: var(--radius); width: 100%; }
.photo-badge .badge { position: absolute; left: 0; bottom: 0; background: rgba(16,16,16,.92); color: #fff; padding: 18px 26px; border-radius: 0 var(--radius) 0 0; }
.photo-badge .badge .n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: #fff; }
.photo-badge .badge .t { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); display: block; margin-top: 2px; }

/* ---------- Service cards ---------- */
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dcdcdc; }
.svc-card-img { aspect-ratio: 3 / 2; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card-body h3 { font-size: 1.15rem; margin-bottom: .4em; }
.svc-card-body p { color: var(--text-soft); font-size: .96rem; flex: 1; margin-bottom: .8em; }
.svc-card .card-link { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.svc-card .card-link::after { content: "→"; transition: transform .15s; }
.svc-card:hover .card-link::after { transform: translateX(4px); }
.card-accent { height: 4px; background: var(--primary); }

/* ---------- "What to expect" process ---------- */
.process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.process-step { position: relative; background: #fff; border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); overflow: hidden; }
.section--dark .process-step { background: #fff; }
.process-step .num { font-family: var(--font-display); font-weight: 700; font-size: 3.6rem; line-height: 1; color: #ececec; position: absolute; top: 20px; right: 24px; }
.process-step .step-ico { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(255,77,36,.12); display: grid; place-items: center; margin-bottom: 18px; }
.process-step .step-ico svg { width: 24px; height: 24px; fill: var(--accent); }
.process-step h3 { font-size: 1.22rem; margin-bottom: .35em; color: var(--ink); }
.process-step p { color: var(--text-soft); font-size: .95rem; margin: 0; }
.process-wide { grid-column: 1 / -1; }

/* ---------- Feature list (why choose / how titan helps) ---------- */
/* ---------- Check list (two-column ticked list) ---------- */
.check-list { list-style: none; padding: 0; margin: 0; max-width: 880px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }
.check-list li { position: relative; padding-left: 38px; color: var(--ink); font-weight: 500; line-height: 1.5; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--primary); }
.check-list li::after { content: ""; position: absolute; left: 8px; top: 6px; width: 10px; height: 6px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg); }
@media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }

.feature-list { display: grid; gap: 20px; list-style: none; padding: 0; margin: 0; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .check { flex-shrink: 0; width: 30px; height: 30px; border-radius: var(--radius-sm); background: rgba(255,77,36,.12); display: grid; place-items: center; margin-top: 2px; }
.feature-list .check svg { width: 17px; height: 17px; fill: var(--accent); }
.feature-list h3, .feature-list h4 { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.08; margin: 0 0 2px; color: var(--ink); }
.section--dark .feature-list h3, .section--dark .feature-list h4 { color: #fff; }
.feature-list p { margin: 0; color: var(--text-soft); font-size: .95rem; }
.section--dark .feature-list p { color: var(--on-dark-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; }

/* ---------- Meet the tech (Meet David Sluder: side-by-side, staggered) ---------- */
/* Meet David: layered composition — card front-left, photo behind-right, play button on photo */
.meet-media { position: relative; max-width: 460px; margin-inline: auto; }
.meet-media .meet-card-img { position: relative; z-index: 2; display: block; width: 64%; margin-top: 42px; border-radius: var(--radius); box-shadow: var(--shadow); }   /* front, left */
.meet-media .meet-video { position: absolute; top: 0; right: 0; z-index: 1; width: 56%; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }   /* behind, right */
.meet-media .meet-video img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.meet-media .meet-video .play-btn { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(237,28,36,.45); transition: transform .15s ease; z-index: 3; }
.meet-media .meet-video:hover .play-btn { transform: scale(1.08); }
.meet-media .meet-video .play-btn svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
@media (max-width: 600px) { .meet-media { max-width: 360px; } .meet-media .meet-card-img { width: 66%; } .meet-media .meet-video { width: 54%; } }

/* why-choose icon list (distinct red icons, not checkmark circles) */
.feature-list--why li { gap: 16px; }
.feature-list--why .why-ico { flex-shrink: 0; width: 32px; height: 32px; display: grid; place-items: center; margin-top: 1px; }
.feature-list--why .why-ico svg { width: 30px; height: 30px; fill: var(--primary); }

/* ---------- Stat band (full-width red) ---------- */
.stat-band { background: var(--primary-dark); color: #fff; }
.stat-band .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: clamp(40px, 6vw, 64px); text-align: center; }
.stat-band .stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.8rem); line-height: 1; color: #fff; }
.stat-band .stat .lbl { font-size: .92rem; color: #fff; margin-top: 6px; letter-spacing: .02em; }

/* inline stat trio (light) */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat .tag { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; color: var(--muted); display: block; margin-bottom: 6px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1; color: var(--primary); }
.stat .ctx { font-size: .9rem; color: var(--text-soft); margin-top: 6px; }

/* ---------- Reviews ---------- */
.review-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.review-card { background: #fff; border-left: 3px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-card .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.review-card p { color: var(--text-soft); font-size: .96rem; flex: 1; }
.review-card .reviewer { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review-card .reviewer img { width: 38px; height: 38px; border-radius: 50%; }
.review-card .reviewer .who { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.2; }
.review-card .reviewer .src { font-size: .82rem; color: var(--muted); }

/* ---------- Resource cards (Popular Resources) ---------- */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); }
.resource-card img { height: 72px; width: auto; margin: 0 auto 16px; }
.resource-card h3 { font-size: 1.18rem; }
.resource-card p { color: var(--text-soft); font-size: .95rem; }

/* ---------- External "Learn More" links ---------- */
.ext-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ext-links a { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.ext-links a::before { content: "↗"; color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--primary); font-family: var(--font-body); transition: transform .2s; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 700px; }
.faq-a p { padding: 0 44px 22px 0; margin: 0; color: var(--text-soft); }

/* ---------- Offer / coupon ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; }
.offer-card img { width: 100%; height: 100%; object-fit: contain; }
.offer-banner { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 26px; }
.offer-banner img { width: 100%; height: auto; }
.offer-card--deal { background: var(--ink); border-color: var(--border-dark); display: flex; }
.offer-deal-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; width: 100%; height: 100%; padding: 26px 20px; }
.offer-deal-tag { font-family: var(--font-accent); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark); background: var(--primary); padding: 6px 14px; border-radius: var(--radius-sm); }
.offer-deal-line1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3vw, 40px); line-height: 1.05; text-transform: uppercase; color: var(--on-dark); margin: 6px 0 0; }
.offer-deal-line2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 3.8vw, 50px); line-height: 1.05; text-transform: uppercase; color: var(--primary); margin: 0; }
.offer-deal-line3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: .05em; text-transform: uppercase; color: var(--on-dark-soft); margin: 0; }
.offer-card--deal .offer-deal-inner img { width: 150px; height: auto; margin-top: 10px; }
.offer-deal-call { font-family: var(--font-accent); font-weight: 700; font-size: 15px; letter-spacing: .03em; color: var(--on-dark); text-decoration: none; }
.offer-deal-call:hover { color: var(--primary); }
.offer-banner--military { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; background: var(--ink); border: 1px solid var(--border-dark); padding: 30px 36px; }
.offer-mil-line1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; text-transform: uppercase; color: var(--primary); margin: 0 0 4px; }
.offer-mil-line2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(16px, 1.8vw, 22px); line-height: 1.2; text-transform: uppercase; color: var(--on-dark); margin: 0 0 8px; }
.offer-mil-line3 { font-family: var(--font-body); font-size: 15px; color: var(--on-dark-soft); margin: 0; }
.offer-mil-right { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.offer-mil-right img { width: 150px; height: auto; }
.offer-mil-cta { font-family: var(--font-accent); font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 10px 18px; border-radius: var(--radius-sm); }
.offer-banner--military:hover .offer-mil-cta { background: var(--primary-darker); }
.offer-callout { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.offer-callout .price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,6vw,3.4rem); line-height: 1; }
.offer-callout h3 { color: #fff; margin: 0 0 4px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary-dark); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #fff; max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 24px; }

/* ---------- Contact info grid (homepage Get in Touch + contact page) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 48px; margin-top: 36px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ico { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; }
.info-item .ico svg { width: 26px; height: 26px; fill: var(--accent); }
.info-item .lbl { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.info-item .val { color: var(--text-soft); }
.info-item a.val:hover { color: var(--accent); }

/* ---------- Prose (service body copy) ---------- */
.prose { max-width: 760px; }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; background: var(--accent); border-radius: 1px; transform: rotate(45deg); }
.fact-box { background: var(--surface-2); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 22px 26px; margin: 28px 0; }
.fact-box p { margin: 0; color: var(--text-soft); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px,5vw,56px); align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(255,77,36,.12); display: grid; place-items: center; }
.contact-list .ico svg { width: 22px; height: 22px; fill: var(--accent); }
.contact-list .lbl { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--muted); display: block; }
.contact-list .val { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.contact-list a.val:hover { color: var(--accent); }
.contact-form label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; color: var(--ink); }
.contact-form .field { margin-bottom: 18px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,77,36,.12); }
.consent-line { display: flex; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: .82rem; color: var(--text-soft); line-height: 1.5; cursor: pointer; }
.consent-line input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--primary); }
.consent-line a { color: var(--accent-dark); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Links / linktree page ---------- */
.linktree { max-width: 460px; margin: 0 auto; text-align: center; }
.linktree img.lt-logo { height: 90px; width: auto; margin: 0 auto 20px; }
.linktree .btn { width: 100%; justify-content: center; margin-bottom: 14px; }


/* ---------- Areas band (homepage Where We Serve) ---------- */
.areas-band { background: var(--surface-dark); }
.areas-band h2 { color: var(--on-dark); }
.areas-head { max-width: 780px; margin-inline: auto; text-align: center; }
.areas-head p { color: var(--on-dark-soft); }
.areas-head p a { color: var(--accent); }
.areas-head p a:hover { color: #fff; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.area-card { position: relative; display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 26px 22px 20px; overflow: hidden; transition: transform .15s ease, border-color .15s ease; }
.area-card::before { content: ""; position: absolute; top: 0; left: -10px; width: 62px; height: 5px; background: var(--primary); transform: skewX(-32deg); }
.area-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: 1.16rem; color: var(--on-dark); margin: 4px 0 6px; }
.area-card p { font-size: .9rem; line-height: 1.6; color: var(--on-dark-mute); margin: 0 0 16px; flex-grow: 1; }
.area-go { font-family: var(--font-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; font-size: .78rem; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.area-go::after { content: "\2192"; transition: transform .15s ease; }
.area-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.area-card:hover .area-go::after { transform: translateX(4px); }
.area-card--home { background: var(--primary-dark); border-color: var(--primary-dark); }
.area-card--home::before { background: #fff; }
.area-card--home p { color: rgba(255,255,255,.88); }
.area-card--home .area-go { color: #fff; }
.area-tag { font-family: var(--font-accent); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.18); padding: 4px 10px; border-radius: var(--radius-sm); align-self: flex-start; margin-bottom: 10px; }
.area-card--all { background: transparent; border-style: dashed; }
@media (max-width: 1024px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .areas-grid { grid-template-columns: 1fr; } }


/* ---------- Maps chooser (topbar address) ---------- */
.topbar-info a.topbar-maps { display: inline-flex; align-items: center; gap: 7px; color: var(--on-dark-soft); }
.topbar-info a.topbar-maps:hover { color: #fff; }
.topbar-info a.topbar-maps svg { width: 15px; height: 15px; fill: var(--accent); flex-shrink: 0; }
.maps-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: none; align-items: center; justify-content: center; z-index: var(--z-modal); padding: 20px; }
.maps-overlay.open { display: flex; }
.maps-box { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 34px 30px 30px; text-align: center; width: min(92vw, 360px); box-shadow: var(--shadow); display: grid; gap: 12px; }
.maps-box p { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; color: var(--ink); }
.maps-box .btn { justify-content: center; }
.maps-close { position: absolute; top: 8px; right: 12px; background: none; border: 0; font-size: 26px; color: var(--muted); cursor: pointer; line-height: 1; padding: 4px; }
.maps-close:hover { color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); color: var(--on-dark-soft); padding: 64px 0 0; }
.footer a { color: var(--on-dark-soft); }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo img { height: 80px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .95rem; color: var(--on-dark-mute); max-width: 32ch; font-weight: 600; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { color: var(--accent); display: inline-flex; }
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer .footer-heading { font-family: var(--font-display); line-height: 1.08; font-weight: 700; font-size: 1.15rem; color: #fff; margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { font-size: .95rem; text-transform: uppercase; letter-spacing: .03em; font-family: var(--font-accent); font-weight: 500; }
.footer-hours li { margin-bottom: 12px; font-size: .95rem; color: var(--on-dark-soft); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .94rem; }
.footer-contact svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 4px; }
.footer-areas { border-top: 1px solid var(--border-dark); padding: 26px 0 40px; }
.footer-areas .footer-heading { margin-bottom: 14px; }
.areas-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.areas-list a { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .03em; font-size: .92rem; font-weight: 500; }
.footer-bottom { background: var(--ink-3); padding: 18px 0; font-size: .85rem; color: var(--on-dark-mute); }
.footer-bottom .footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--on-dark-soft); }
.footer-legal { display: flex; gap: 18px; }
.footer-credit img { height: 14px; width: auto; opacity: .85; vertical-align: middle; }
@media (max-width: 560px) { .footer-bottom .footer-bottom-inner { justify-content: center; text-align: center; } }

/* ---------- Animations ---------- */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.anim.vis { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .anim { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Modal form ---------- */
.form-overlay { position: fixed; inset: 0; background: rgba(8,8,10,.7); z-index: var(--z-modal); display: none; align-items: center; justify-content: center; padding: 20px; }
.form-overlay.open { display: flex; }
.form-box { background: #fff; border-radius: var(--radius); max-width: 540px; width: 100%; position: relative; overflow: hidden; }
.form-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--ink); z-index: 2; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-strip .container { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-cta .btn:not(.nav-call) { display: none; }
}
@media (max-width: 860px) {
  .grid-3, .grid-4, .review-grid, .resource-grid, .offer-grid { grid-template-columns: 1fr; }
  .grid-2, .feature-grid, .process, .split, .contact-grid, .stats, .info-grid, .stat-band .container { grid-template-columns: 1fr; }
  .split { gap: 28px; }
  .split-rev .split-media { order: 0; }
  .process-wide { grid-column: auto; }
  .meet-card { max-width: 420px; margin-inline: auto; }

  /* mobile nav */
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; top: 0;
    background: var(--ink); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 4px; padding: 96px 32px 40px; z-index: var(--z-mobile-menu);
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
  }
  body.mobile-nav-open .nav-links { transform: translateX(0); }
  .nav-links a { color: #fff; font-size: 1.15rem; padding: 12px 0; width: 100%; }
  .nav.nav-transparent:not(.scrolled) .nav-links a { color: #fff; }
  .has-sub > a::after { margin-left: auto; }
  .submenu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; background: transparent; padding: 0 0 8px 14px; min-width: 0; }
  .submenu a { color: var(--on-dark-soft); font-size: 1rem; padding: 8px 0; }
  .submenu a:hover { background: none; }
  /* Mega menu becomes a tap-to-open accordion (main.js toggles .open) */
  .nav-links > li.has-mega { width: 100%; }
  .has-mega > a { display: flex; align-items: center; }
  .has-mega > a::after { margin-left: auto; margin-right: 6px; }
  .has-mega.open > a::after { transform: rotate(225deg) translateY(2px); }
  .mega { display: none; position: static; opacity: 1; visibility: visible; pointer-events: auto; background: transparent; border: 0; box-shadow: none; padding: 0 0 10px 14px; }
  .mega::before { display: none; }
  .has-mega.open .mega { display: block; }
  .mega-inner { display: block; max-width: none; }
  .mega-col { margin-bottom: 14px; }
  .mega-inner .mega-all { display: block; color: #fff !important; font-weight: 700; font-size: 1rem !important; padding: 8px 0 12px !important; }
  .mega-head { color: #fff !important; border-bottom-color: rgba(255,255,255,.18); font-size: .95rem !important; padding: 6px 0 8px !important; }
  .mega-col a:not(.mega-head) { color: rgba(255,255,255,.72) !important; font-size: .95rem !important; padding: 7px 0 !important; }
  body.mobile-nav-open { overflow: hidden; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .service-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .hero-contact { gap: 18px; }
  .offer-callout { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 375px) {
  .service-strip .lbl { font-size: .72rem; }
}
