/* ==========================================================================
   Driveline & Gear Service — site stylesheet
   Mobile-first, no frameworks, system fonts for fast Core Web Vitals.
   ========================================================================== */

:root {
  --ink: #1b1e23;          /* near-black text */
  --steel: #3d434b;        /* secondary text */
  --smoke: #6b7280;        /* muted text */
  --paper: #f6f5f2;        /* page background */
  --white: #ffffff;
  --charcoal: #15181c;     /* header / footer / hero */
  --charcoal-2: #1f242b;
  --line: #e3e1db;
  --orange: #00939a;       /* primary accent — brand teal from the logo */
  --orange-dark: #02737a;
  --amber: #f5d90a;        /* brand yellow from the logo */
  --yellow: #f7d308;
  --yellow-dark: #e0bd00;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(21, 24, 28, .08), 0 4px 16px rgba(21, 24, 28, .06);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

a { color: var(--orange-dark); }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 5.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Accessibility -------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* Header / navigation --------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  color: #fff;
  border-bottom: 3px solid var(--orange);
}

.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 1rem;
  padding: .65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}
.brand:hover { color: #fff; }

.brand-logo { height: 60px; width: auto; }

@media (max-width: 459px) {
  .brand-logo { height: 46px; }
  .nav-toggle-label { position: absolute; left: -9999px; } /* icon-only button, label kept for screen readers */
}

.nav-toggle {
  appearance: none;
  background: none;
  border: 2px solid #444b55;
  border-radius: 6px;
  color: #fff;
  padding: .45rem .6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
}
.nav-toggle:hover { border-color: var(--orange); }

.nav-toggle .bars { width: 20px; height: 14px; position: relative; }
.nav-toggle .bars span,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle .bars span { top: 6px; }
.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars::after { top: 12px; }

.nav-toggle[aria-expanded="true"] .bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav { display: none; flex-basis: 100%; }
.site-nav.open { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: .25rem 0 1rem;
}

.site-nav a {
  display: block;
  padding: .7rem .25rem;
  color: #e8eaed;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #262c34;
}
.site-nav a:hover { color: var(--amber); }
.site-nav a[aria-current="page"] { color: var(--amber); }

.nav-call {
  margin-top: .75rem;
  text-align: center;
}

/* The call button sits inside the nav, so out-specialize the nav link colors */
.site-nav a.btn-primary,
.site-nav a.btn-primary:hover { color: var(--charcoal); border-bottom: none; }

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: background .15s ease, color .15s ease;
}

.btn-primary { background: var(--yellow); color: var(--charcoal); }
.btn-primary:hover { background: var(--yellow-dark); color: var(--charcoal); }

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

.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--charcoal-2); color: #fff; }

.btn-block { display: block; width: 100%; }

/* Hero ------------------------------------------------------------------- */

.hero {
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(0, 147, 154, .38), transparent 60%),
    linear-gradient(160deg, var(--charcoal) 55%, #232a33);
  color: #fff;
  padding: 3.5rem 0 4rem;
}

.hero h1 { color: #fff; max-width: 22ch; }

.hero .kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .9rem;
}

.hero p.lede {
  font-size: 1.15rem;
  color: #cfd3d8;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  color: #b8bdc4;
  font-size: .92rem;
  font-weight: 600;
}
.hero-points li::before { content: "✓ "; color: var(--amber); font-weight: 800; }

/* Call-now band (phone-first homepage callout) -------------------------- */

.call-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .call-cards { grid-template-columns: 1fr 1fr; } }

.call-card {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.call-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21, 24, 28, .12); }

