
    :root {
      --navy: #00284B;
      --green: #78B400;
      --green-dark: #5d8e00;
      --ink: #173047;
      --muted: #5f6f7e;
      --soft: #f3f6f8;
      --line: #dce4e9;
      --white: #ffffff;
      --shadow: 0 12px 35px rgba(0, 40, 75, 0.12);
      --radius: 14px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.55;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    .wrap { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }

    .topbar {
      background: var(--navy);
      color: var(--white);
      font-size: 0.94rem;
    }
    .topbar .wrap {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .topbar a { text-decoration: none; font-weight: 700; }
    .topbar a:hover { text-decoration: underline; }

    header {
      background: rgba(255,255,255,0.98);
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 30;
    }
    .nav {
      min-height: 118px;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 38px;
    }
    .brand {
      display: block;
      flex: 0 0 auto;
      padding: 4px 0;
    }
    .brand img { width: 245px; height: auto; }
    nav { display: flex; align-items: center; gap: 26px; }
    nav a {
      text-decoration: none;
      color: var(--navy);
      font-size: 0.93rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }
    nav a:hover { color: var(--green-dark); }
    .nav-pay {
      color: var(--navy) !important;
      background: var(--white);
      padding: 10px 16px;
      border: 2px solid var(--navy);
      border-radius: 8px;
    }
    .nav-pay:hover {
      color: var(--white) !important;
      background: var(--navy);
    }
    .nav-cta {
      color: var(--white) !important;
      background: var(--green);
      padding: 12px 18px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(120, 180, 0, 0.25);
    }
    .nav-cta:hover { background: var(--green-dark); }

    .hero {
      background:
        linear-gradient(90deg, rgba(0,40,75,0.97) 0%, rgba(0,40,75,0.92) 45%, rgba(0,40,75,0.40) 72%, rgba(0,40,75,0.14) 100%),
        url('assets/hero.jpg') center / cover no-repeat;
      color: var(--white);
      min-height: 560px;
      display: grid;
      align-items: center;
    }
    .hero-content { width: min(680px, 100%); padding: 82px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #d8ff8d;
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      background: var(--green);
      border-radius: 99px;
    }
    h1 {
      margin: 0 0 18px;
      font-size: clamp(2.5rem, 5vw, 4.7rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
    }
    .hero p {
      margin: 0;
      max-width: 630px;
      font-size: clamp(1.05rem, 1.8vw, 1.28rem);
      color: #e5edf3;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 23px;
      border-radius: 8px;
      font-weight: 800;
      text-decoration: none;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--green); color: var(--white); }
    .btn-primary:hover { background: var(--green-dark); }
    .btn-secondary { border: 2px solid rgba(255,255,255,.75); color: var(--white); }
    .btn-secondary:hover { background: rgba(255,255,255,.11); border-color: var(--white); }
    .hero-notes {
      display: flex;
      flex-wrap: wrap;
      gap: 13px 24px;
      margin-top: 28px;
      font-size: 0.93rem;
      font-weight: 700;
      color: #f3f8fb;
    }
    .hero-notes span::before { content: "✓"; color: #b8f34b; margin-right: 8px; }

    section { padding: 82px 0; }
    .section-head { max-width: 780px; margin-bottom: 38px; }
    .section-head.center { margin-inline: auto; text-align: center; }
    .section-head h2 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }
    .section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }

    .services { background: var(--soft); }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px 20px;
    }
    .service-item {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 10px;
      min-height: 68px;
      padding: 15px 18px;
      display: flex;
      align-items: center;
      gap: 13px;
      font-weight: 750;
      color: var(--navy);
      box-shadow: 0 4px 14px rgba(0,40,75,0.035);
    }
    .check {
      flex: 0 0 29px;
      width: 29px;
      height: 29px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(120,180,0,.13);
      color: var(--green-dark);
      font-size: 1rem;
      font-weight: 900;
    }
    .services-cta { text-align: center; margin-top: 31px; }
    .services-cta .btn-secondary-dark { border: 2px solid var(--navy); color: var(--navy); }
    .services-cta .btn-secondary-dark:hover { background: var(--navy); color: white; }

    .about-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 56px;
      align-items: center;
    }
    .photo-card { position: relative; }
    .photo-card img { border-radius: var(--radius); box-shadow: var(--shadow); }
    .photo-badge {
      position: absolute;
      right: -18px;
      bottom: -22px;
      background: var(--green);
      color: var(--white);
      border: 7px solid var(--white);
      border-radius: 13px;
      padding: 18px 20px;
      max-width: 245px;
      font-weight: 800;
      line-height: 1.25;
      box-shadow: var(--shadow);
    }
    .about-copy h2 {
      margin: 0 0 18px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3.05rem);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }
    .about-copy p { color: var(--muted); font-size: 1.06rem; }
    .trust-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 25px 0 0;
      padding: 0;
      list-style: none;
    }
    .trust-list li {
      border-left: 4px solid var(--green);
      background: var(--soft);
      padding: 12px 14px;
      font-weight: 750;
      color: var(--navy);
    }

    .location { background: var(--navy); color: var(--white); }
    .location-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 55px;
      align-items: center;
    }
    .location h2 {
      margin: 0 0 15px;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
      letter-spacing: -0.035em;
    }
    .location p { color: #d8e3eb; font-size: 1.06rem; }
    .contact-card {
      background: var(--white);
      color: var(--ink);
      padding: 31px;
      border-radius: var(--radius);
      box-shadow: 0 18px 45px rgba(0,0,0,.18);
    }
    .contact-card h3 { margin: 0 0 16px; color: var(--navy); font-size: 1.5rem; }
    .contact-row { margin: 12px 0; }
    .contact-row strong { display: block; color: var(--navy); }
    .contact-row a { color: var(--green-dark); font-weight: 800; text-decoration: none; }
    .contact-row a:hover { text-decoration: underline; }

    .area-line {
      border-top: 1px solid rgba(255,255,255,.18);
      margin-top: 31px;
      padding-top: 23px;
      color: #c8d5df;
      font-size: .94rem;
    }

    footer { background: #001b33; color: #d2dde6; padding: 27px 0; }
    .footer-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      font-size: 0.9rem;
    }
    footer a { color: #d2dde6; }

    @media (max-width: 900px) {
      header { position: static; }
      .nav { min-height: 108px; align-items: center; padding: 18px 0; }
      nav { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
      .hero { background-position: 61% center; }
      .about-grid, .location-grid { grid-template-columns: 1fr; }
      .about-copy { order: -1; }
      .photo-badge { right: 12px; }
    }

    @media (max-width: 680px) {
      .topbar .wrap { justify-content: center; text-align: center; padding: 7px 0; }
      .topbar .location-mini { display: none; }
      .nav { display: block; min-height: 0; padding: 22px 0 20px; }
      .brand { padding: 0; }
      .brand img { width: 215px; margin: 0 auto 22px; }
      nav { justify-content: center; gap: 12px 18px; }
      nav a { font-size: .84rem; }
      .nav-pay { padding: 8px 11px; }
      .nav-cta { padding: 10px 13px; }
      .hero {
        min-height: auto;
        background:
          linear-gradient(rgba(0,40,75,.91), rgba(0,40,75,.91)),
          url('assets/hero.jpg') center / cover no-repeat;
      }
      .hero-content { padding: 65px 0; }
      .hero-actions { display: grid; }
      .btn { width: 100%; }
      section { padding: 62px 0; }
      .service-grid, .trust-list { grid-template-columns: 1fr; }
      .service-item { min-height: 62px; }
      .photo-badge { position: static; border: 0; max-width: none; margin-top: 12px; }
      .footer-grid { display: block; text-align: center; }
      .footer-grid div + div { margin-top: 8px; }
    }
  

/* Interior page and form styles */
.page-title {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 58px 0 48px;
  text-align: center;
}
.page-title .eyebrow {
  color: var(--green-dark);
  justify-content: center;
}
.page-title h1 {
  margin: 13px auto 12px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.page-title p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}
.form-section-wrap {
  padding: 58px 0 72px;
  background: #fff;
}
.form-shell {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-heading {
  padding: 30px 34px 25px;
  background: var(--navy);
  color: #fff;
}
.form-heading h2 {
  margin: 0 0 6px;
  font-size: 1.72rem;
  line-height: 1.15;
}
.form-heading p {
  margin: 0;
  color: rgba(255,255,255,.82);
}
.site-form {
  padding: 32px 34px 38px;
}
.form-group {
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line);
}
.form-group:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}
.form-group h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.28rem;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.field {
  min-width: 0;
}
.field.full { grid-column: 1 / -1; }
.field label,
.field-label {
  display: block;
  margin: 0 0 7px;
  color: var(--navy);
  font-weight: 800;
  font-size: .94rem;
}
.required { color: #b52a2a; }
.site-form input[type="text"],
.site-form input[type="email"],
.site-form input[type="tel"],
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid #bfcbd4;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
}
.site-form textarea {
  min-height: 135px;
  resize: vertical;
}
.site-form textarea.terms-box {
  min-height: 145px;
  background: #f7f9fa;
  color: #465867;
  font-size: .88rem;
}
.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  outline: 3px solid rgba(120,180,0,.18);
  border-color: var(--green-dark);
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfd;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.checkbox-option:hover { border-color: #b5c69b; background: #f8fbf2; }
.checkbox-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
  flex: 0 0 auto;
}
.form-note {
  margin: -7px 0 15px;
  color: var(--muted);
  font-size: .92rem;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.site-form button.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.consent {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}
.consent a { color: var(--navy); font-weight: 700; }
.error-bubble {
  display: block;
  margin: 6px 0 0;
  color: #a61919;
  font-size: .86rem;
  font-weight: 700;
}
.form-alert {
  margin: 0 0 22px;
  padding: 13px 15px;
  border: 1px solid #e2b8b8;
  border-radius: 7px;
  background: #fff4f4;
  color: #861b1b;
  font-weight: 700;
}
.success-panel {
  padding: 34px;
}
.success-panel h2 { margin-top: 0; color: var(--navy); }
.success-panel h3 { color: var(--navy); margin-top: 28px; }
.success-panel .summary-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f9fa;
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 28px auto 0;
}
.contact-option {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,40,75,.07);
}
.contact-option strong {
  display: block;
  color: var(--navy);
  margin-bottom: 5px;
}
.contact-option a { color: var(--green-dark); font-weight: 800; }

@media (max-width: 760px) {
  .page-title { padding: 42px 0 36px; }
  .form-section-wrap { padding: 36px 0 50px; }
  .form-heading { padding: 24px 20px 20px; }
  .site-form, .success-panel { padding: 24px 20px 30px; }
  .field-grid, .checkbox-grid, .contact-options { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}


/* Regional, legal and payment pages */
.btn-secondary-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-secondary-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.area-page-title { padding-block: 64px 54px; }
.content-section { padding: 72px 0; background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 52px;
  align-items: start;
}
.content-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.content-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.06rem;
}
.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 27px;
}
.content-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 10px 28px rgba(0,40,75,.08);
}
.content-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.45rem;
}
.content-card p { margin: 0 0 16px; color: var(--muted); }
.text-link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.area-services { padding-top: 76px; }
.compact-location { padding-block: 70px; }

