:root {
  --blue: #1606a8;
  --blue-2: #0f0484;
  --red: #f31628;
  --ink: #0e0e12;
  --muted: #5e6170;
  --line: #d9dded;
  --soft: #f4f6ff;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(13, 10, 80, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
}

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

picture {
  display: contents;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #ffd23c;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: #060606;
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--blue);
  background: var(--white);
  border-bottom: 4px solid #060606;
  box-shadow: 0 12px 30px rgba(13, 10, 80, 0.1);
}

.brand img {
  width: min(220px, 46vw);
  filter: drop-shadow(0 2px 0 rgba(13, 10, 80, 0.12));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.82rem;
  font-weight: 900;
}

.site-nav a,
.text-link,
.button,
.footer-contact-main a,
.footer-links a,
.sticky-call {
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.button-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 32px rgba(243, 22, 40, 0.25);
}

.button-white {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
}

.button-outline {
  min-height: 40px;
  color: var(--blue);
  border-color: rgba(22, 6, 168, 0.34);
  background: transparent;
}

.hero .button-outline,
.city-hero .button-outline,
.landing-hero .button-outline,
.commercial-hero .button-outline,
.service-page-hero .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(22, 6, 168, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(var(--blue), var(--blue)) center 13px / 24px 3px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center 20px / 24px 3px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center 27px / 24px 3px no-repeat,
    var(--white);
  padding: 7px 0;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span:first-child {
  content: "";
  display: none;
  width: 24px;
  height: 3px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--blue);
}

.menu-toggle span:last-child {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 16px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 78px clamp(20px, 6vw, 86px) 86px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 8px;
  width: 32%;
  background: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: #060606;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 620px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero .eyebrow,
.quote-strip .eyebrow,
.care-band .eyebrow {
  color: #ffffff;
}

.hero .eyebrow {
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
  line-height: 1.15;
}

.hero h1 {
  margin-bottom: 18px;
  max-width: 690px;
  font-size: 7.2rem;
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 span {
  display: block;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 580px;
  align-items: end;
}

.hero .hero-stage::before {
  content: "";
  position: absolute;
  inset: 9% 0 4% 8%;
  border: 6px solid #060606;
  border-radius: 8px;
  background-color: #ffffff;
  background-image: url("assets/hero-windshield-closeup-home.jpg");
  background-position: 50% 52%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  transform: rotate(1.5deg);
}

.hero-van {
  position: relative;
  z-index: 3;
  width: min(600px, 82%);
  align-self: end;
  justify-self: start;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.16));
  transform: translateY(clamp(34px, 6vw, 72px));
}

.hero-mascot {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -4%;
  width: min(300px, 39%);
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.22));
  transform: translateY(clamp(24px, 4.2vw, 54px));
}

.hero-badge {
  position: absolute;
  z-index: 5;
  top: 12%;
  right: 8%;
  display: grid;
  gap: 3px;
  align-content: center;
  justify-items: center;
  width: 148px;
  height: 148px;
  padding: 16px;
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-badge strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-badge span {
  width: 100%;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-strip {
  scroll-margin-top: 84px;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(14px, 2.4vw, 26px);
  align-items: center;
  padding: clamp(18px, 2.8vw, 30px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--red);
}

.quote-strip > div:first-child {
  justify-self: center;
  text-align: center;
}

.quote-strip h2 {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: clamp(1.55rem, 2.85vw, 3.05rem);
  line-height: 1;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.field-year,
.field-make,
.field-model,
.field-glass,
.field-city,
.field-name,
.field-phone,
.field-plate,
.field-plate-state,
.field-zip,
.field-trim,
.quote-button {
  grid-column: span 1;
}

.field-vin {
  grid-column: span 1;
}

.field-photo,
.form-note,
.form-error {
  grid-column: 1 / -1;
}

.quote-form > label {
  min-width: 0;
}

.quote-form .quote-button {
  width: 100%;
}

.field-year,
.field-plate-state,
.field-trim {
  grid-column: span 1;
}

label {
  display: grid;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-helper {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: none;
}

.field-helper.is-success {
  color: #d7ffdc;
}

.field-helper.is-error {
  color: #fff0a6;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input[type="file"] {
  display: grid;
  align-content: center;
  cursor: pointer;
}

input:disabled,
select:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.quote-button:disabled {
  opacity: 0.82;
  cursor: default;
}

.form-note,
.form-error {
  margin: -2px 0 0;
  font-size: 0.74rem;
  line-height: 1.35;
}

.form-note {
  color: rgba(255, 255, 255, 0.84);
}

.form-error {
  min-height: 20px;
  color: #ffffff;
  font-weight: 900;
}

.form-result {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.form-result a {
  color: #ffffff;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(70px, 10vw, 126px) clamp(20px, 6vw, 86px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 4px solid #060606;
  background: var(--white);
}

.trust-strip article {
  display: grid;
  gap: 6px;
  min-height: 112px;
  align-content: center;
  border-right: 2px solid var(--line);
  padding: 20px clamp(16px, 3vw, 34px);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.reviews-panel,
.faq-section,
.final-cta,
.policy-page,
.landing-proof,
.landing-faq,
.landing-related {
  background: var(--white);
}

.reviews-grid,
.faq-grid,
.landing-card-grid,
.landing-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reviews-grid article,
.faq-grid article,
.landing-card-grid article,
.landing-related-grid a {
  border: 3px solid #060606;
  border-radius: 8px;
  padding: 22px;
  background: var(--soft);
}

.reviews-grid article:first-child {
  grid-column: span 2;
  color: var(--white);
  background: var(--blue);
}

.reviews-grid h3,
.faq-grid h3,
.landing-card-grid h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-grid p,
.faq-grid p,
.landing-card-grid p,
.landing-related-grid small {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.reviews-grid article:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: var(--white);
  background: var(--red);
}

.final-cta .eyebrow {
  color: #ffffff;
}

.final-cta h2,
.policy-page h1,
.landing-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.95;
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.final-cta .quote-form {
  align-self: start;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 640px;
  padding: 72px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--blue);
  border-bottom: 8px solid #060606;
}

.landing-hero .eyebrow,
.landing-quote .eyebrow {
  color: #ffffff;
}

.landing-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.7;
}

.landing-hero-media {
  position: relative;
  display: grid;
  min-height: 480px;
  align-items: end;
}

.landing-hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 0 4% 7%;
  border: 6px solid #060606;
  border-radius: 8px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.32)),
    image-set(
      url("assets/hero-windshield-closeup-home.avif") type("image/avif"),
      url("assets/hero-windshield-closeup-home.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.landing-hero-media img {
  position: relative;
  z-index: 2;
  width: min(600px, 84%);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.16));
}

.landing-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--soft);
}