.call-card-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  color: var(--steel);
}
.call-card-num {
  font-size: clamp(1.9rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.call-card-addr { font-size: .9rem; color: var(--smoke); }
/* "Tap to call" only makes sense on a phone — show it on touch devices only.
   On desktop the big number stays visible to read/dial, without the misleading prompt. */
.call-card-cta { margin-top: .45rem; font-weight: 700; color: var(--orange-dark); display: none; }
@media (hover: none) and (pointer: coarse) {
  .call-card-cta { display: block; }
}

/* Page hero (interior pages) -------------------------------------------- */

.page-hero {
  background: linear-gradient(160deg, var(--charcoal) 60%, #232a33);
  color: #fff;
  padding: 2.5rem 0;
  border-bottom: 3px solid var(--orange);
}
.page-hero h1 { color: #fff; margin-bottom: .3rem; }
.page-hero p { color: #cfd3d8; max-width: 62ch; margin: 0; }

.breadcrumb {
  font-size: .85rem;
  margin: 0 0 1rem;
  color: #9aa0a8;
}
.breadcrumb a { color: #b8bdc4; text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }

/* Sections --------------------------------------------------------------- */

.section { padding: 3.25rem 0; }
.section-alt { background: var(--white); border-block: 1px solid var(--line); }

.section-head { max-width: 62ch; margin-bottom: 2rem; }
.section-head .kicker {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .4rem;
}
.section-head p { color: var(--steel); margin: 0; }

/* Service image tiles (homepage grid) ----------------------------------- */

.svc-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.svc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}
.svc-tile:hover img,
.svc-tile:focus-visible img { transform: scale(1.07); }

.svc-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8, 10, 12, .88) 0%, rgba(8, 10, 12, .45) 34%, rgba(8, 10, 12, 0) 62%);
}
.svc-tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1rem 1.15rem 1.05rem;
  color: #fff;
}
.svc-tile-label h3 { color: #fff; margin: 0; font-size: 1.2rem; }
.svc-tile-label .more {
  display: inline-block;
  margin-top: .2rem;
  color: var(--amber);
  font-weight: 700;
  font-size: .92rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.svc-tile:hover .more,
.svc-tile:focus-visible .more { opacity: 1; transform: none; }
@media (hover: none) { .svc-tile .more { opacity: 1; transform: none; } }

/* Photo hero (homepage) -------------------------------------------------- */

.hero.hero-photo {
  background:
    linear-gradient(90deg, rgba(9, 11, 14, .93) 0%, rgba(9, 11, 14, .76) 46%, rgba(9, 11, 14, .42) 100%),
    linear-gradient(0deg, rgba(9, 11, 14, .55), rgba(9, 11, 14, .15)),
    url("images/shop/hero-weld.jpg") center / cover no-repeat;
}

/* Hall of Shame gallery -------------------------------------------------- */

.shame-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .shame-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .shame-grid { grid-template-columns: repeat(3, 1fr); } }

.shame-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shame-card a { display: block; }
.shame-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.shame-card figcaption {
  padding: .8rem 1rem 1rem;
  font-size: .95rem;
  color: var(--steel);
}

/* Cards ------------------------------------------------------------------ */

.card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.section-alt .card { box-shadow: none; }

.card h3 { margin-bottom: .4rem; }
.card p { color: var(--steel); font-size: .98rem; margin-bottom: 1rem; }
.card .card-link {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
}
.card .card-link::after { content: " →"; }

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: .9rem;
  color: var(--orange);
  display: inline-block;
  font-size: 2rem;
  line-height: 44px;
}

/* Content pages ---------------------------------------------------------- */

.content-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; color: var(--steel); }
.prose li { margin-bottom: .35rem; }

.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.aside-card h3 { font-size: 1.05rem; }
.aside-card p { font-size: .95rem; color: var(--steel); }
.aside-card .phone-big {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  margin: .2rem 0 .6rem;
}
.aside-card + .aside-card { margin-top: 1.1rem; }

/* Callouts / banners ------------------------------------------------------ */