.legal-wrap { padding: 58px 0 74px; background: var(--white); }
.legal-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.legal-section + .legal-section {
  margin-top: 31px;
  padding-top: 29px;
  border-top: 1px solid var(--line);
}
.legal-section h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.2;
}
.legal-section p {
  margin: 0;
  color: #44596a;
  font-size: 1rem;
}
.legal-section p + p { margin-top: 13px; }
.legal-section a { color: var(--green-dark); font-weight: 700; }

.optional {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
}
.authorization-box {
  margin: 0 0 28px;
  padding: 22px 24px;
  border: 1px solid #ced9bf;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #f8fbf3;
}
.authorization-box h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
}
.authorization-box p {
  margin: 0;
  color: #465867;
  font-size: .92rem;
}
.authorization-box p + p { margin-top: 10px; }
.payment-disclaimer { max-width: 720px; }

@media (max-width: 760px) {
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-section { padding: 48px 0; }
  .content-actions { display: grid; }
  .legal-wrap { padding: 36px 0 50px; }
  .legal-shell { padding: 28px 22px; }
}

.service-item-featured {
  position: relative;
  border-color: rgba(120,180,0,.55);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf1 100%);
  box-shadow: 0 12px 24px rgba(120,180,0,.14), 0 4px 14px rgba(0,40,75,0.04);
}
.service-item-featured::after {
  content: "Tire Specialty";
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(120,180,0,.14);
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tire-highlight {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(240px, 315px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tire-highlight-media {
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
}
.tire-highlight-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0,40,75,.92);
  color: var(--white);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(0,40,75,.22);
}
.tire-highlight-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  max-height: 390px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0, 40, 75, 0.10);
}
.tire-highlight-copy {
  padding: 4px 4px 4px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tire-highlight-copy h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.45vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.tire-highlight-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 60ch;
}
.tire-highlight-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 11px;
}
.tire-highlight-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 700;
}
.tire-highlight-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 900;
}
.tire-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 24px;
}
.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover {
  color: var(--green-dark);
  text-decoration: underline;
}


