/* ============================================================
   Local SEO Site — base stylesheet
   Single file, no framework. Brand color is set via --brand.
   Kept intentionally lightweight for fast load (Core Web Vitals).
   ============================================================ */

:root {
  --brand: #1f8a4c;              /* overridden per-site by build.py */
  --brand-dark: #14623697;       /* overridden per-site by build.py */
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e4e4e4;
  --bg-soft: #f6f8f7;
  --max: 1160px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  background: #fff;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; letter-spacing: -.5px; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800; margin-top: 2.2em; }
h3 { font-size: 1.25rem; font-weight: 700; }

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

/* ---------- Top call bar ---------- */
.callbar {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 8px 12px;
  font-size: .98rem;
}
.callbar a { color: #fff; text-decoration: underline; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand .name { font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.brand .phone { font-weight: 800; font-size: 1.05rem; color: var(--brand-dark); }
.brand-logo { height: 42px; width: auto; display: block; margin-bottom: 4px; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a {
  display: block; padding: 10px 14px; color: var(--ink); font-weight: 600;
  border-radius: 8px; text-decoration: none;
}
.menu > li > a:hover, .menu > li.active > a { background: var(--bg-soft); color: var(--brand-dark); }

.dropdown { position: relative; }
.dropdown > .submenu {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); padding: 8px; margin: 6px 0 0;
  list-style: none; display: none;
  max-height: min(70vh, 480px); overflow-y: auto;
}
.dropdown:hover > .submenu, .dropdown:focus-within > .submenu { display: block; }
.submenu li a {
  display: block; padding: 9px 12px; border-radius: 7px; color: var(--ink); font-weight: 500;
}
.submenu li a:hover { background: var(--bg-soft); color: var(--brand-dark); text-decoration: none; }

.nav-cta {
  background: var(--brand); color: #fff !important; padding: 11px 18px;
  border-radius: 999px; font-weight: 800; white-space: nowrap;
}
.menu > li > a.nav-cta:hover { background: var(--brand-dark) !important; color: #fff !important; text-decoration: none; }

/* mobile menu toggle */
.menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; padding: 6px 10px; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px;
  }
  .menu.open { display: flex; }
  .menu > li > a { padding: 12px 14px; }
  .dropdown > .submenu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 14px; margin: 0; }
  .nav-cta { text-align: center; margin-top: 6px; }
}

/* ---------- Hero (photo background + floating quote panel) ---------- */
.hero-wrap { padding-top: 22px; }