.warranty-band {
  background: var(--orange);
  color: #fff;
  padding: 2rem 0;
}
.warranty-band .container {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.warranty-band strong { font-size: 1.25rem; letter-spacing: .01em; }
.warranty-band p { margin: 0; color: #d8f2f3; }

.cta-band {
  background: linear-gradient(160deg, var(--charcoal) 60%, #232a33);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfd3d8; max-width: 52ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* Locations --------------------------------------------------------------- */

.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.location-card h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.location-card address {
  font-style: normal;
  color: var(--steel);
  margin-bottom: .9rem;
}
.location-card .loc-lines { list-style: none; margin: 0 0 1rem; padding: 0; color: var(--steel); }
.location-card .loc-lines li { padding: .15rem 0; }
.location-card .loc-lines a { font-weight: 700; }

.hours-note {
  display: inline-block;
  background: #e4f4f5;
  border: 1px solid #a8dcdf;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 999px;
  padding: .25rem .8rem;
  margin-bottom: .9rem;
}

/* Forms -------------------------------------------------------------------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  max-width: 640px;
}

.form-row { margin-bottom: 1.1rem; }

label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: .35rem;
}

.required::after { content: " *"; color: var(--orange); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: .7rem .8rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #c9c6bf;
  border-radius: 6px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  outline: 2px solid rgba(0, 147, 154, .3);
}

textarea { min-height: 140px; resize: vertical; }

.form-note { font-size: .88rem; color: var(--smoke); }

.hp-field { position: absolute; left: -9999px; }

/* Tables / definition lists ------------------------------------------------ */

.fact-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .4rem 1.2rem;
  margin: 0;
}
.fact-list dt { font-weight: 700; }
.fact-list dd { margin: 0; color: var(--steel); }

/* Testimonials ---------------------------------------------------------------- */

.quote-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

.quote-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
}
.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-size: 2.6rem;
  line-height: .6;
  color: var(--amber);
  margin-bottom: .25rem;
}

.quote-card figcaption { margin-top: auto; }
.t-name { display: block; font-weight: 800; color: var(--ink); }
.t-where { display: block; font-size: .9rem; color: var(--smoke); }

.community-note {
  margin-top: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.community-note h2 { margin-top: 0; }
.community-note p { color: var(--steel); }

@media (min-width: 700px) { .quote-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }

/* Scanned notes gallery ------------------------------------------------------- */

.notes-gallery {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.notes-gallery figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .7rem;
  box-shadow: var(--shadow);
}
.notes-gallery a { display: block; }
.notes-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  background: #fbfaf8;
}
.notes-gallery figcaption {
  font-size: .9rem;
  color: var(--steel);
  font-weight: 700;
  padding: .6rem .2rem .1rem;
  text-align: center;
}
.notes-note {
  font-size: .88rem;
  color: var(--smoke);
  margin-top: 1rem;
}
@media (min-width: 620px) { .notes-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .notes-gallery { grid-template-columns: repeat(3, 1fr); } }

/* Photos ---------------------------------------------------------------------- */

.photo-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}
.photo-strip img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.photo-strip figure { margin: 0; }
.photo-strip figcaption { font-size: .85rem; color: var(--smoke); margin-top: .4rem; }
@media (min-width: 640px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* Footer --------------------------------------------------------------------- */

.site-footer {
  background: var(--charcoal);
  color: #b8bdc4;
  padding: 3rem 0 2rem;
  margin-top: 0;
  font-size: .95rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: .22rem 0; }
.site-footer a { color: #b8bdc4; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid #262c34;
  padding-top: 1.25rem;
  font-size: .85rem;
  color: #8b919a;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}

/* Sticky mobile call bar ------------------------------------------------------ */

.call-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--charcoal);
}
.call-bar a {
  display: block;
  text-align: center;
  padding: .85rem .5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
}
.call-bar a:last-child { background: var(--charcoal-2); }
body { padding-bottom: 3.4rem; } /* room for call bar on mobile */

/* Desktop ---------------------------------------------------------------------- */

@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .content-grid { grid-template-columns: minmax(0, 1fr) 320px; }
  .warranty-band .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

@media (min-width: 960px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Nav switches from hamburger to inline at a wider point now that it
   carries seven items plus the call button */
@media (min-width: 1080px) {
  .nav-toggle { display: none; }

  .site-nav { display: block !important; flex-basis: auto; }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 0;
  }
  .site-nav a {
    border-bottom: none;
    padding: .55rem .8rem;
    border-radius: 6px;
    font-size: .95rem;
  }
  .site-nav a:hover { background: rgba(255, 255, 255, .08); }
  .site-nav a[aria-current="page"] { background: rgba(245, 217, 10, .16); }

  .nav-call { margin: 0 0 0 .5rem; }
  .nav-call .btn { padding: .55rem 1.1rem; font-size: .92rem; }

  .call-bar { display: none; }
  body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media print {
  .site-header, .site-footer, .call-bar, .cta-band { display: none; }
  body { background: #fff; padding-bottom: 0; }
}

/* FAQ accordion ---------------------------------------------------------------- */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: .9rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-weight: 800;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--orange-dark);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-body { padding: 1rem 1.25rem 1.2rem; color: var(--steel); }
.faq-body p { margin: 0 0 .8rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* Brand strip ------------------------------------------------------------------ */

.brand-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.brand-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .9rem 2.5rem;
}
.brand-strip-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--smoke);
}
.brand-strip-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--charcoal);
  opacity: .55;
  white-space: nowrap;
}

/* Map embeds ------------------------------------------------------------------- */

.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  margin-top: 1rem;
  background: var(--paper);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Article meta / hub ------------------------------------------------------------ */

.article-meta { font-size: .88rem; color: var(--smoke); margin-bottom: 1.4rem; }

/* Google reviews badge ----------------------------------------------------------- */

.greviews-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem 1.3rem;
  margin-bottom: 2.2rem;
  text-align: center;
}
.greviews-badge .g-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--charcoal);
}
.g-stars {
  color: #fbbc04;
  font-size: 1.25rem;
  letter-spacing: .1em;
}
.quote-card .g-stars { font-size: .95rem; letter-spacing: .06em; }
.greviews-badge .g-count { width: 100%; color: var(--steel); font-size: .95rem; }
@media (min-width: 640px) {
  .greviews-badge .g-count { width: auto; }
}