.landing-copy h2,
.landing-quote h2,
.landing-faq h2,
.landing-related h2 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.landing-copy p,
.landing-copy li {
  color: var(--muted);
  line-height: 1.72;
}

.landing-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 18px 0 0;
}

.landing-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: var(--white);
  background: var(--red);
}

.landing-related-grid a {
  display: grid;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.landing-related-grid strong {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: inherit;
}

.policy-page {
  max-width: 980px;
  margin: 0 auto;
}

.policy-page h2 {
  margin-top: 36px;
  font-size: 2rem;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  line-height: 1.75;
}

.footer-business-info {
  display: grid;
  gap: 4px;
  box-sizing: border-box;
  width: min(100%, 660px);
  max-width: 660px;
  margin: 0 auto;
  padding: 0 20px 14px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.32;
  text-align: center;
}

.footer-business-info strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  width: 100%;
  margin-top: 2px;
  color: var(--blue);
  font-weight: 900;
}

.sticky-call {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.sticky-call:hover {
  transform: translateY(-1px);
}

.mobile-action-bar {
  position: fixed;
  z-index: 65;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 8px;
  padding: 8px;
  border: 3px solid #060606;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(13, 10, 80, 0.22);
}

.mobile-action-bar a {
  display: inline-flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px;
  color: var(--white);
  background: var(--red);
  font-size: clamp(0.72rem, 3vw, 0.86rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-action-bar a:last-child {
  background: var(--blue);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.split-panel h2,
.steps h2,
.care-band h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  line-height: 0.98;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 3px solid #060606;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(13, 10, 80, 0.08);
}

.service-card img,
.glass-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--white);
}

.service-media img {
  display: block;
  height: 100%;
  aspect-ratio: auto;
}

.service-card > div:last-child {
  padding: 24px;
}

.service-card h3,
.proof-grid strong,
.steps h3,
.area-lists h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 900;
}

.service-card p,
.proof-grid span,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card-blue {
  color: var(--white);
  background: var(--blue);
  border-color: #060606;
}

.service-card-blue p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 4px solid #060606;
  border-bottom: 4px solid #060606;
  background:
    linear-gradient(90deg, rgba(243, 22, 40, 0.06), transparent 42%),
    var(--white);
}

.trust-proof-copy {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.trust-proof-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 0.98;
}

.trust-proof-copy h2 span {
  display: block;
}

.trust-proof-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.trust-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-proof-grid article {
  min-height: 188px;
  border: 3px solid #060606;
  border-radius: 8px;
  padding: 22px;
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(13, 10, 80, 0.08);
}

.trust-proof-grid article:nth-child(2),
.trust-proof-grid article:nth-child(3) {
  background: var(--blue);
}

.trust-proof-grid article:nth-child(2) h3,
.trust-proof-grid article:nth-child(2) p,
.trust-proof-grid article:nth-child(3) h3,
.trust-proof-grid article:nth-child(3) p {
  color: var(--white);
}

.trust-proof-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.trust-proof-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 900;
}

.trust-proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-proof-photos {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-proof-photos figure {
  margin: 0;
  overflow: hidden;
  border: 3px solid #060606;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 10, 80, 0.08);
}

.trust-proof-photos img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trust-proof-photos figcaption {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.trust-proof-photos strong {
  font-weight: 900;
}

.trust-proof-photos span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.glass-icon {
  position: relative;
  background: linear-gradient(135deg, #edf8ff, #ffffff);
}

.glass-icon::before {
  content: "";
  position: absolute;
  inset: 24% 18%;
  border: 9px solid #99dbff;
  border-bottom-color: var(--blue);
  border-radius: 28px 28px 46px 46px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.9) 43% 50%, transparent 51%),
    #e9f8ff;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  color: var(--white);
  background: var(--blue);
}

.split-panel .eyebrow {
  color: #ffffff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  min-height: 136px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  background: var(--soft);
}

.process-art {
  position: relative;
  min-height: 470px;
}

.process-art::before {
  content: "";
  position: absolute;
  inset: 10% 5% 0 0;
  border-radius: 8px;
  background: var(--blue);
  transform: rotate(-3deg);
}

.process-art img {
  position: relative;
  z-index: 2;
  width: min(330px, 86%);
  margin: 0 auto;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.22));
}

.steps ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.steps li span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
  min-height: 640px;
  padding: 72px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--blue);
  border-bottom: 8px solid #060606;
}

.service-page-hero > * {
  min-width: 0;
}

.service-page-hero .eyebrow {
  color: #ffffff;
}

.service-page-hero h1 {
  margin-bottom: 18px;
  max-width: 740px;
  font-size: 5.8rem;
  line-height: 0.94;
}

.service-page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.7;
}