.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  background: #10161c;
}
.hero-bg {
  grid-column: 1; grid-row: 1;
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,14,.12) 0%, rgba(6,10,14,.78) 100%);
}
.hero-overlay {
  grid-column: 1; grid-row: 1;
  position: relative; z-index: 2;
  align-self: end;
  color: #fff;
  padding: 26px 22px 24px;
}
.hero-overlay h1 { color: #fff; }
.hero-overlay .lead { font-size: 1.1rem; color: rgba(255,255,255,.92); margin: 14px 0 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-form-panel {
  grid-column: 1; grid-row: 2;
  background: #fff;
  padding: 24px 20px;
}
.hero-form-panel .quote-card { background: transparent; border: 0; box-shadow: none; padding: 0; }

.btn {
  display: inline-block; padding: 15px 26px; border-radius: 999px; font-weight: 800;
  text-align: center; cursor: pointer; border: 0; font-size: 1.02rem;
}
.btn-call { background: var(--brand); color: #fff !important; }
.btn-call:hover { background: var(--brand-dark); text-decoration: none; }
.btn-outline { background: #fff; color: var(--brand-dark) !important; border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--bg-soft); text-decoration: none; }
.btn-outline-light {
  background: rgba(255,255,255,.10); color: #fff !important; border: 2px solid rgba(255,255,255,.8);
}
.btn-outline-light:hover { background: rgba(255,255,255,.2); text-decoration: none; }

@media (min-width: 901px) {
  .hero-card {
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: 1fr;
    min-height: 560px;
  }
  .hero-bg { grid-column: 1 / -1; grid-row: 1; min-height: 100%; }
  .hero-bg::after {
    background: linear-gradient(100deg, rgba(6,10,14,.82) 0%, rgba(6,10,14,.58) 38%, rgba(6,10,14,.18) 62%, rgba(6,10,14,0) 80%);
  }
  .hero-overlay { grid-column: 1; grid-row: 1; max-width: 600px; padding: 48px; }
  .hero-form-panel {
    grid-column: 2; grid-row: 1;
    align-self: center; justify-self: end; z-index: 3;
    width: 100%; max-width: 420px;
    margin: 32px 32px 32px 0;
    border-radius: 16px;
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
    max-height: calc(100% - 64px);
    overflow-y: auto;
  }
}

/* ---------- Quote form ---------- */
.quote-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.quote-card h2 { margin-top: 0; }
.quote-card .req { color: #c0392b; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-card label { display: block; font-weight: 700; margin: 14px 0 6px; font-size: .95rem; }
.quote-card input, .quote-card textarea {
  width: 100%; padding: 12px; border: 1px solid #cfcfcf; border-radius: 8px; font: inherit;
}
.quote-card textarea { min-height: 110px; resize: vertical; }
.quote-card .btn-call { width: 100%; margin-top: 18px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Sections ---------- */
section { padding: 8px 0; }
.section-soft { background: var(--bg-soft); padding: 46px 0; margin-top: 40px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.card h3 { margin-top: 0; }
.card a.more { font-weight: 700; }

.check { list-style: none; padding: 0; margin: 18px 0; }
.check li { padding: 6px 0 6px 30px; position: relative; }
.check li::before {
  content: "✔"; color: var(--brand); font-weight: 900; position: absolute; left: 0;
}

/* ---------- Testimonials ---------- */
.quote-block {
  background: #fff; border-left: 4px solid var(--brand); border-radius: 8px;
  padding: 20px 22px; box-shadow: 0 2px 10px rgba(0,0,0,.05); font-style: italic; color: #333;
}
.quote-block .author { display: block; margin-top: 10px; font-style: normal; font-weight: 700; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--line); border-radius: 8px; padding: 4px 18px; margin: 10px 0; background:#fff;
}
.faq summary { font-weight: 700; cursor: pointer; padding: 12px 0; }
.faq details[open] summary { color: var(--brand-dark); }

/* ---------- Service-area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; padding: 0; list-style: none; }
.chips li a {
  display: inline-block; padding: 8px 16px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 999px; font-weight: 600; color: var(--ink);
}
.chips li a:hover { background: var(--brand); color: #fff; text-decoration: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--brand); color: #fff; text-align: center; padding: 46px 20px; margin-top: 48px;
  border-radius: var(--radius);
}
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band .btn-call { background: #fff; color: var(--brand-dark) !important; margin-top: 8px; }

/* ---------- Content pages ---------- */
.page-head { padding-top: 64px; padding-bottom: 16px; scroll-margin-top: 90px; }
.content { max-width: 820px; }
.content p { margin: 1.1em 0; }
.breadcrumb { font-size: .9rem; color: var(--muted); margin: 8px 0 0; }
.breadcrumb a { color: var(--muted); }

.map-embed iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius); }

/* ---------- Footer ---------- */
.site-footer { background: #10161c; color: #cfd6dd; margin-top: 56px; padding: 44px 0 26px; }
.site-footer a { color: #cfd6dd; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 1.05rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 7px 0; }
.footer-serving { font-weight: 700; color: #fff; }
.footer-bottom { border-top: 1px solid #2a3138; margin-top: 28px; padding-top: 18px; font-size: .85rem; color: #93a0ac; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }

/* utilities */
.center { text-align: center; }
.mt0 { margin-top: 0; }
.big-phone { font-size: 1.35rem; font-weight: 800; }

/* ---------- Images ---------- */
.rounded-img { width: 100%; border-radius: var(--radius); display: block; object-fit: cover; }
.hero-photo { margin: 0 0 22px; max-height: 420px; }

/* ---------- Intro (text block) ---------- */
.intro-block { max-width: 900px; }

/* ---------- Service showcase (alternating image + copy) ---------- */
.showcase-wrap { margin-top: 20px; }
.showcase-wrap > h2 { margin-bottom: 22px; }
.showcase {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px;
  align-items: center; margin: 30px 0; padding-bottom: 30px;
  border-bottom: 1px solid var(--line, #e6e9ee);
}
.showcase:last-child { border-bottom: 0; }
.showcase.rev .showcase-media { order: 2; }
.showcase-media img { max-height: 320px; }
.showcase-copy h3 { margin-top: 0; font-size: 1.5rem; }
.showcase-copy .more { font-weight: 700; }
@media (max-width: 860px) {
  .showcase, .showcase.rev { grid-template-columns: 1fr; }
  .showcase.rev .showcase-media { order: 0; }
}

/* ---------- Service spotlight (condensed homepage cards) ---------- */
.services-spotlight { background: var(--brand-dark); padding: 54px 0; margin-top: 48px; }
.spotlight-head { text-align: center; margin-bottom: 30px; }
.spotlight-head h2 { color: #fff; margin-top: 0; }
.spotlight-divider { width: 60px; height: 3px; background: rgba(255,255,255,.6); margin: 16px auto 0; border-radius: 2px; }

.services-spotlight .wrap { max-width: 1300px; }
.spotlight-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.spotlight-card {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4 / 5; background-size: cover; background-position: center;
  background-color: #1c242c;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}
.spotlight-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.85) 100%);
}
.spotlight-card-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; z-index: 2; }
.spotlight-card-title { display: block; color: #fff; font-weight: 800; font-size: 1.1rem; }
.spotlight-card-sub { display: block; color: rgba(255,255,255,.78); font-size: .88rem; margin-top: 5px; line-height: 1.4; }
.spotlight-card:hover .spotlight-card-title { text-decoration: underline; }

.spotlight-more { text-align: center; margin-top: 30px; }
.spotlight-more a { color: #fff; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; font-size: .85rem; }
.spotlight-more a:hover { color: rgba(255,255,255,.8); }

@media (max-width: 980px) {
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-card:last-child:nth-child(odd) { grid-column: 1 / -1; width: 320px; justify-self: center; }
}
@media (max-width: 620px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-card { aspect-ratio: 16 / 10; }
  .spotlight-card:last-child:nth-child(odd) { grid-column: auto; width: 100%; justify-self: stretch; }
}

/* ---------- Service explorer (interactive homepage services section) ----
   Hidden radio-button group drives which panel shows, so tab switching is
   pure CSS and works with JavaScript disabled — a tiny script (inlined next
   to the markup) additionally checks the matching radio on hover, but only
   on hover-capable pointers, so touch/mobile always uses plain tap/click. */
.service-explorer { background: var(--brand-dark); padding: 54px 0 60px; margin-top: 48px; max-width: none; }
.service-explorer .spotlight-head { margin-bottom: 26px; }
.explorer-hint { color: rgba(255,255,255,.75); font-size: .95rem; margin: 10px 0 0; }

.explorer { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.explorer-radio { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }

.explorer-tabs { display: flex; flex-direction: column; gap: 6px; }
.explorer-tab {
  display: flex; align-items: baseline; gap: 12px; cursor: pointer;
  padding: 14px 16px; border-radius: 10px; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: background .15s ease, color .15s ease;
}
.explorer-tab:hover { background: rgba(255,255,255,.1); color: #fff; }
.explorer-tab-num { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.45); }
.explorer-tab-name { font-weight: 700; line-height: 1.3; }

.explorer-panels { position: relative; }
.explorer-panel {
  display: none; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); grid-template-columns: 280px 1fr;
}
.explorer-panel-media { display: block; padding: 20px; box-sizing: border-box; background: #fff; }
.explorer-panel-media img, .explorer-panel-img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px;
}
.explorer-panel-copy { padding: 28px 30px; }
.explorer-panel-copy h3 { margin-top: 0; }
.explorer-highlights { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 10px; }
.explorer-highlights li { padding-left: 22px; position: relative; color: var(--ink); }
.explorer-highlights li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.btn-explorer {
  display: inline-block; margin-top: 10px; padding: 12px 22px; border-radius: 8px;
  background: var(--brand); color: #fff; font-weight: 800; text-decoration: none;
}
.btn-explorer:hover { background: var(--brand-dark); text-decoration: none; }

/* Pair each radio with its own tab + panel, purely by DOM position. */
.explorer-radio:nth-of-type(1):checked ~ .explorer-tabs .explorer-tab:nth-of-type(1),
.explorer-radio:nth-of-type(2):checked ~ .explorer-tabs .explorer-tab:nth-of-type(2),
.explorer-radio:nth-of-type(3):checked ~ .explorer-tabs .explorer-tab:nth-of-type(3),
.explorer-radio:nth-of-type(4):checked ~ .explorer-tabs .explorer-tab:nth-of-type(4),
.explorer-radio:nth-of-type(5):checked ~ .explorer-tabs .explorer-tab:nth-of-type(5),
.explorer-radio:nth-of-type(6):checked ~ .explorer-tabs .explorer-tab:nth-of-type(6),
.explorer-radio:nth-of-type(7):checked ~ .explorer-tabs .explorer-tab:nth-of-type(7),
.explorer-radio:nth-of-type(8):checked ~ .explorer-tabs .explorer-tab:nth-of-type(8) {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.explorer-radio:nth-of-type(1):checked ~ .explorer-tabs .explorer-tab:nth-of-type(1) .explorer-tab-num,
.explorer-radio:nth-of-type(2):checked ~ .explorer-tabs .explorer-tab:nth-of-type(2) .explorer-tab-num,
.explorer-radio:nth-of-type(3):checked ~ .explorer-tabs .explorer-tab:nth-of-type(3) .explorer-tab-num,
.explorer-radio:nth-of-type(4):checked ~ .explorer-tabs .explorer-tab:nth-of-type(4) .explorer-tab-num,
.explorer-radio:nth-of-type(5):checked ~ .explorer-tabs .explorer-tab:nth-of-type(5) .explorer-tab-num,
.explorer-radio:nth-of-type(6):checked ~ .explorer-tabs .explorer-tab:nth-of-type(6) .explorer-tab-num,
.explorer-radio:nth-of-type(7):checked ~ .explorer-tabs .explorer-tab:nth-of-type(7) .explorer-tab-num,
.explorer-radio:nth-of-type(8):checked ~ .explorer-tabs .explorer-tab:nth-of-type(8) .explorer-tab-num {
  color: rgba(255,255,255,.8);
}
.explorer-radio:nth-of-type(1):checked ~ .explorer-panels .explorer-panel:nth-of-type(1),
.explorer-radio:nth-of-type(2):checked ~ .explorer-panels .explorer-panel:nth-of-type(2),
.explorer-radio:nth-of-type(3):checked ~ .explorer-panels .explorer-panel:nth-of-type(3),
.explorer-radio:nth-of-type(4):checked ~ .explorer-panels .explorer-panel:nth-of-type(4),
.explorer-radio:nth-of-type(5):checked ~ .explorer-panels .explorer-panel:nth-of-type(5),
.explorer-radio:nth-of-type(6):checked ~ .explorer-panels .explorer-panel:nth-of-type(6),
.explorer-radio:nth-of-type(7):checked ~ .explorer-panels .explorer-panel:nth-of-type(7),
.explorer-radio:nth-of-type(8):checked ~ .explorer-panels .explorer-panel:nth-of-type(8) {
  display: grid;
  animation: explorer-fade .2s ease;
}
@keyframes explorer-fade { from { opacity: 0; } to { opacity: 1; } }

.explorer-radio:focus-visible ~ .explorer-tabs .explorer-tab { outline: none; }
.explorer-radio:nth-of-type(1):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(1),
.explorer-radio:nth-of-type(2):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(2),
.explorer-radio:nth-of-type(3):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(3),
.explorer-radio:nth-of-type(4):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(4),
.explorer-radio:nth-of-type(5):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(5),
.explorer-radio:nth-of-type(6):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(6),
.explorer-radio:nth-of-type(7):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(7),
.explorer-radio:nth-of-type(8):focus-visible ~ .explorer-tabs .explorer-tab:nth-of-type(8) {
  outline: 2px solid #fff; outline-offset: 2px;
}

@media (max-width: 900px) {
  .explorer { grid-template-columns: 1fr; }
  /* Wrap into a grid instead of a horizontal-scroll row — a scrolling tab
     strip hides every option but the first with no visible affordance that
     more exist, which is exactly the hover-only-style trap we're avoiding. */
  .explorer-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .explorer-tab { padding: 12px; }
  .explorer-panel { grid-template-columns: 1fr; }
  .explorer-panel-media { aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .explorer-tabs { grid-template-columns: 1fr; }
}

/* ---------- Services hub: image-topped cards ---------- */
.services-hub-intro { color: var(--muted); font-size: 1.05rem; margin: 6px 0 6px; }
.service-card-grid { margin-top: 20px; }
.service-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.service-card .card-media { margin: 0; }
.service-card .card-media img { width: 100%; height: 190px; object-fit: cover; display: block; }
.service-card .card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card .card-body h3 { margin-top: 0; }
.service-card .card-body p { flex: 1; }

/* ---------- Freeform content sections ---------- */
.content-section { max-width: 900px; padding-top: 8px; padding-bottom: 8px; }
.content-section h2 { margin-top: 1.2em; }
.sec-media { margin: 10px 0 16px; }
.article-body { max-width: 820px; }
.article-body img { margin: 0 0 20px; }

/* ---------- Trust bar (below hero) ---------- */
.hero-trust { margin-top: 22px; }
.trust-bar {
  list-style: none; margin: 0; padding: 22px 26px;
  display: grid; grid-template-columns: 1fr;
  gap: 14px 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.trust-bar li {
  position: relative; padding-left: 26px;
  font-weight: 600; font-size: .96rem; color: var(--ink);
}
.trust-bar li::before {
  content: "✔"; position: absolute; left: 0; top: 1px;
  color: var(--brand); font-weight: 900;
}
@media (min-width: 860px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    text-align: center;
    padding-left: 0;
  }
  .trust-bar li:last-child:nth-child(odd)::before {
    position: static; margin-right: 8px;
  }
}

/* ---------- Logo (footer / page / about) ---------- */
.footer-logo { max-width: 210px; height: auto; margin-bottom: 12px; }
.page-logo { max-width: 220px; height: auto; margin: 20px 0 4px; }

.about-intro { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; }
.about-intro-media img { width: 100%; height: auto; border-radius: var(--radius); }
@media (max-width: 760px) {
  .about-intro { grid-template-columns: 1fr; gap: 20px; }
  .about-intro-media { max-width: 220px; margin: 0 auto; }
}
