/* =========================================================
   [BUSINESS NAME] — Auto Glass Site
   Palette: deep navy + sharp amber accent on clean whites.
   Trustworthy local-service brand: confident, lots of whitespace.
   ========================================================= */

:root {
  --navy:       #0e2a47;
  --navy-700:   #163a5e;
  --navy-600:   #1e4d77;
  --ink:        #11233a;
  --slate:      #51637a;
  --line:       #e4e9f0;
  --bg:         #ffffff;
  --bg-soft:    #f5f8fc;
  --bg-soft-2:  #eef3fa;
  --accent:     #f6a609;   /* amber */
  --accent-700: #d98c00;
  --accent-ink: #2b1d00;
  --success:    #1f9d57;
  --danger:     #c63434;

  --radius:     14px;
  --radius-sm:  9px;
  --shadow-sm:  0 1px 2px rgba(14, 42, 71, .06), 0 2px 6px rgba(14, 42, 71, .06);
  --shadow-md:  0 6px 18px rgba(14, 42, 71, .10);
  --shadow-lg:  0 18px 48px rgba(14, 42, 71, .16);

  --maxw: 96vw;
  --pad:        clamp(1rem, 4vw, 2rem);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.15; color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Placeholder styling (so client sees what to fill) ---------- */
.ph-note {
  display: inline-block;
  background: #fff4d6;
  color: #7a5a00;
  border: 1px dashed var(--accent-700);
  padding: .05em .45em;
  border-radius: 6px;
  font-size: .8em;
  font-weight: 600;
  letter-spacing: 0;
}
.placeholder-img {
  display: grid; place-content: center; text-align: center; gap: .35rem;
  background:
    repeating-linear-gradient(45deg, #eef3fa 0 14px, #e6edf7 14px 28px);
  border: 2px dashed #b9c8dc;
  border-radius: var(--radius);
  color: var(--slate);
}
.placeholder-img span { font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.placeholder-img small { font-size: .8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 700; line-height: 1;
  padding: .8rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-700); box-shadow: var(--shadow-md); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-700); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 88px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; color: var(--navy); font-weight: 800; flex-shrink: 0; margin-right: auto; }
.logo:hover { text-decoration: none; }
.logo-mark { display: inline-flex; color: var(--accent-700); }
.logo-text { font-family: "Saira Condensed","Inter",sans-serif; font-style: italic; font-weight: 800; font-size: 1.5rem; letter-spacing: 0; color: var(--navy); white-space: nowrap; }

.main-nav { margin-left: 1.5rem; }
.main-nav ul { list-style: none; display: flex; gap: 1.15rem; margin: 0; padding: 0; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .98rem; padding: .35rem 0; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); transition: right .2s ease;
}
.main-nav a:hover { text-decoration: none; }
.main-nav a:hover::after { right: 0; }
.main-nav .mobile-only { display: none; } /* shown only inside the mobile menu */