.service-page-hero-media {
  position: relative;
  border: 6px solid #060606;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.service-page-hero-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-directory {
  background: var(--white);
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-directory-grid a {
  display: grid;
  gap: 9px;
  min-height: 176px;
  border: 3px solid #060606;
  border-radius: 8px;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  background: var(--soft);
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.service-directory-grid a:hover,
.service-directory-grid a:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.service-directory-grid span,
.service-stack-grid span {
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.service-directory-grid strong {
  font-size: 1.16rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-directory-grid small {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.service-directory-grid a:hover small,
.service-directory-grid a:focus-visible small,
.service-directory-grid a:hover span,
.service-directory-grid a:focus-visible span {
  color: rgba(255, 255, 255, 0.78);
}

.repair-or-replace {
  background: var(--soft);
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.repair-or-replace .section-heading {
  margin-bottom: 22px;
}

.repair-or-replace .section-heading h2 {
  font-size: clamp(2.6rem, 4.8vw, 5.1rem);
  line-height: 0.96;
}

.repair-or-replace-compact {
  border-top: 4px solid #060606;
  border-bottom: 4px solid #060606;
  padding-top: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(30px, 4vw, 50px);
}

.repair-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.repair-guide-grid article {
  border: 3px solid #060606;
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 28px);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(13, 10, 80, 0.07);
}

.repair-guide-grid article:nth-child(2) {
  color: var(--white);
  background: var(--blue);
}

.repair-guide-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.repair-guide-grid article:nth-child(2) span {
  color: #ffffff;
}

.repair-guide-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.15vw, 2.15rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.repair-guide-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.repair-guide-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.42;
}

.repair-guide-grid article:nth-child(2) li {
  color: rgba(255, 255, 255, 0.82);
}

.repair-guide-grid li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.repair-guide-grid article:nth-child(2) li::before {
  background: #ffffff;
}

.repair-guide-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  border: 3px solid #060606;
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--red);
  color: var(--white);
}

.repair-guide-note strong {
  font-weight: 900;
  text-transform: uppercase;
}

.repair-guide-note span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.service-detail-band {
  scroll-margin-top: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 86px);
  background: var(--soft);
}

.service-detail-band-alt {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  background: var(--white);
}

.service-detail-copy h2,
.service-quote-panel h2 {
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.98;
}

.service-detail-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.75;
}

.service-detail-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-detail-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.service-detail-copy li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.service-detail-media {
  border: 5px solid #060606;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(13, 10, 80, 0.12);
}

.service-detail-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-stack {
  background: var(--white);
}

.service-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-stack-grid article {
  scroll-margin-top: 84px;
  min-height: 320px;
  border: 3px solid var(--blue);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
}

.service-stack-grid h3 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
}

.service-stack-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding: clamp(70px, 10vw, 112px) clamp(20px, 6vw, 86px);
  background: var(--soft);
}

.quote-help-list {
  display: grid;
  gap: 12px;
}

.quote-help-list p {
  min-height: 58px;
  margin: 0;
  border-left: 7px solid var(--red);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(13, 10, 80, 0.07);
}

.quote-help-list .button {
  justify-self: start;
  margin-top: 10px;
}

.commercial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 660px;
  padding: 76px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: #101116;
  border-bottom: 8px solid #060606;
}

.commercial-hero > * {
  min-width: 0;
}

.commercial-hero .eyebrow,
.commercial-intro .eyebrow,
.commercial-service-band .eyebrow,
.commercial-process .eyebrow,
.commercial-cta .eyebrow {
  color: #ffffff;
}

.commercial-hero h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: 5.8rem;
  line-height: 0.94;
}

.commercial-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.72;
}

.commercial-hero-panel {
  display: grid;
  gap: 18px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(22, 6, 168, 0.58), rgba(255, 255, 255, 0.08)),
    #191b25;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.commercial-panel-top {
  display: grid;
  gap: 8px;
}

.commercial-panel-top span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.commercial-panel-top strong {
  max-width: 420px;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.commercial-hero-panel img {
  width: min(560px, 100%);
  justify-self: center;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.28));
}

.commercial-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.commercial-metrics span {
  display: grid;
  min-height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.commercial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding: clamp(70px, 10vw, 116px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--blue);
}

.commercial-intro h2,
.commercial-service-band h2,
.commercial-process h2,
.commercial-cta h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 0.98;
}

.commercial-intro-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.commercial-intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.78;
}

.commercial-clients {
  background: var(--white);
}

.commercial-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.commercial-client-grid article {
  min-height: 330px;
  border: 3px solid #060606;
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(13, 10, 80, 0.08);
}

.commercial-client-grid span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.commercial-client-grid h3 {
  margin: 24px 0 14px;
  color: var(--blue);
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.commercial-client-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.commercial-service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background: #101116;
}

.commercial-service-list {
  display: grid;
  gap: 12px;
}

.commercial-service-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.commercial-service-list strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.commercial-service-list span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.commercial-process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--blue);
}

.commercial-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.commercial-process-list article {
  min-height: 178px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.commercial-process-list span {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.commercial-process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.commercial-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 88px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--red);
  border-top: 6px solid #060606;
  border-bottom: 6px solid #060606;
}

.commercial-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.commercial-cta .button-red {
  color: var(--white);
  background: #101116;
  box-shadow: none;
}

body[data-page-name="commercial"] .site-footer {
  padding-top: 0;
}

body[data-page-name="commercial"] .commercial-cta {
  border-bottom: 0;
}

.about-page {
  min-height: calc(100vh - 84px);
  padding: clamp(46px, 7vw, 78px) clamp(20px, 6vw, 86px) clamp(72px, 8vw, 104px);
  overflow-x: hidden;
  background: var(--white);
}

