/* Makey Locksmith — design system
   navy #0d1b2e · steel #16294a · amber #f2a71b · paper #f7f8fa */

:root {
  --navy: #0a1e3d;
  --navy-2: #0f2b52;
  --blue: #1a63d8;
  --blue-d: #1550b5;
  --blue-l: #4d90f5;
  --amber: #1a63d8;          /* legacy alias — now brand blue */
  --ink: #15202e;
  --muted: #5a6674;
  --line: #dfe7f2;
  --paper: #eef4fc;
  --page: #f6faff;
  --wrap: 1180px;
  --r: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a { color: #14539a; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--blue);
  color: #fff; padding: 10px 16px; z-index: 100; font-weight: 700;
}
:focus-visible { outline: 3px solid var(--blue-l); outline-offset: 2px; }
.skip:focus { left: 0; }

/* ---------- top utility bar ---------- */

.topbar {
  background: var(--navy); color: #b9cbe4; font-size: 12px;
  letter-spacing: .06em; font-weight: 600;
}
.topbar-in {
  display: flex; justify-content: space-between; align-items: center;
  height: 36px; gap: 16px;
}
.tb-l { color: var(--blue-l); text-transform: uppercase; }
.tb-r { text-transform: uppercase; opacity: .85; }

/* ---------- header ---------- */

.hdr {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 6px rgba(13,27,46,.06);
}

.hdr-in { display: flex; align-items: center; gap: 18px; height: 76px; }

.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { height: 52px; width: auto; display: block; }

.nav { margin-left: auto; }

.menu { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a,
.menu > li > .sub-t {
  display: flex; align-items: center; gap: 6px;
  color: var(--navy); text-decoration: none; font-size: 15px; font-weight: 700;
  white-space: nowrap; padding: 10px 14px; border-radius: 6px;
  background: none; border: 0; cursor: pointer; font-family: inherit;
  line-height: 1.2;
}
.menu > li > a:hover,
.menu > li > .sub-t:hover { background: var(--paper); color: #14539a; }

.car {
  width: 0; height: 0; border-left: 4px solid transparent;
  border-right: 4px solid transparent; border-top: 5px solid currentColor;
  opacity: .65; transition: transform .15s ease;
}
.has-sub:hover .car, .sub-t[aria-expanded="true"] .car { transform: rotate(180deg); }

.sub {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%;
  left: 0; min-width: 262px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: 0 10px 30px rgba(13,27,46,.14);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
  max-height: 70vh; overflow-y: auto; z-index: 60;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub li a {
  display: block; padding: 8px 12px; border-radius: 5px; text-decoration: none;
  color: #33414f; font-size: 14.5px; font-weight: 600; white-space: nowrap;
}
.sub li a:hover { background: var(--paper); color: #14539a; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r); font-weight: 700; text-decoration: none;
  padding: 12px 20px; border: 2px solid transparent; cursor: pointer;
  transition: transform .08s ease, background .15s ease;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }

.call {
  background: var(--blue); color: #fff; font-size: 15px;
  padding: 11px 17px; white-space: nowrap;
}
.call:hover { background: var(--blue-d); color: #fff; }

.primary { background: var(--blue); color: #fff; font-size: 17px; }
.primary:hover { background: var(--blue-d); color: #fff; }
.primary.big { font-size: 19px; padding: 16px 30px; }

.ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.ghost:hover { background: rgba(255,255,255,.1); }

.burger {
  display: none; background: none; border: 0; color: var(--navy);
  font-size: 26px; cursor: pointer; padding: 4px 8px; line-height: 1;
}

.mnav { display: none; background: #fff; border-top: 1px solid var(--line); }
.mnav .menu { flex-direction: column; gap: 0; padding: 6px 0; }
.mnav .menu > li > a,
.mnav .menu > li > .sub-t {
  width: 100%; padding: 14px 20px; border-radius: 0; justify-content: space-between;
  border-top: 1px solid var(--line);
}
.mnav .menu > li:first-child > a { border-top: 0; }
.mnav .sub {
  position: static; opacity: 1; visibility: visible; transform: none;
  border: 0; box-shadow: none; padding: 0 0 8px 14px; max-height: none;
  display: none; min-width: 0;
}
.mnav .sub-t[aria-expanded="true"] + .sub { display: block; }
.mnav .sub li a { padding: 10px 20px; }

/* ---------- hero ---------- */

.hero {
  color: #fff; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(26,99,216,.30), transparent 60%),
    linear-gradient(150deg, #0d2b52 0%, var(--navy) 55%, #071630 100%);
  background-color: var(--navy);
}
.hero-in {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px;
  align-items: center; padding: 64px 20px 60px; min-height: 420px;
}
.hero .kicker {
  text-transform: uppercase; letter-spacing: .13em; font-size: 12.5px;
  font-weight: 800; color: var(--blue-l); margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.1; margin: 0 0 18px;
  font-weight: 800; letter-spacing: -.02em; max-width: 16ch;
}
.hero h1 .l1, .hero h1 .l2 { display: block; }
.hero h1 .l2 { color: var(--blue-l); }
.hero .lede {
  font-size: 17.5px; color: #bccbdd; max-width: 46ch; margin: 0 0 26px;
  line-height: 1.6;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-pills {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin: 28px 0 0; padding: 0;
}
.hero-pills li {
  font-size: 12.5px; font-weight: 700; color: #cfdcec;
  text-transform: uppercase; letter-spacing: .05em;
  padding-left: 22px; position: relative;
}
.hero-pills li::before {
  content: "\2713"; position: absolute; left: 0; top: -1px;
  color: var(--blue-l); font-weight: 800;
}

.hero-art {
  position: relative; align-self: stretch; min-height: 340px;
  border-radius: 10px; background-size: cover; background-position: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}
.hero-badge {
  position: absolute; right: 14px; bottom: 14px; left: 14px;
  background: rgba(10,30,61,.93); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; padding: 13px 16px; backdrop-filter: blur(3px);
}
.hero-badge strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.hero-badge span { font-size: 13px; color: #b9cbe4; line-height: 1.45; }

/* inner pages: single column, tighter */
.hero:not(.hero--home) .hero-in {
  grid-template-columns: 1fr; text-align: center; min-height: 0;
  padding: 56px 20px 52px;
}
.hero:not(.hero--home) h1 { max-width: 22ch; margin-inline: auto; }
.hero:not(.hero--home) .lede { margin-inline: auto; max-width: 58ch; }
.hero:not(.hero--home) .cta-row { justify-content: center; }

/* ---------- sections ---------- */

.sec { padding: 46px 0; border-bottom: 1px solid var(--line); background: var(--page); }
.sec:nth-of-type(even) { background: #fff; }

.sec h2 {
  font-size: clamp(22px, 2.7vw, 31px); line-height: 1.25; margin: 0 0 18px;
  font-weight: 800; color: var(--navy); letter-spacing: -.01em;
}
.sec h3 { font-size: 20px; margin: 26px 0 8px; color: var(--navy-2); font-weight: 700; }
.sec h4 { font-size: 17px; margin: 20px 0 6px; color: var(--navy-2); font-weight: 700; }
.sec p { margin: 0 0 15px; max-width: 78ch; }

.inline {
  display: block; width: 100%; max-width: 620px; border-radius: var(--r);
  margin: 6px 0 22px; box-shadow: 0 2px 14px rgba(13,27,46,.10);
}

.ticks { list-style: none; padding: 0; margin: 0 0 18px; max-width: 78ch; }
.ticks li { position: relative; padding: 5px 0 5px 30px; }
.ticks li::before {
  content: "\2713"; position: absolute; left: 0; top: 5px;
  color: var(--amber); font-weight: 800;
}

.grid-gal {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.grid-gal figure { margin: 0; }
.grid-gal img {
  width: 100%; height: 185px; object-fit: cover; border-radius: var(--r);
  display: block; background: var(--paper);
}

/* ---------- cta band ---------- */

.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: 56px 0; text-align: center;
}
.cta h2 { font-size: clamp(22px, 3vw, 32px); margin: 0 0 12px; font-weight: 800; }
.cta p { color: #c3cfdc; margin: 0 auto 26px; max-width: 62ch; }

/* ---------- contact page ---------- */

.contact { padding: 52px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.contact-in { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 28px; box-shadow: 0 2px 10px rgba(10,30,61,.06);
}
.contact-form h2 { margin: 0 0 8px; font-size: 26px; color: var(--navy); font-weight: 800; }
.cf-sub { color: var(--muted); margin: 0 0 22px; font-size: 15px; line-height: 1.6; }
.cf-sub a { color: var(--blue); text-decoration: none; }

.cform label {
  display: block; font-size: 13.5px; font-weight: 700; color: var(--navy);
  margin: 14px 0 6px;
}
.cform label .opt { font-weight: 500; color: var(--muted); font-size: 12.5px; }
.cform input, .cform select, .cform textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 14px; border: 1px solid #cdd6e2; border-radius: 7px;
  background: #fff; transition: border-color .14s ease, box-shadow .14s ease;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,99,216,.15);
}
.cform textarea { resize: vertical; min-height: 84px; }
.cf-submit { width: 100%; margin-top: 20px; min-height: 52px; }
.cf-note { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; text-align: center; }
.hp { display: none !important; }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.cs-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px;
}
.cs-call {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: transparent; color: #fff; text-align: center;
}
.cs-k {
  margin: 0 0 6px; font-size: 12px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--blue-l); font-weight: 800;
}
.cs-phone {
  display: block; font-size: 30px; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -.01em; line-height: 1.2;
}
.cs-d { color: #b9cbe4; font-size: 14px; margin: 8px 0 16px; }
.cs-call .btn { width: 100%; }
.cs-card h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy); margin: 18px 0 6px; font-weight: 800;
}
.cs-card h3:first-child { margin-top: 0; }
.cs-card p { margin: 0 0 4px; font-size: 14.5px; color: #33414f; line-height: 1.6; }
.cs-card a { color: var(--blue); text-decoration: none; }
.cs-areas {
  list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 18px;
  font-size: 13.5px;
}
.cs-areas li { margin-bottom: 5px; }
.cs-areas a { color: #33414f; }
.cs-areas a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .contact-in { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
}

/* ---------- trust strip ---------- */

.trust { background: #fff; border-bottom: 1px solid var(--line); padding: 22px 0; }
.trust-in { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.trust-l {
  margin: 0; font-size: 12.5px; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: .07em; line-height: 1.5;
  flex: 0 0 auto; border-right: 1px solid var(--line); padding-right: 30px;
}
.trust-g { display: flex; gap: 34px; flex-wrap: wrap; flex: 1; }
.tr { display: flex; flex-direction: column; }
.tr-k { font-size: 19px; font-weight: 800; color: var(--blue); line-height: 1.15; }
.tr-v { font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ---------- BBB accreditation badge ---------- */

.bbb { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.bbb img { display: block; height: auto; }
.bbb-text {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid #15597a; border-radius: 6px; overflow: hidden;
  background: #fff; line-height: 1.15;
}
.bbb-text strong {
  background: #15597a; color: #fff; font-size: 19px; font-weight: 800;
  letter-spacing: .04em; padding: 9px 10px; align-self: stretch;
  display: flex; align-items: center;
}
.bbb-text > span {
  color: #15597a; font-size: 10.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; padding: 6px 11px 6px 0;
}
.bbb--sm { margin-top: 16px; }
.bbb--sm .bbb-text strong { font-size: 16px; padding: 7px 9px; }
.bbb--sm .bbb-text > span { font-size: 9.5px; padding-right: 9px; }
.bbb--sm .bbb-text { background: rgba(255,255,255,.96); }
.cs-bbb .bbb { margin-bottom: 10px; }

/* ---------- eyebrow + centred headings ---------- */

.eyebrow {
  text-align: center; text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; font-weight: 800; color: var(--blue); margin: 0 0 8px;
}
h2.ctr { text-align: center; margin-bottom: 30px !important; }

/* ---------- service cards ---------- */

.services { padding: 56px 0; background: #fff; border-bottom: 1px solid var(--line); }
.sc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.sc {
  display: flex; flex-direction: column; text-decoration: none; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; transition: box-shadow .16s ease, transform .12s ease, border-color .16s;
}
.sc:hover {
  box-shadow: 0 12px 30px rgba(10,30,61,.13); transform: translateY(-3px);
  border-color: #cfdcf0;
}
.sc-img {
  display: block; height: 128px; background-size: cover; background-position: center;
  background-color: #dde5ef;
}
.sc-img--flat { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.sc-icon {
  position: absolute; top: 106px; left: 16px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--blue); color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(10,30,61,.28); border: 3px solid #fff;
}
.sc-body { padding: 32px 16px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.sc-t { font-size: 15.5px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .02em; }
.sc-d { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; }
.sc-more { font-size: 13px; font-weight: 800; color: var(--blue); }

/* ---------- testimonials ---------- */

.tsts { padding: 54px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tst {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 22px; box-shadow: 0 1px 4px rgba(10,30,61,.05);
}
.stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.tst blockquote {
  margin: 0; font-size: 14.5px; line-height: 1.65; color: #33414f; font-style: italic;
}

/* ---------- local block ---------- */

.local { padding: 56px 0; background: var(--page); border-bottom: 1px solid var(--line); }
.local-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: start; }
.local-a .eyebrow, .local-a h2 { text-align: left; }
.local-a h2 { font-size: clamp(22px, 2.6vw, 30px); color: var(--navy); margin: 0 0 12px; font-weight: 800; }
.local-a > p { color: var(--muted); max-width: 52ch; }
.area-list {
  list-style: none; padding: 0; margin: 18px 0 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px;
}
.area-list a {
  color: #33414f; text-decoration: none; font-size: 14.5px; font-weight: 600;
  padding-left: 20px; position: relative; display: block;
}
.area-list a::before {
  content: "\2713"; position: absolute; left: 0; color: var(--blue); font-weight: 800;
}
.area-list a:hover { color: var(--blue); }
.ghost-d { border-color: var(--blue); color: var(--blue); }
.ghost-d:hover { background: var(--blue); color: #fff; }
.local-b {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border-radius: 10px; padding: 26px 24px;
}
.local-b h3 { margin: 0 0 14px; font-size: 19px; font-weight: 800; }
.local-b .ticks li { color: #cbd8e8; padding-left: 26px; }
.local-b .ticks li::before { color: var(--blue-l); }
.local-b .btn { margin-top: 14px; width: 100%; }

/* ---------- side call button ---------- */

.side-call {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 70; background: var(--blue); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 14px; padding: 14px 12px;
  border-radius: 8px 0 0 8px; box-shadow: -3px 3px 16px rgba(10,30,61,.30);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: background .15s ease, padding .15s ease;
}
.side-call:hover { background: var(--blue-d); padding-right: 16px; }
.side-call .sc-ico { font-size: 19px; }
.side-call .sc-txt { writing-mode: vertical-rl; letter-spacing: .04em; }

/* ---------- make-specific content + FAQs ---------- */

.makeinfo { padding: 50px 0; background: #fff; border-bottom: 1px solid var(--line); }
.makeinfo h2 {
  font-size: clamp(21px, 2.5vw, 29px); color: var(--navy); font-weight: 800;
  margin: 0 0 16px; max-width: 24ch;
}
.makeinfo p { max-width: 74ch; margin: 0 0 15px; }
.faqs { margin-top: 28px; max-width: 74ch; }
.faqs h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .09em;
  color: var(--navy); font-weight: 800; margin: 0 0 12px;
}
.faq {
  border: 1px solid var(--line); border-radius: 8px; background: var(--page);
  margin-bottom: 9px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 14px 44px 14px 16px; font-weight: 700;
  color: var(--navy); font-size: 15.5px; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%); font-size: 21px; font-weight: 400;
  color: var(--blue); line-height: 1;
}
.faq[open] summary::after { content: "\2212"; }
.faq summary:hover { background: #fff; }
.faq > p { margin: 0; padding: 0 16px 16px; color: #33414f; font-size: 15px; }

/* ---------- coverage map (click to load) ---------- */

.mapwrap { padding: 46px 0; background: #fff; border-bottom: 1px solid var(--line); }
.mapwrap h2 {
  font-size: clamp(21px, 2.5vw, 28px); margin: 0 0 8px; color: var(--navy); font-weight: 800;
}
.map-sub { color: var(--muted); margin: 0 0 20px; max-width: 62ch; }
.mapbox {
  position: relative; height: 340px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, #eef2f7 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, #eef2f7 0 1px, transparent 1px 34px),
    #f7f9fc;
}
.mapbox iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; background: none; border: 0; cursor: pointer;
  font: inherit; font-size: 15px; font-weight: 700; color: var(--navy);
}
.map-btn:hover { background: rgba(26,99,216,.05); }
.map-pin { font-size: 34px; line-height: 1; }
.map-btn span:last-child {
  background: var(--blue); color: #fff; padding: 11px 20px; border-radius: 7px;
  box-shadow: 0 3px 12px rgba(10,30,61,.18);
}

@media (max-width: 560px) { .mapbox { height: 260px; } }

/* ---------- real job photos ---------- */

.work { padding: 50px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.work h2 {
  font-size: clamp(22px, 2.7vw, 30px); margin: 0 0 8px; color: var(--navy);
  font-weight: 800;
}
.work-sub { color: var(--muted); margin: 0 0 26px; max-width: 62ch; }
.work-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.shot {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 1px 4px rgba(13,27,46,.05);
}
.shot img {
  width: 100%; height: 230px; object-fit: cover; display: block;
  background: #eceff3;
}
.shot figcaption {
  font-size: 13px; color: var(--muted); padding: 10px 12px; line-height: 1.4;
}

@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .shot img { height: 140px; }
  .shot figcaption { font-size: 11.5px; padding: 7px 8px; }
}

/* ---------- car brand grid ---------- */

.brands { padding: 50px 0; background: var(--page); border-bottom: 1px solid var(--line); }
.brands h2 {
  font-size: clamp(22px, 2.7vw, 30px); margin: 0 0 8px; color: var(--navy);
  font-weight: 800; text-align: center;
}
.brands-sub {
  text-align: center; color: var(--muted); margin: 0 auto 28px; max-width: 56ch;
}
.brand-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 30px 18px;
}
.brand-tile {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none; padding: 4px; border-radius: 6px;
  transition: opacity .15s ease, transform .12s ease;
}
.brand-tile:hover { transform: translateY(-3px); }
.brand-tile:hover .brand-name { color: #14539a; }
.brand-logo {
  height: 42px; display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.brand-logo img {
  max-height: 42px; max-width: 74px; width: auto; object-fit: contain;
}
.brand-initial {
  font-size: 26px; font-weight: 800; color: var(--navy-2); opacity: .65;
}
.brand-name {
  font-size: 13.5px; font-weight: 600; color: #33414f; text-align: center;
  line-height: 1.3; transition: color .15s ease;
}

@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); gap: 26px 14px; }
}
@media (max-width: 560px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 10px; }
  .brand-logo { height: 34px; }
  .brand-logo img { max-height: 34px; max-width: 58px; }
  .brand-name { font-size: 12px; }
}

/* ---------- link directory ---------- */

.dir { background: var(--paper); border-top: 1px solid var(--line); padding: 46px 0 40px; }
.dir > .wrap > h2 {
  font-size: 20px; margin: 0 0 22px; color: var(--navy); font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
}
.dir-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 26px 30px; align-items: start;
}
.dir-col h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .09em;
  color: var(--navy); margin: 0 0 10px; padding-bottom: 8px;
  border-bottom: 2px solid var(--amber); font-weight: 800;
}
.dir-col h3 .cnt {
  color: var(--muted); font-weight: 600; letter-spacing: 0; font-size: 12px;
}
.dir-col ul { list-style: none; padding: 0; margin: 0; }
.dir-col li { margin-bottom: 6px; }
.dir-col a {
  color: #33414f; text-decoration: none; font-size: 14.5px; line-height: 1.45;
}
.dir-col a:hover { color: #14539a; text-decoration: underline; }

@media (max-width: 560px) {
  .dir-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .dir-col a { font-size: 13.5px; }
}

/* ---------- footer ---------- */

.ftr { background: var(--navy); color: #b9c5d3; padding: 50px 0 0; font-size: 15px; }
.ftr-in {
  display: grid; grid-template-columns: 1.5fr 1fr 1.6fr; gap: 40px;
  padding-bottom: 36px;
}
.ftr-about img { height: 40px; width: auto; margin-bottom: 14px; }
.ftr h3 {
  color: #fff; font-size: 15px; text-transform: uppercase;
  letter-spacing: .1em; margin: 0 0 14px;
}
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 8px; }
.ftr a { color: #b9c5d3; text-decoration: none; }
.ftr a:hover { color: var(--amber); }
.ftr .cols { columns: 2; column-gap: 24px; }
.ftr-c { margin-top: 14px; font-weight: 700; }
.ftr-c a { color: var(--amber); }
.sub {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px;
  padding-bottom: 18px; font-size: 13.5px; color: #8a99aa;
}

/* ---------- sticky mobile call ---------- */

.sticky-call {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--amber); color: var(--navy); text-align: center;
  padding: 15px; font-weight: 800; text-decoration: none; font-size: 17px;
  box-shadow: 0 -2px 14px rgba(0,0,0,.22);
}

/* ---------- responsive ---------- */

/* wide desktop: let the grid breathe rather than stretching text lines */
@media (min-width: 1400px) {
  :root { --wrap: 1260px; }
}

/* tablet / small laptop */
@media (max-width: 1200px) {
  .menu > li > a, .menu > li > .sub-t { padding: 10px 10px; font-size: 14.5px; }
  .brand img { height: 46px; }
  .sc-grid { gap: 14px; }
  .brand-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1000px) {
  .hero-in { grid-template-columns: 1fr; padding: 46px 20px 44px; }
  .hero-art { min-height: 220px; }
  .sc-grid { grid-template-columns: 1fr 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .local-in { grid-template-columns: 1fr; }
  .trust-l { border-right: 0; padding-right: 0; }
  .trust-g { gap: 22px; }
  .side-call { display: none; }
  .topbar .tb-r { display: none; }
  .nav { display: none; }
  .burger { display: block; margin-left: auto; }
  .call .num { display: none; }
  .call { font-size: 19px; padding: 9px 14px; }
  .hdr-in { height: 66px; }
  .brand img { height: 42px; }
  .mnav { display: block; }
  .mnav[hidden] { display: none; }
  .ftr-in { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 58px 0 52px; }
  body { padding-bottom: 58px; }
  .sticky-call { display: block; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .sc-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-in { padding: 36px 16px 34px; }
  .hero .lede { font-size: 16px; }
  .hero-pills { gap: 8px 16px; margin-top: 20px; }
  .topbar { font-size: 11px; }
  .topbar-in { height: 32px; justify-content: center; }
  .sec { padding: 34px 0; }
  .sec h2 { font-size: 22px; }
  .grid-gal img { height: 150px; }
  .ftr .cols { columns: 1; }
  .cs-areas { columns: 1; }
  .cta-row .btn { width: 100%; }
  .btn { min-height: 48px; }          /* thumb-friendly tap targets */
  .faq summary { font-size: 15px; padding: 13px 40px 13px 14px; }
  .makeinfo, .work, .brands, .mapwrap, .local, .services, .tsts, .contact {
    padding: 34px 0;
  }
  .trust-in { gap: 16px; }
  .trust-l { font-size: 11.5px; }
  .trust-g { gap: 16px 22px; }
  .tr-k { font-size: 17px; }
}

/* very small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .cs-phone { font-size: 25px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand img, .brand-logo img { max-width: 100%; }
}

/* people who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* printing a quote or contact details */
@media print {
  .topbar, .hdr, .side-call, .sticky-call, .dir, .cta, .mapwrap { display: none; }
  body { background: #fff; font-size: 12pt; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
}

/* ---------- related page cross-link ---------- */

.related { background: var(--paper); padding: 26px 0; border-bottom: 1px solid var(--line); }
.related p { margin: 0; font-size: 15.5px; color: #33414f; max-width: 74ch; }
.related a { color: var(--blue); font-weight: 700; }

.ftr-lic {
  margin-top: 10px; font-size: 12.5px; color: #8fa2b8; letter-spacing: .02em;
}

/* ---------- Google reviews link ---------- */

.rev-cta { text-align: center; margin: 22px 0 0; }
.rev-link {
  display: inline-block; color: var(--blue); font-weight: 800; font-size: 15px;
  text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.rev-link:hover { border-bottom-color: var(--blue); }
.ftr-rev { margin-top: 12px; font-size: 14px; }
.ftr-rev a { color: var(--blue-l); font-weight: 700; }

.rev-score {
  text-align: center; margin: 0 0 22px; color: var(--muted); font-size: 15px;
}
.rev-score strong { color: var(--navy); font-size: 19px; font-weight: 800; }