.customer-reviews {
  margin-top: 28px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.reviews-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.reviews-intro-copy {
  max-width: 760px;
}
.reviews-star-row {
  margin: 8px 0 10px;
  color: #fbbc04;
  font-size: 1.2rem;
  letter-spacing: .14em;
  line-height: 1;
}
.reviews-intro h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.reviews-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 67ch;
}
.review-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.review-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid #dfe5eb;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,40,75,.045);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  background: #e9eef4;
  color: var(--navy);
  font-weight: 900;
  font-size: .95rem;
}
.reviewer-id {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.reviewer-id strong {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.15;
}
.reviewer-id span {
  color: var(--muted);
  font-size: .82rem;
}
.review-google-mark {
  color: #5f6368;
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
}
.review-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.review-card-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: .08em;
  line-height: 1;
}
.review-date {
  color: var(--muted);
  font-size: .82rem;
}
.review-card blockquote {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.72;
}
.reviews-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}
.reviews-footer-link {
  margin-top: 14px;
  text-align: center;
}
.reviews-footer-link a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.reviews-footer-link a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .reviews-intro {
    align-items: start;
    flex-direction: column;
  }
  .tire-highlight {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }
  .tire-highlight-media {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  .tire-highlight-copy {
    padding: 0 4px 4px;
  }
  .tire-highlight-copy h3,
  .tire-highlight-copy p {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .customer-reviews {
    padding: 24px 18px;
  }
  .review-card-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    min-height: 0;
    padding: 21px 19px;
  }
  .review-card-top {
    align-items: flex-start;
  }
  .review-google-mark {
    font-size: .78rem;
  }
  .tire-highlight {
    padding: 18px;
  }
  .tire-highlight-copy {
    padding: 0;
  }
  .tire-highlight-copy h3 {
    font-size: 1.55rem;
  }
  .tire-highlight-actions { display: grid; }
  .text-link { text-align: center; }
}