.about-page h1 {
  margin-bottom: clamp(32px, 5vw, 58px);
  color: #050505;
  font-size: clamp(5.4rem, 10vw, 9rem);
  line-height: 0.9;
  text-align: center;
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.about-copy {
  display: grid;
  justify-items: start;
  max-width: 780px;
}

.about-copy p {
  margin-bottom: 20px;
  color: #050505;
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.35;
}

.about-copy strong {
  font-weight: 900;
}

.about-contact-button {
  min-width: min(282px, 100%);
  margin-top: clamp(18px, 3vw, 32px);
  color: var(--blue);
  border-color: var(--blue);
}

.about-mascot-wrap {
  justify-self: center;
  width: min(440px, 100%);
}

.about-mascot-wrap img {
  width: min(440px, 78vw);
  max-width: none;
}

.areas {
  background: var(--white);
}

.area-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 62px);
}

.riverside-only .section-heading {
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.95fr);
}

.riverside-only .area-lists {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.riverside-only .area-lists ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-lists > div {
  border: 3px solid var(--blue);
  border-radius: 8px;
  padding: 28px;
}

.area-lists h3 {
  color: var(--blue);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.area-lists ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-lists li {
  display: block;
}

.area-lists a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(22, 6, 168, 0.28);
  border-radius: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--soft);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.area-lists a:hover,
.area-lists a:focus-visible,
.area-lists a[aria-current="page"] {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.area-lists a:hover,
.area-lists a:focus-visible {
  transform: translateY(-2px);
}

.city-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 620px;
  padding: 72px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--blue);
  border-bottom: 8px solid #060606;
}

.city-hero > *,
.city-summary > * {
  min-width: 0;
}

.city-hero .eyebrow {
  color: #ffffff;
}

.city-hero h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: 5.4rem;
  line-height: 0.94;
}

.city-hero p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
  line-height: 1.7;
}

.city-hero .hero-stage::before {
  content: "";
  position: absolute;
  inset: 9% 0 4% 8%;
  border: 6px solid #060606;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 6, 168, 0.08), rgba(243, 22, 40, 0.1)),
    #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.city-hero .city-landmark {
  display: block;
  margin: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
  overflow: visible;
}

.city-hero .city-landmark::before {
  display: none;
}

.city-landmark-image {
  position: absolute;
  z-index: 2;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 6px solid #060606;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.city-photo-credit {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 16px;
  border-radius: 999px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.52);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.city-photo-credit:hover,
.city-photo-credit:focus-visible {
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
}

.city-map-credit {
  top: 16px;
  right: 16px;
  bottom: auto;
}

.city-hero.home-image-hero .hero-stage::before {
  border-color: #060606;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.32)),
    image-set(
      url("assets/hero-windshield-closeup-home.avif") type("image/avif"),
      url("assets/hero-windshield-closeup-home.jpg") type("image/jpeg")
    );
  background-position: center, 50% 52%;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.city-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--white);
}

.city-summary h2 {
  margin-bottom: 0;
  font-size: 4.8rem;
  line-height: 0.98;
}

.city-summary p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.city-summary p:last-child {
  margin-bottom: 0;
}

.city-page-areas {
  background: var(--soft);
}

.city-page-areas .section-heading {
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr);
}

.city-page-areas .area-lists {
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
}

.city-page-areas .area-lists ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 360px);
  gap: clamp(22px, 6vw, 70px);
  align-items: center;
  padding: clamp(52px, 7vw, 82px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--blue);
  border-top: 6px solid #060606;
  border-bottom: 6px solid #060606;
}

.care-band img {
  width: min(320px, 100%);
  justify-self: center;
  border: 6px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-band .button {
  margin-top: 24px;
}

.site-footer {
  overflow: hidden;
  background: var(--white);
}

.footer-gift {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: center;
  height: 286px;
  min-height: 0;
  padding: 36px clamp(120px, 11.5vw, 152px) 0 clamp(50px, 4vw, 58px);
  color: var(--white);
  background: var(--blue);
  border-top: 6px solid #060606;
  border-bottom: 6px solid #060606;
}

.footer-gift::before,
.footer-gift::after {
  display: none;
}

.footer-gift > * {
  position: relative;
  z-index: 1;
}

.footer-gift picture {
  display: block;
  width: 190px;
  height: 190px;
  justify-self: center;
}

.footer-gift h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 3.85vw, 3.05rem);
  line-height: 1.07;
  text-wrap: balance;
}

.footer-gift-image {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  justify-self: center;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(310px, 520px) minmax(220px, 1fr);
  column-gap: clamp(18px, 3.5vw, 44px);
  align-items: center;
  min-height: 118px;
  padding: 8px clamp(32px, 5vw, 72px) 6px;
  background: var(--white);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-self: start;
  align-self: center;
  line-height: 0;
}

.footer-logo picture {
  display: block;
  line-height: 0;
}

.footer-logo img {
  display: block;
  width: min(250px, 100%);
}

.footer-contact-main {
  display: grid;
  align-self: center;
  width: min(100%, 440px);
  justify-items: center;
  justify-self: center;
  gap: 5px;
  font-size: 1.08rem;
  line-height: 1.25;
  color: #000000;
}

.footer-contact-main a {
  text-decoration: none;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #000000;
}

.social-mark {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #000000;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.social-instagram span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 3px solid #000000;
  border-radius: 7px;
}

.social-instagram span::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 3px solid #000000;
  border-radius: 50%;
}

.social-instagram span::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000000;
}

.social-facebook {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
}

.footer-payment {
  justify-self: end;
  align-self: center;
  width: min(188px, 100%);
  box-sizing: border-box;
  margin: 0;
  padding: 13px 13px 11px;
  border: 1px solid #b8b8b8;
  border-radius: 15px;
  background: var(--white);
}

.square-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3d3d3f;
  font-size: 1.48rem;
  font-weight: 500;
}

.square-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #2a2a2d;
}

.square-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 4px solid var(--white);
  border-radius: 3px;
}

.payment-rule {
  height: 2px;
  margin: 10px 4px 12px;
  background: #b8b8b8;
}