.header-actions { display: flex; align-items: center; gap: .8rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--navy);
}
.header-phone:hover { color: var(--accent-700); text-decoration: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease; margin-inline: auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700;
  color: var(--accent-700); margin: 0 0 .6rem;
}
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); text-align: center; }
.section-lede { color: var(--slate); font-size: 1.1rem; margin: 0; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(246,166,9,.14), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: #fff; }
.hero-sub { color: #cdd9e8; font-size: 1.15rem; max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.8rem; }

.trust-badges { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem .7rem; margin: 0; padding: 0; }
.trust-badges li {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #eaf1f9; font-size: .82rem; font-weight: 600;
  padding: .4rem .75rem; border-radius: 999px;
}
.trust-badges li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.hero-media { position: relative; z-index: 1; }
.hero-photo {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}

/* Hero background image with dark overlay for readable text */
.hero-bg { position: relative; isolation: isolate; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("images/hero.jpg") center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(246,166,9,.14), transparent 60%),
    linear-gradient(160deg, rgba(14,42,71,.94) 0%, rgba(22,58,94,.90) 55%, rgba(30,77,119,.86) 100%);
}
.hero-bg .hero-inner { position: relative; z-index: 1; }

/* Logo image in header + footer */
.logo-chip {
  background: #000; border-radius: 10px; padding: 4px 8px;
  box-shadow: var(--shadow-sm);
}
.logo-img { display: block; height: 74px; width: auto; }
.footer-logo {
  display: block; height: auto; width: 120px; max-width: 60%;
  background: #000; border-radius: 12px; padding: 8px; margin-bottom: .8rem;
}

/* ---------- Card grid (shared) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfdcec; }

.icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 1rem; color: var(--navy-600);
  background: var(--bg-soft-2); border-radius: 12px;
}
.icon svg { width: 26px; height: 26px; }
.icon.round { border-radius: 50%; background: #fff4d6; color: var(--accent-700); }

.service-card { position: relative; }
.service-card p { color: var(--slate); margin: 0; }
.service-card.featured {
  border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  background: linear-gradient(180deg, #fffdf6, #fff);
}
.service-card.featured .icon { background: #fff4d6; color: var(--accent-700); }
.badge-premium {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: var(--accent-ink); font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; padding: .25rem .6rem; border-radius: 999px;
}

/* Why-us */
.why-us { background: var(--bg-soft); }
.why-grid { grid-template-columns: repeat(3, 1fr); }
.value-prop { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.value-prop p { color: var(--slate); margin: 0; }
.value-prop h3 { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }

/* ---------- Insurance strip ---------- */
.insurance-strip { background: var(--navy); color: #fff; text-align: center; }
.insurance-strip .strip-heading { color: #fff; }
.strip-sub { color: #c7d4e4; max-width: 52ch; margin: 0 auto 2rem; }
.logo-row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 0 0 1.5rem; padding: 0; }
.logo-slot {
  display: grid; place-content: center;
  min-width: 140px; height: 64px; padding: 0 1rem;
  background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.35);
  border-radius: 10px; color: #aebfd2; font-size: .82rem; font-weight: 600; letter-spacing: .03em;
}
.cert-note { color: #c7d4e4; font-size: .95rem; margin: 0; }
.insurance-strip .ph-note { background: rgba(246,166,9,.15); color: #ffd980; border-color: rgba(246,166,9,.5); }

/* Insurance carrier LOGO wall — real brand SVGs on a light card so the
   brand colors read; grayscale by default, full color on hover/focus. */
.carrier-wall {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  margin: 0 auto 1.5rem;
  max-width: 980px;
}
.carrier-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.75rem);
  align-items: center; justify-items: center;
}
.carrier-grid li {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 48px;
}
.carrier-grid img {
  max-width: 100%;
  max-height: 34px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
/* Square/tall marks (umbrella, eagle, round seal) get a touch more height
   so they sit visually balanced next to the wordmarks, not shrunk. */
.carrier-grid li.is-tall img { max-height: 44px; }
.carrier-grid img:hover,
.carrier-grid li:hover img,
.carrier-grid img:focus-visible {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

/* Certification badges */
.cert-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin: 1.6rem auto 0; max-width: 720px;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(246,166,9,.12); border: 1px solid rgba(246,166,9,.45);
  color: #ffd980; font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  padding: .5rem .9rem; border-radius: 10px;
}
.cert-badge::before {
  content: ""; width: 9px; height: 9px; border-radius: 2px; background: var(--accent);
}

/* ---------- Our Work gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gallery-item {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background: var(--bg-soft);
}
.gallery-item img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Reviews ---------- */
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.review-card { display: flex; flex-direction: column; }
.stars { color: var(--accent); font-size: 1.25rem; letter-spacing: .1em; margin-bottom: .8rem; }
.review-card blockquote { margin: 0 0 1rem; font-size: 1.02rem; color: var(--ink); }
.review-author { margin: auto 0 0; font-weight: 700; color: var(--slate); }
.reviews-cta {
  margin-top: 2.5rem; text-align: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem;
}
.reviews-cta p { margin: 0 0 1rem; font-weight: 600; }

/* ---------- Service area ---------- */
.service-area { background: var(--bg-soft); }
.service-area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.area-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem; margin: 1.2rem 0 1.8rem; padding: 0; }
.area-list li {
  position: relative; padding-left: 1.6rem; color: var(--ink); font-weight: 600;
}
.area-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px;
  background: var(--accent); border-radius: 50%;
}
.map-placeholder { aspect-ratio: 4 / 3; min-height: 260px; }

/* ---------- Contact / form ---------- */
.contact-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-points { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .9rem; }
.contact-points li { display: flex; align-items: center; gap: .7rem; font-weight: 600; }
.contact-points svg { color: var(--accent-700); flex: none; }

.quote-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
.form-row label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.req { color: var(--danger); }
.optional { color: var(--slate); font-weight: 500; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .75rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfcfe; transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(30,77,119,.12);
}
.quote-form textarea { resize: vertical; }
.form-row.invalid input, .form-row.invalid select, .form-row.invalid textarea {
  border-color: var(--danger); box-shadow: 0 0 0 3px rgba(198,52,52,.10);
}
.error-msg { display: block; color: var(--danger); font-size: .82rem; font-weight: 600; margin-top: .3rem; min-height: 0; }
.form-note { text-align: center; color: var(--slate); font-size: .85rem; margin: .9rem 0 0; }
.hp-field { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c7d4e4; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem;
  padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: 2.5rem;
}
.footer-brand .logo-text { color: #fff; display: inline-block; margin-bottom: .6rem; }
.footer-brand p { color: #a9bace; font-size: .92rem; max-width: 36ch; }
.footer-col h3 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-col a { color: #c7d4e4; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; padding: 1.1rem 0; font-size: .85rem; color: #91a4ba; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .card-grid, .why-grid, .reviews-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .service-area-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .carrier-grid { grid-template-columns: repeat(4, 1fr); }
  .financing-card { grid-template-columns: 1fr; text-align: center; }
  .financing-lede { margin-inline: auto; }
  .financing-cta { justify-content: center; }
  .financing-logo { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 72px; } /* room for sticky action bar */
  .nav-toggle { display: flex; }

  /* Sticky bottom action bar — always-visible lead capture on phones */
  .mobile-action-bar{
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    gap: .55rem;
    padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.97);
    backdrop-filter: saturate(180%) blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(14,42,71,.12);
  }
  .mab-btn{
    flex: 1 1 0;
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    font-weight: 800; font-size: 1rem; line-height: 1;
    padding: .95rem .5rem; border-radius: 12px;
    text-decoration: none; border: 2px solid transparent;
  }
  .mab-btn:hover { text-decoration: none; }
  .mab-call{ background: var(--navy); color: #fff; }
  .mab-quote{ background: var(--accent); color: var(--accent-ink); }
  .header-phone span { display: none; } /* keep the call icon, drop the number on small screens */
  .btn-quote { display: none; }         /* free-quote lives in the open mobile menu */

  .main-nav {
    position: fixed; inset: 88px 0 auto 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: .5rem var(--pad) 1.2rem; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav li:last-child { border-bottom: 0; }
  .main-nav a { display: block; padding: .9rem 0; font-size: 1.05rem; }
  .main-nav a::after { display: none; }
  .main-nav .mobile-only { display: block; border-bottom: 0; }
  .main-nav .mobile-quote { display: inline-flex; margin-top: 1rem; }
}

@media (max-width: 540px) {
  .card-grid, .why-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .carrier-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem 1rem; }
  .carrier-grid li { height: 40px; }
  .carrier-grid img { max-height: 30px; }
  .carrier-grid li.is-tall img { max-height: 40px; }
}

/* float the logo transparently (no background chip) */
.logo-chip{background:transparent!important;padding:0!important;box-shadow:none!important;border:0!important;border-radius:0!important;}

/* ===== Right-to-Choose callout (insurance section) — key selling point ===== */
.rtc-callout{
  position: relative;
  max-width: 820px;
  margin: 1.8rem auto 2.2rem;
  padding: 1.6rem 1.75rem 1.5rem;
  background: linear-gradient(180deg, #fffaf0, #fff6e0);
  border: 1px solid #f0d488;
  border-left: 6px solid var(--accent);
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(14,42,71,.18);
}
.rtc-callout .rtc-flag{
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .65rem;
  border-radius: 999px;
  margin-bottom: .7rem;
}
.rtc-callout .rtc-headline{
  margin: 0 0 .5rem;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #14213d;
}
.rtc-callout .rtc-headline em{ font-style: normal; color: var(--accent-700); }
.rtc-callout .rtc-body{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #333;
}
.rtc-callout strong{ color: #14213d; }

/* ===== SNAP Finance financing callout ===== */
.financing { background: var(--bg-soft); }
.financing-card{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.financing-card .eyebrow{ margin-bottom: .5rem; }
.financing-card h2{ margin: 0 0 .5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.financing-lede{ color: var(--slate); font-size: 1.1rem; margin: 0 0 1.3rem; max-width: 52ch; }
.financing-cta{ display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.1rem; }
.financing-note{ color: var(--slate); font-size: .88rem; font-weight: 600; }
.financing-logo{ display: flex; align-items: center; justify-content: center; }
.financing-logo img{
  width: clamp(150px, 22vw, 210px); max-width: 100%; height: auto; flex: none;
}

/* ===== Contact reassurance line (near the quote form) ===== */
.contact-reassure{
  display: flex; align-items: center; gap: .6rem;
  margin: .2rem 0 0; padding: .85rem 1rem;
  background: #fff4d6; border: 1px solid #f0d488; border-radius: 10px;
  color: var(--ink); font-weight: 700; font-size: 1rem;
}
.contact-reassure svg{ color: var(--accent-700); flex: none; }

/* ===== Sticky mobile action bar (phones only) =====
   Hidden on tablet/desktop; the <=720px block below switches it on.
   Scoped to min-width:721px so it can't override the show rule by source order. */
@media (min-width: 721px) {
  .mobile-action-bar{ display: none; }
}

/* contact method tags (Office / Cell) */
.contact-tag{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#0a6b3f;background:rgba(16,150,90,.12);padding:2px 7px;border-radius:999px;margin-left:6px;vertical-align:middle}

/* =========================================================
   MOTION — subtle scroll-reveal + header lift  (added 2026-06-25)
   Reveal is JS-gated (html.reveal-ready) AND wrapped in
   no-preference, so no-JS, headless, and reduced-motion users
   always get fully-visible content. Transform/opacity only,
   ease-out (no bounce), staggered per group.
   ========================================================= */
.site-header { transition: box-shadow .3s ease, background-color .3s ease; }
.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(14, 42, 71, .12);
  background: rgba(255, 255, 255, .97);
}
/* slightly snappier, exponential-ish ease-out on the existing button/card lifts */
.btn { transition: transform .18s cubic-bezier(.22,1,.36,1), background .2s ease, box-shadow .2s ease, color .2s ease; }
.card { transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .2s ease; }

@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .72s cubic-bezier(.22,1,.36,1),
                transform .72s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  html.reveal-ready .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- Window Tinting upsell (added 2026-06-25) ---------- */
.tint-upsell { background: var(--bg-soft); }
.tint-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.tint-copy .eyebrow { color: var(--accent-700); }
.tint-benefits { list-style: none; margin: 1.2rem 0 1.8rem; padding: 0; display: grid; gap: .65rem; }
.tint-benefits li { position: relative; padding-left: 1.85rem; color: var(--ink); }
.tint-benefits li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 11px; height: 11px;
  background: var(--accent); border-radius: 3px; transform: rotate(45deg);
}
.tint-media { position: relative; }
.tint-media img {
  width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.tint-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--navy); color: #fff; font-weight: 700; font-size: .85rem;
  padding: .45rem .85rem; border-radius: 999px; box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .tint-inner { grid-template-columns: 1fr; } .tint-media { order: -1; } }

/* ---------- Reviews auto-rotator (added 2026-06-25) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js-rotator .reviews-grid {
    display: grid;
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
  }
  html.js-rotator .reviews-grid .review-card {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(16px) scale(.98);
    transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
  }
  html.js-rotator .reviews-grid .review-card.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
/* dots */
.reviews-dots { display: none; }
html.js-rotator .reviews-dots {
  display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem;
}
html.js-rotator .reviews-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: background .3s ease, transform .3s ease;
}
html.js-rotator .reviews-dots button[aria-current="true"] { background: var(--accent); transform: scale(1.25); }

/* logo sizing on small screens (added 2026-06-25) */
@media (max-width: 720px) {
  .header-inner { min-height: 72px; }
  .logo-img { height: 56px; }
  .logo-text { font-size: 1.3rem; }
  .main-nav { inset: 72px 0 auto 0; }
}