/* Service-area and local SEO content */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: .86rem;
  font-weight: 700;
  color: rgba(255,255,255,.76);
}
.breadcrumbs a { color: #fff; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.area-focus { padding: 68px 0; background: #fff; }
.area-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 50px;
  align-items: center;
}
.area-focus h2 {
  margin: 10px 0 16px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.3vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.area-focus p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.area-focus p + p { margin-top: 14px; }
.area-focus-list {
  margin: 0;
  padding: 24px 26px;
  list-style: none;
  display: grid;
  gap: 17px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.area-focus-list li {
  position: relative;
  padding-left: 26px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}
.area-focus-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
}
.area-tire-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(120,180,0,.38);
  border-left: 5px solid var(--green);
  border-radius: 12px;
}
.area-tire-note div { display: grid; gap: 4px; }
.area-tire-note strong { color: var(--navy); }
.area-tire-note span { color: var(--muted); font-size: .94rem; }
.area-tire-note a { color: var(--navy); font-weight: 850; text-decoration: none; white-space: nowrap; }
.area-tire-note a:hover { color: var(--green-dark); text-decoration: underline; }
.service-area-section { padding: 70px 0; background: #fff; }
.compact-service-areas { background: var(--soft); }
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.compact-service-areas .service-area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-area-card {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 22px;
  align-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(0,40,75,.045);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.service-area-card:hover {
  transform: translateY(-2px);
  border-color: rgba(120,180,0,.55);
  box-shadow: 0 12px 24px rgba(0,40,75,.08);
}
.service-area-card strong { font-size: 1.05rem; }
.service-area-card span { color: var(--muted); font-size: .88rem; line-height: 1.45; }
.tire-highlight-media picture { display: block; height: 100%; }

@media (max-width: 980px) {
  .area-focus-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-area-grid,
  .compact-service-areas .service-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .area-focus { padding: 48px 0; }
  .area-tire-note { align-items: flex-start; flex-direction: column; }
  .service-area-section { padding: 50px 0; }
  .service-area-grid,
  .compact-service-areas .service-area-grid { grid-template-columns: 1fr; }
  .service-area-card { min-height: 0; }
}