.card-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.card-logos span {
  display: grid;
  min-height: 18px;
  place-items: center;
  border-radius: 3px;
  padding: 2px;
  color: var(--white);
  font-size: 0.3rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.card-logos span:nth-child(1) {
  color: #144a9f;
  background: #ffffff;
  border: 1px solid #d9e0ef;
}

.card-logos span:nth-child(2) {
  background: linear-gradient(90deg, #e72626 0 50%, #f6a01a 50% 100%);
}

.card-logos span:nth-child(3) {
  background: #2368b7;
}

.card-logos span:nth-child(4) {
  color: #3a3a3a;
  background: linear-gradient(90deg, #ffffff 0 56%, #f49a1a 56% 100%);
  border: 1px solid #d9e0ef;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    position: absolute;
    z-index: 70;
    top: 20px;
    right: 18px;
    left: auto;
  }

  body.menu-open .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 22px;
    background: var(--white);
    border-bottom: 4px solid #060606;
    box-shadow: 0 18px 30px rgba(13, 10, 80, 0.1);
  }

  body.menu-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(22, 6, 168, 0.12);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding-top: 58px;
    background: var(--blue);
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 6rem;
  }

  .hero-stage {
    min-height: 520px;
  }

  .quote-strip,
  .section-heading,
  .service-page-hero,
  .service-detail-band,
  .service-detail-band-alt,
  .service-quote-panel,
  .trust-strip,
  .final-cta,
  .landing-hero,
  .landing-copy,
  .landing-quote,
  .commercial-hero,
  .commercial-intro,
  .commercial-service-band,
  .commercial-process,
  .commercial-cta,
  .about-page-grid,
  .city-hero,
  .city-summary,
  .trust-proof,
  .split-panel,
  .process,
  .care-band {
    grid-template-columns: 1fr;
  }

  .trust-proof-copy {
    position: static;
  }

  .trust-proof-photos {
    grid-column: 1;
  }

  .city-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .city-hero .city-landmark {
    width: min(100%, 640px);
    min-height: 0;
    justify-self: center;
  }

  .city-hero h1 {
    font-size: 4.6rem;
  }

  .city-summary h2 {
    font-size: 4.2rem;
  }

  .service-page-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .service-page-hero h1 {
    font-size: 4.6rem;
  }

  .service-directory-grid,
  .commercial-client-grid,
  .service-stack-grid,
  .reviews-grid,
  .faq-grid,
  .landing-card-grid,
  .landing-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .reviews-grid article:first-child {
    grid-column: 1 / -1;
  }

  .commercial-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .commercial-hero h1 {
    font-size: 4.6rem;
  }

  .commercial-cta-actions {
    justify-content: flex-start;
  }

  .about-page {
    min-height: 0;
  }

  .about-page h1 {
    font-size: clamp(4.7rem, 16vw, 7rem);
  }

  .about-copy {
    justify-items: center;
    max-width: 720px;
    margin-inline: auto;
    text-align: left;
  }

  .about-mascot-wrap {
    width: min(340px, 78vw);
    max-height: none;
  }

  .about-mascot-wrap img {
    width: min(340px, 78vw);
  }

  .landing-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .landing-hero h1 {
    font-size: 4.6rem;
  }

  .service-detail-copy h2,
  .service-quote-panel h2 {
    font-size: 4.2rem;
  }

  .quote-form,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-gift {
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 30px;
    text-align: center;
  }

  .footer-gift h2 {
    max-width: 640px;
    margin-inline: auto;
    font-size: 2.45rem;
  }

  .footer-gift-image {
    width: 210px;
    height: 210px;
    transform: none;
  }

  .footer-gift picture {
    width: 210px;
    height: 210px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .footer-logo {
    justify-self: center;
  }

  .footer-logo img {
    width: min(250px, 74vw);
  }

  .footer-payment {
    justify-self: center;
  }

  .footer-business-info {
    margin-top: 6px;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 78px;
    padding-inline: 18px;
    width: 100%;
    max-width: 100%;
  }

  .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    border-color: rgba(22, 6, 168, 0.48);
    box-shadow: 0 8px 18px rgba(13, 10, 80, 0.12);
  }

  .brand img {
    width: min(190px, calc(100vw - 104px));
  }

  body.menu-open .site-nav {
    top: 78px;
  }

  .quote-strip {
    scroll-margin-top: 78px;
    gap: 14px;
    padding: 24px 18px 28px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    gap: 18px;
    overflow-x: hidden;
    padding: 38px 18px;
  }

  .hero-copy {
    width: 100%;
    max-width: 22rem;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero .eyebrow {
    font-size: 1.16rem;
  }

  .hero-copy p:not(.eyebrow),
  .hero-actions,
  .hero-points {
    width: 100%;
    max-width: 22rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    max-width: 22rem;
  }

  .hero-copy p:not(.eyebrow),
  .hero-actions .button,
  .hero-points span {
    width: 100%;
    max-width: 22rem;
  }

  .hero-copy p:not(.eyebrow),
  .hero-actions,
  .hero-actions .button,
  .hero-points,
  .hero-points span {
    width: min(22rem, 100%);
    max-width: 22rem;
  }

  .hero-stage {
    width: min(100%, 520px);
    min-height: 410px;
    justify-self: center;
  }

  .hero .hero-stage::before {
    inset: 0 0 2% 0;
    background-image: url("assets/hero-windshield-closeup-home.jpg");
    background-position: 50% 48%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-van {
    width: 78%;
    align-self: end;
    transform: translateY(clamp(42px, 12vw, 68px));
  }

  .hero-mascot {
    width: 41%;
    right: 0;
    bottom: 1%;
    transform: none;
  }

  .hero-badge {
    top: 8%;
    right: auto;
    left: 6%;
    width: 118px;
    height: 118px;
    padding: 13px;
  }

  .hero-badge strong {
    font-size: 1.5rem;
  }

  .quote-form,
  .service-grid,
  .service-directory-grid,
  .repair-guide-grid,
  .commercial-client-grid,
  .commercial-process-list,
  .commercial-metrics,
  .service-stack-grid,
  .proof-grid,
  .trust-proof-grid,
  .trust-proof-photos,
  .trust-strip,
  .reviews-grid,
  .faq-grid,
  .landing-card-grid,
  .landing-related-grid,
  .area-lists,
  .riverside-only .area-lists,
  .riverside-only .area-lists ul,
  .city-page-areas .area-lists,
  .city-page-areas .area-lists ul,
  .area-lists ul {
    grid-template-columns: 1fr;
  }

  .quote-form > * {
    grid-column: 1 / -1;
  }

  .quote-strip .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-strip .field-year,
  .quote-strip .field-make,
  .quote-strip .field-model,
  .quote-strip .field-trim,
  .quote-strip .field-name,
  .quote-strip .field-phone,
  .quote-strip .field-vin,
  .quote-strip .field-plate,
  .quote-strip .field-plate-state,
  .quote-strip .field-zip,
  .quote-strip .field-glass,
  .quote-strip .field-city,
  .quote-strip .quote-button {
    grid-column: span 1;
  }

  .quote-strip .field-photo,
  .quote-strip .form-note,
  .quote-strip .form-error {
    grid-column: 1 / -1;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading,
  .city-page-areas .section-heading {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .section-heading .eyebrow,
  .split-panel .eyebrow,
  .service-detail-band .eyebrow,
  .service-detail-band-alt .eyebrow,
  .service-quote-panel .eyebrow,
  .commercial-intro .eyebrow,
  .commercial-service-band .eyebrow,
  .commercial-process .eyebrow,
  .commercial-cta .eyebrow,
  .landing-copy .eyebrow,
  .landing-quote .eyebrow,
  .city-summary .eyebrow {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    line-height: 1.05;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    text-align: left;
  }

  .section-heading h2 {
    width: 100%;
    margin-top: 0;
    clear: both;
  }

  .trust-strip article {
    min-height: 96px;
    padding: 18px;
  }

  .trust-proof {
    text-align: center;
  }

  .trust-proof-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .trust-proof-copy,
  .trust-proof-copy p:not(.eyebrow) {
    max-width: none;
    justify-items: center;
  }

  .trust-proof-actions {
    width: 100%;
    justify-content: center;
  }

  .trust-proof-actions .button {
    width: min(100%, 310px);
  }

  .trust-proof-grid article {
    min-height: auto;
  }

  .reviews-grid article:first-child {
    grid-column: auto;
  }

  .section-heading h2,
  .split-panel h2,
  .steps h2,
  .care-band h2 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .quote-strip h2 {
    max-width: 18rem;
    font-size: clamp(1.65rem, 7.4vw, 2.15rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .quote-strip label {
    gap: 4px;
  }

  .quote-strip input,
  .quote-strip select {
    min-height: 44px;
    padding: 9px 11px;
  }

  .city-hero h1 {
    font-size: 3.7rem;
  }

  .city-summary h2 {
    font-size: 3.6rem;
  }

  .service-page-hero {
    padding: 38px 18px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .service-page-hero-copy {
    width: 100%;
    max-width: 22rem;
  }

  .service-page-hero h1 {
    max-width: 100%;
    font-size: 3.15rem;
  }

  .service-page-hero p:not(.eyebrow) {
    max-width: 22rem;
    font-size: 1rem;
  }

  .service-page-hero-media {
    width: 100%;
    transform: none;
  }

  .service-page-hero-media img,
  .service-detail-media img {
    min-height: 270px;
  }

  .service-directory-grid a {
    min-height: 150px;
  }

  .service-detail-band,
  .service-detail-band-alt,
  .service-quote-panel,
  .repair-or-replace {
    scroll-margin-top: 78px;
    padding: 68px 18px;
  }

  .repair-guide-note {
    grid-template-columns: 1fr;
  }

  .repair-guide-note .button {
    justify-self: stretch;
  }

  .service-detail-copy h2,
  .service-quote-panel h2 {
    font-size: 3.35rem;
  }

  .service-stack-grid article {
    min-height: 0;
  }

  .quote-help-list .button {
    justify-self: stretch;
  }

  .commercial-hero {
    padding: 38px 18px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .commercial-hero-copy {
    width: 100%;
    max-width: 22rem;
  }

  .commercial-hero h1 {
    max-width: 100%;
    font-size: 3.05rem;
  }

  .commercial-hero p:not(.eyebrow) {
    max-width: 22rem;
    font-size: 1rem;
  }

  .commercial-hero-panel {
    padding: 18px;
  }

  .commercial-intro,
  .commercial-service-band,
  .commercial-process,
  .commercial-cta {
    padding: 68px 18px;
  }

  .commercial-intro h2,
  .commercial-service-band h2,
  .commercial-process h2,
  .commercial-cta h2 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .commercial-client-grid article,
  .commercial-process-list article {
    min-height: 0;
  }

  .commercial-service-list article {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding: 38px 18px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-hero h1 {
    max-width: 100%;
    font-size: 3.05rem;
  }

  .landing-hero p:not(.eyebrow) {
    max-width: 22rem;
    font-size: 1rem;
  }

  .landing-hero-media {
    min-height: 390px;
  }

  .landing-copy,
  .landing-proof,
  .landing-faq,
  .landing-related,
  .landing-quote,
  .final-cta,
  .about-page,
  .policy-page {
    padding: 68px 18px;
  }

  .landing-copy h2,
  .landing-quote h2,
  .landing-faq h2,
  .landing-related h2,
  .final-cta h2,
  .policy-page h1 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .commercial-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-page h1 {
    margin-bottom: 30px;
    width: 100%;
    font-size: clamp(3.6rem, 14vw, 4.5rem);
    line-height: 0.92;
    white-space: nowrap;
  }

  .about-page-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    justify-items: start;
  }

  .about-copy {
    width: 100%;
    max-width: 22rem;
    justify-items: center;
    justify-self: start;
    margin-inline: 0;
    text-align: left;
  }

  .about-copy p {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .about-contact-button {
    width: min(282px, 100%);
  }

  .about-mascot-wrap {
    order: -1;
    width: min(260px, 72vw);
    justify-self: center;
  }

  .about-mascot-wrap img {
    width: min(260px, 72vw);
  }

  .footer-gift {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    height: auto;
    min-height: 0;
    padding: 44px 18px 24px;
    text-align: center;
  }

  .footer-gift h2 {
    width: min(100%, 18rem);
    max-width: 18rem;
    font-size: 1.34rem;
    line-height: 1.05;
    text-wrap: wrap;
  }

  .footer-gift-image {
    width: min(220px, 64vw);
    height: min(220px, 64vw);
    transform: none;
  }

  .footer-gift picture {
    width: min(220px, 64vw);
    height: min(220px, 64vw);
  }

  .footer-contact-grid {
    gap: 12px;
    padding: 18px 18px 24px;
  }

  .footer-contact-main {
    gap: 8px;
    max-width: 100%;
    font-size: 0.98rem;
  }

  .footer-payment {
    width: min(205px, 100%);
    padding: 14px 14px 12px;
  }

  .square-brand {
    font-size: 1.45rem;
  }

  .square-icon {
    width: 32px;
    height: 32px;
  }

  .square-icon::before {
    inset: 8px;
    border-width: 4px;
  }

  .payment-rule {
    margin: 10px 4px 12px;
  }

  .card-logos span {
    min-height: 18px;
    font-size: 0.31rem;
  }

  .footer-business-info {
    gap: 4px;
    margin-top: 0;
    padding: 0 18px calc(96px + env(safe-area-inset-bottom));
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 6px 14px;
    justify-content: center;
    margin-top: 2px;
  }

  .footer-links a:last-child {
    grid-column: 1 / -1;
  }

  .city-hero {
    padding: 38px 18px;
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    overflow-x: hidden;
  }

  .city-hero .hero-copy {
    width: min(100%, 22rem);
    max-width: calc(100vw - 36px);
    margin-right: auto;
    margin-left: auto;
    justify-self: center;
    text-align: center;
  }

  .city-hero .hero-copy > * {
    margin-right: auto;
    margin-left: auto;
  }

  .city-hero h1 {
    font-size: 2.95rem;
    max-width: 100%;
  }

  .city-hero p:not(.eyebrow) {
    max-width: 22rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
  }

  .city-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 22rem);
    max-width: calc(100vw - 36px);
    justify-content: center;
  }

  .city-hero .hero-actions .button {
    width: 100%;
    max-width: none;
  }

  .city-hero .hero-stage {
    width: min(22rem, calc(100vw - 36px));
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
    aspect-ratio: 4 / 3;
    justify-self: center;
    overflow: hidden;
  }

  .city-hero .city-landmark {
    width: min(22rem, calc(100vw - 36px));
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    aspect-ratio: 4 / 3;
    justify-self: center;
    overflow: hidden;
  }

  .city-hero .city-landmark-image {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .city-photo-credit {
    right: 12px;
    bottom: 12px;
    font-size: 0.56rem;
  }

  .city-map-credit {
    top: 12px;
    right: 12px;
    bottom: auto;
  }

  .process-art {
    min-height: 390px;
  }

  .steps li {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 14px;
  }

  body.scrolled .sticky-call {
    left: 18px;
    display: flex;
  }

  body.quote-active .sticky-call {
    display: none;
  }

}

.admin-body {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue), #080329);
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
}

.admin-login,
.admin-dashboard {
  border: 4px solid #050505;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.admin-login {
  max-width: 520px;
  margin: 8vh auto 0;
  padding: clamp(24px, 5vw, 44px);
}

.admin-login img {
  width: 230px;
  margin-bottom: 26px;
}

.admin-login h1,
.admin-dashboard h1 {
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.94;
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.admin-login-form input {
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.admin-setup-note {
  margin-top: 22px;
  border: 2px solid rgba(243, 22, 40, 0.25);
  border-radius: 8px;
  padding: 14px;
  background: #fff4f4;
}

.admin-dashboard {
  padding: clamp(18px, 4vw, 36px);
}

.admin-topbar,
.admin-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.admin-summary-grid article,
.admin-panel {
  border: 3px solid #080808;
  border-radius: 8px;
  background: var(--soft);
}

.admin-summary-grid article {
  padding: 18px;
}

.admin-summary-grid span,
.admin-panel h2 {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.admin-summary-grid strong {
  display: block;
  margin-top: 8px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
}

.admin-panel {
  padding: 18px;
  overflow: hidden;
}

.admin-panel-wide {
  grid-column: 1 / -1;
}

.admin-panel h2 {
  margin-bottom: 16px;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.admin-list-row span {
  overflow-wrap: anywhere;
}

.admin-list-row strong {
  color: var(--red);
}

.admin-list-row-stacked {
  align-items: flex-start;
  justify-content: flex-start;
}

.admin-list-row-stacked span,
.admin-list-row-stacked small {
  display: block;
}

.admin-list-row-stacked small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.admin-ip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.admin-ip-card {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.admin-ip-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-ip-card-head span,
.admin-ip-details dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-ip-card-head strong {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  overflow-wrap: anywhere;
}

.admin-ip-card-head small {
  color: var(--red);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.admin-ip-details {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.admin-ip-details div {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.admin-ip-details dd {
  margin: 3px 0 0;
  color: var(--ink);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.admin-status {
  margin: 18px 0 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .admin-shell {
    width: min(100% - 20px, 520px);
    padding: 20px 0;
  }

  .admin-login,
  .admin-dashboard {
    border-width: 3px;
  }

  .admin-topbar,
  .admin-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-summary-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-table {
    min-width: 760px;
  }
}

@media (max-width: 520px) {
  .quote-strip .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-strip .quote-form > * {
    grid-column: span 1;
  }

  .quote-strip .field-vin,
  .quote-strip .field-glass,
  .quote-strip .field-photo,
  .quote-strip .form-note,
  .quote-strip .form-error,
  .quote-strip .form-result,
  .quote-strip .quote-button {
    grid-column: 1 / -1;
  }
}

.quote-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  max-width: 860px;
}

.quote-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-progress li {
  display: grid;
  gap: 4px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-progress span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.14);
}

.quote-progress .is-active span,
.quote-progress .is-complete span {
  border-color: var(--white);
  color: var(--red);
  background: var(--white);
}

.quote-progress small {
  font: inherit;
}

.quote-step {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.quote-step[hidden] {
  display: none !important;
}

.quote-step legend {
  margin: 0 0 2px;
  padding: 4px 0 0;
  color: var(--white);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.quote-step-copy {
  margin: 4px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
}

.quote-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-step-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-step-grid-two .field-city::before {
  content: "ZIP code";
  visibility: hidden;
}

.quote-glass-card-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 10px;
  justify-self: center;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.quote-choice-card,
.damage-choice-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 96px;
  padding: 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.24);
  overflow: hidden;
  height: 100%;
}

.quote-choice-card,
.damage-choice-card {
  align-content: start;
  min-height: 178px;
  text-align: center;
}

.quote-choice-photo,
.damage-choice-card img,
.damage-choice-photo {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #edf7ff;
}

.quote-choice-card input,
.damage-choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-choice-card span,
.damage-choice-card span {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.quote-choice-card small,
.damage-choice-card small {
  display: block;
  min-height: 3.6em;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.quote-choice-card:has(input:checked),
.damage-choice-card:has(input:checked) {
  border-color: var(--white);
  color: var(--white);
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--ink);
}

.quote-choice-card:has(input:checked) small,
.damage-choice-card:has(input:checked) small {
  color: rgba(255, 255, 255, 0.84);
}

.damage-choice-card-text {
  min-height: 156px;
  text-align: center;
}

.quote-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.quote-step-actions .button {
  min-width: 150px;
}

.quote-flow .field-vin {
  grid-column: 1 / -1;
}

.quote-flow .field-photo,
.quote-flow .form-error {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .quote-strip {
    grid-template-columns: 1fr;
  }

  .quote-strip > div:first-child {
    max-width: 720px;
  }

  .quote-flow {
    max-width: none;
  }

  .quote-glass-card-section {
    max-width: 720px;
  }
}

@media (max-width: 560px) {
  .quote-strip .quote-flow,
  .quote-flow {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .quote-progress {
    gap: 4px;
    width: 100%;
  }

  .quote-progress span {
    width: 28px;
    height: 28px;
  }

  .quote-progress small {
    font-size: 0.58rem;
  }

  .quote-step-grid,
  .quote-step-grid-two {
    grid-template-columns: 1fr;
  }

  .quote-glass-card-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-step-actions {
    justify-content: stretch;
    width: 100%;
  }

  .quote-step-actions .button {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
  }

  .quote-choice-card,
  .damage-choice-card {
    gap: 5px;
    min-height: 132px;
    padding: 7px;
  }

  .quote-choice-card small,
  .damage-choice-card small {
    font-size: 0.64rem;
    line-height: 1.16;
  }

  .damage-choice-card-text {
    min-height: 96px;
  }

  .quote-step-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quote-step-actions .button {
    width: 100%;
    min-width: 0;
  }

  .quote-step-actions .quote-button {
    grid-column: auto;
  }

  .quote-step-actions .button:only-child {
    grid-column: 1 / -1;
  }

  body[data-service-intent="mobile_auto_glass"] .landing-hero,
  body[data-service-intent="mobile_auto_glass"] .landing-copy,
  body[data-service-intent="mobile_auto_glass"] .landing-proof,
  body[data-service-intent="mobile_auto_glass"] .landing-faq,
  body[data-service-intent="mobile_auto_glass"] .landing-related,
  body[data-service-intent="mobile_auto_glass"] .quote-strip {
    justify-items: center;
    text-align: center;
  }

  body[data-service-intent="mobile_auto_glass"] .landing-hero > *,
  body[data-service-intent="mobile_auto_glass"] .landing-copy > *,
  body[data-service-intent="mobile_auto_glass"] .landing-proof > *,
  body[data-service-intent="mobile_auto_glass"] .landing-faq > *,
  body[data-service-intent="mobile_auto_glass"] .landing-related > *,
  body[data-service-intent="mobile_auto_glass"] .quote-strip > * {
    justify-self: center;
    width: min(100%, 354px);
  }

  body[data-service-intent="mobile_auto_glass"] .landing-hero p:not(.eyebrow),
  body[data-service-intent="mobile_auto_glass"] .landing-copy p,
  body[data-service-intent="mobile_auto_glass"] .landing-copy ul {
    margin-right: auto;
    margin-left: auto;
  }

  body[data-service-intent="mobile_auto_glass"] .landing-copy ul {
    width: fit-content;
    max-width: 100%;
    padding-left: 18px;
    text-align: left;
  }

  body[data-service-intent="mobile_auto_glass"] .hero-actions,
  body[data-service-intent="mobile_auto_glass"] .section-heading {
    justify-content: center;
    align-items: center;
  }

  body[data-service-intent="mobile_auto_glass"] .quote-step,
  body[data-service-intent="mobile_auto_glass"] .quote-step label {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
