@font-face {
  font-family: 'SiteSans';
  src: local('Avenir Next'), local('Segoe UI'), local('Arial');
}

:root {
  --ink: #142026;
  --muted: #5d6a70;
  --line: #d7ded9;
  --paper: #f7f3ea;
  --white: #fffdf8;
  --steel: #34444d;
  --green: #235548;
  --gold: #c5913b;
  --rust: #a45132;
  --blue: #1d5b79;
  --shadow: 0 18px 42px rgba(20, 32, 38, .14);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: SiteSans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: inherit; }
img, svg { max-width: 100%; }

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max);
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 240px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: white;
  border-radius: 6px;
  font-weight: 900;
}
.brand strong,
.brand em {
  display: block;
}
.brand strong { font-size: 1rem; }
.brand em {
  color: var(--muted);
  font-size: .82rem;
  font-style: normal;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--steel);
  text-decoration: none;
  font-weight: 750;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  background: #ebe4d6;
  outline: none;
}
.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
}
.header-call,
.button.primary {
  background: var(--rust);
  color: white;
  box-shadow: 0 8px 18px rgba(164, 81, 50, .22);
}
.button.secondary {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.button.dark {
  background: var(--ink);
  color: white;
}
.header-call .icon,
.button .icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.menu-button { display: none; }

.icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 22px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 1.2rem; }
.lead {
  max-width: 66ch;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #394950;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-strip span,
.area-pills span {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .64);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--steel);
  font-weight: 750;
  font-size: .92rem;
}
.hero-visual {
  min-height: 430px;
  border: 1px solid rgba(20, 32, 38, .18);
  background:
    linear-gradient(135deg, rgba(35, 85, 72, .92), rgba(29, 91, 121, .86)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 12px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 28px;
}
.service-board {
  width: min(100%, 420px);
  background: var(--white);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
}
.board-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.board-top strong { color: var(--rust); white-space: nowrap; }
.lock-face {
  width: 155px;
  height: 155px;
  margin: 28px auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, #18242a 0 11%, transparent 12%), linear-gradient(135deg, var(--gold), #e7c979);
  position: relative;
}
.lock-face:before {
  content: '';
  position: absolute;
  width: 86px;
  height: 66px;
  border: 14px solid var(--steel);
  border-bottom: 0;
  border-radius: 52px 52px 0 0;
  left: 35px;
  top: -43px;
}
.service-board ul {
  margin: 0;
  padding-left: 20px;
  color: var(--steel);
}

.answer-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--green);
  color: white;
  padding: 36px max(22px, calc((100vw - var(--max)) / 2 + 22px));
}
.answer-band p { color: rgba(255,255,255,.84); max-width: 76ch; }

.section,
.split-section,
.page-hero,
.article {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 22px;
}
.page-hero {
  padding-top: 64px;
  padding-bottom: 46px;
}
.page-hero p:not(.eyebrow) {
  max-width: 74ch;
  font-size: 1.2rem;
  color: #394950;
}
.page-hero.urgent {
  background: linear-gradient(180deg, rgba(164, 81, 50, .12), transparent 76%);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}
.muted {
  background: rgba(255,253,248,.42);
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--max)) / 2 + 22px));
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card,
.area-card,
.guide-list a,
.check-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 32, 38, .07);
}
.service-card {
  min-height: 220px;
  padding: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .16s ease, box-shadow .16s ease;
}
.service-card:hover,
.guide-list a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card .icon {
  color: var(--green);
  margin-bottom: 22px;
}
.service-card span {
  font-weight: 900;
  font-size: 1.18rem;
}
.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
  gap: 34px;
  align-items: start;
}
.split-section article p,
.split-section > div p,
.article p {
  color: #3a484e;
  font-size: 1.06rem;
}
.check-card,
.contact-card {
  padding: 24px;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
.check-list li:first-child { border-top: 0; }
.check-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.area-pills,
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.area-card {
  min-height: 112px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 850;
}
.area-card .icon { color: var(--blue); }

.faq-list {
  max-width: 860px;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}
details p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.guide-list a {
  padding: 24px;
  text-decoration: none;
}
.guide-list span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .08em;
}
.guide-list strong {
  display: block;
  margin: 10px 0;
  font-size: 1.35rem;
}
.guide-list p {
  color: var(--muted);
}
.article {
  max-width: 880px;
}
.article h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}
.article h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}
.article-cta {
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.contact-card a,
.footer-phone {
  color: var(--rust);
  font-weight: 900;
  font-size: 1.25rem;
}
.fine-print {
  color: var(--muted);
  font-size: .94rem;
}

.site-footer {
  background: #17242a;
  color: white;
  padding: 52px 22px 32px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 34px;
}
.site-footer h2,
.site-footer h3 { margin-top: 0; }
.site-footer p,
.site-footer a {
  color: rgba(255,255,255,.78);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin: 8px 0; }
.footer-note {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .92rem;
}

:focus-visible {
  outline: 3px solid rgba(197, 145, 59, .75);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .menu-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    margin-left: auto;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
    padding: 0 14px;
    font-weight: 850;
  }
  .site-nav {
    display: none;
    width: 100%;
    margin-left: 0;
    order: 5;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { background: rgba(255,253,248,.72); }
  .header-call { display: none; }
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 44px; }
  .hero-visual { min-height: 340px; }
  .service-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner { padding: 10px 16px; }
  .brand { min-width: 0; }
  .brand strong { font-size: .94rem; }
  .brand em { display: none; }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .hero,
  .section,
  .split-section,
  .page-hero,
  .article {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-actions,
  .answer-band,
  .article-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .button { width: 100%; }
  .service-grid,
  .area-grid,
  .guide-list {
    grid-template-columns: 1fr;
  }
  .hero-visual { padding: 16px; }
  .service-board { padding: 18px; }
}

/* Reference-inspired locksmith skin for Yuma Az Locksmith. */
:root {
  --ink: #102a3a;
  --muted: #64737a;
  --line: #e7e7e7;
  --paper: #fff;
  --white: #fff;
  --steel: #102a3a;
  --green: #c85b24;
  --gold: #c85b24;
  --rust: #c85b24;
  --blue: #c85b24;
  --shadow: 0 14px 28px rgba(20, 20, 20, .12);
  --max: 1140px;
}

body {
  background: #fff;
  font-family: Poppins, Montserrat, Arial, Helvetica, sans-serif;
}

.top-line { display: none; }
.top-line a { color: #c85b24; text-decoration: none; }
.site-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.header-inner { min-height: 86px; padding-top: 0; padding-bottom: 0; }
.brand-mark {
  background: linear-gradient(135deg, #c85b24, #e5b85c);
  color: #102a3a;
  border-radius: 3px;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.12);
}
.brand-mark .icon { width: 26px; height: 26px; }
.brand strong { text-transform: uppercase; font-size: .98rem; }
.brand em { color: #102a3a; font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.site-nav { gap: 0; }
.site-nav a {
  border-radius: 0;
  color: #102a3a;
  font-size: .75rem;
  font-weight: 950;
  padding: 0 8px;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: #c85b24; background: transparent; }
.header-call,
.button.primary {
  background: #c85b24;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  text-transform: uppercase;
}
.button.secondary {
  background: #fff;
  border-color: #102a3a;
  border-radius: 0;
  color: #102a3a;
  text-transform: uppercase;
}
.button.light {
  background: #fff;
  color: #102a3a;
  border-radius: 0;
  text-transform: uppercase;
}
.service-strip {
  min-height: 58px;
  background: #c85b24;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 10px 18px;
  width: 100%;
}
.service-strip a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}
.service-strip .icon { width: 22px; height: 22px; }

.hero {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: 516px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(540px, calc(100vw - 48px));
  margin-left: max(24px, calc((100vw - 1140px) / 2));
  padding-top: 100px;
}
.outline-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 39px;
  font-weight: 950;
  text-shadow: -1px -1px 0 #8f8f8f, 1px -1px 0 #8f8f8f, -1px 1px 0 #8f8f8f, 1px 1px 0 #8f8f8f;
}
.hero h1 {
  color: #c85b24;
  font-size: 55px;
  line-height: 1.02;
  letter-spacing: 0;
}
.lead {
  color: #333;
  font-size: 16px;
  max-width: 58ch;
}
.phone-button { min-width: 190px; }
.reference-hero {
  min-height: 390px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.65), rgba(255,255,255,0)),
    linear-gradient(135deg, #f6eee2 0%, #dfb890 48%, #f2f2f2 48%, #f2f2f2 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-photo-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52vw, 760px);
  height: 516px;
  overflow: visible;
  background: #f4f4f4;
}
.hero-photo-panel > img {
  width: 100%;
  height: 516px;
  display: block;
  object-fit: cover;
  object-position: center right;
  overflow: hidden;
}
.hero-photo-panel:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,0) 36%);
  pointer-events: none;
}
.hero-proof-card {
  position: absolute;
  left: -70px;
  width: 205px;
  min-height: 78px;
  background: #fff;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 24px;
  box-shadow: 0 10px 28px rgba(16,42,58,.16);
}
.hero-proof-card strong {
  color: #c85b24;
  font-size: 1.05rem;
}
.hero-proof-card span {
  color: #40515a;
  font-size: .84rem;
}
.years-card { top: 170px; }
.area-card-small { top: 258px; left: -42px; }
.van-scene { position: relative; width: min(100%, 640px); height: 330px; }
.sun {
  position: absolute;
  right: 26px;
  top: 0;
  width: 120px;
  height: 120px;
  background: #e5b85c;
  border-radius: 50%;
  opacity: .72;
}
.van {
  position: absolute;
  right: 12px;
  bottom: 26px;
  width: 460px;
  max-width: 92%;
  height: 178px;
  background: #c85b24;
  color: #fff;
  border-radius: 14px 18px 8px 8px;
  box-shadow: 0 20px 35px rgba(0,0,0,.2);
  padding: 28px 26px;
  transform: skewX(-4deg);
}
.van:before {
  content: '';
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: -28px;
  height: 42px;
  background:
    radial-gradient(circle, #102a3a 0 44%, #fff 45% 58%, transparent 59%) left center / 72px 72px no-repeat,
    radial-gradient(circle, #102a3a 0 44%, #fff 45% 58%, transparent 59%) right center / 72px 72px no-repeat;
}
.van strong,
.van em,
.van-phone { display: block; transform: skewX(4deg); }
.van strong { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1; }
.van em { font-style: normal; font-size: 1.1rem; font-weight: 900; margin-top: 8px; }
.van-phone { position: absolute; right: 24px; top: 18px; font-weight: 950; }
.review-card {
  position: absolute;
  left: 24px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  padding: 13px 18px;
}
.review-card strong { color: #c85b24; display: block; }
.review-card span { color: #40515a; font-size: .82rem; }
.proof-note { top: 78px; }
.service-note { top: 150px; left: 42px; }

.who-section,
.what-section { text-align: center; padding-top: 38px; padding-bottom: 44px; }
.who-section .section-heading,
.what-section .section-heading { margin: 0 auto; max-width: 720px; }
.who-section h2,
.what-section h2,
.gallery-title h2 {
  color: #333;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}
.who-section h3 {
  color: #c85b24;
  font-size: 1rem;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.eyebrow { color: #c85b24; letter-spacing: 0; text-transform: none; }
.areas-band {
  background: #486c72;
  color: #fff;
  padding: 42px 22px 48px;
  text-align: center;
}
.areas-band .section-heading { margin: 0 auto; max-width: 840px; }
.areas-band h2 { color: #fff; text-transform: uppercase; }
.areas-band .area-pills { justify-content: center; margin: 24px 0; }
.areas-band .area-pills span {
  background: transparent;
  border: 3px solid rgba(255,255,255,.84);
  border-radius: 0;
  color: #fff;
  min-width: 138px;
}
.gallery-band {
  min-height: 360px;
  background:
    linear-gradient(rgba(16,42,58,.18), rgba(16,42,58,.18)),
    url('/assets/hero-service-photo-placeholder.svg') center right / cover;
  display: grid;
  place-items: center;
}
.play-button {
  width: 58px;
  height: 58px;
  background: #c85b24;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(200,91,36,.16);
  color: #fff;
  display: grid;
  place-items: center;
}
.gallery-title {
  background: #f5ead8;
  padding: 28px 16px;
  text-align: center;
}
.gallery-title h2 { margin: 0; }
.services-showcase { padding-top: 24px; }
.service-card {
  border-color: #eee;
  border-radius: 0;
  min-height: 190px;
}
.service-card:hover { transform: none; box-shadow: 0 0 0 2px #c85b24 inset; }
.static-card { color: inherit; }

.footer-cta {
  background:
    linear-gradient(rgba(200,91,36,.88), rgba(200,91,36,.88)),
    repeating-linear-gradient(30deg, rgba(255,255,255,.14) 0 1px, transparent 1px 16px);
  margin: -52px -22px 42px;
  padding: 34px 22px;
  text-align: center;
}
.site-footer .footer-cta h3 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 auto 10px;
  max-width: 780px;
  border-bottom: 0;
}
.site-footer .footer-cta p { color: rgba(255,255,255,.9); margin: 0 auto 18px; max-width: 780px; }
.site-footer {
  background: #fff;
  color: #333;
  padding-top: 52px;
}
.footer-grid { grid-template-columns: 1.1fr .75fr .9fr .9fr .8fr; gap: 28px; }
.site-footer h2,
.site-footer h3 { color: #c85b24; }
.site-footer h3 { border-bottom: 2px solid #c85b24; padding-bottom: 10px; }
.site-footer p,
.site-footer a,
.site-footer li { color: #40515a; font-size: .92rem; }
.footer-phone { color: #c85b24 !important; }
.footer-note { border-top-color: #eee; color: #666; text-align: center; }

/* Premium brand pass: less boxed, more deliberate locksmith identity. */
.site-header {
  border-bottom: 1px solid rgba(16,42,58,.08);
}
.header-inner {
  max-width: 1200px;
  gap: 22px;
}
.brand {
  flex: 0 0 auto;
  min-width: 250px;
  gap: 0;
}
.brand-logo {
  display: block;
  width: 244px;
  height: auto;
}
.site-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  white-space: nowrap;
}
.site-nav a {
  min-height: 86px;
  padding: 0 13px;
  border-bottom: 3px solid transparent;
  font-size: .78rem;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: #c85b24;
}
.header-call {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 22px;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero {
  background:
    linear-gradient(90deg, #fff 0 49%, rgba(255,255,255,.82) 49% 52%, rgba(255,255,255,0) 68%),
    #fff;
}
.hero-copy {
  padding-top: 79px;
}
.hero h1 {
  max-width: 540px;
  margin-bottom: 12px;
}
.hero-actions {
  margin-top: 24px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  width: min(540px, 100%);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(16,42,58,.14);
  color: #4b5a61;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero-meta span {
  position: relative;
  padding: 0 12px;
  white-space: nowrap;
}
.hero-meta span:first-child {
  padding-left: 0;
}
.hero-meta span + span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 26px;
  background: rgba(16,42,58,.18);
  transform: translateY(-50%);
}
.hero-meta strong {
  color: #c85b24;
  font-size: 1.35rem;
  line-height: 1;
  margin-right: 4px;
}
.hero-photo-panel {
  width: min(51.5vw, 760px);
  overflow: visible;
}
.hero-photo-panel > img {
  filter: saturate(.9) contrast(1.04);
}
.hero-photo-panel:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,42,58,0) 60%, rgba(16,42,58,.18)),
    linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,0) 34%);
  pointer-events: none;
}
.hero-review-slots {
  position: absolute;
  z-index: 3;
  left: 232px;
  top: 236px;
  display: grid;
  gap: 18px;
}
.hero-review-slots img {
  width: 218px;
  height: auto;
  display: block;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(16,42,58,.14);
}
.service-strip {
  background: #102a3a;
  border-top: 5px solid #c85b24;
  gap: 0;
  min-height: 64px;
  padding: 0 18px;
}
.service-strip a {
  min-height: 59px;
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,.16);
  letter-spacing: 0;
}
.service-strip a:last-child {
  border-right: 1px solid rgba(255,255,255,.16);
}
.service-strip a:hover,
.service-strip a:focus-visible {
  background: rgba(255,255,255,.08);
}
.who-section,
.what-section {
  background: #fff;
}
.who-section .section-heading,
.what-section .section-heading {
  max-width: 780px;
}
.who-section h2,
.what-section h2,
.gallery-title h2 {
  color: #1f2529;
}
.areas-band {
  background:
    linear-gradient(rgba(16,42,58,.88), rgba(16,42,58,.88)),
    repeating-linear-gradient(32deg, rgba(255,255,255,.11) 0 1px, transparent 1px 15px),
    linear-gradient(135deg, #193e46, #102a3a);
  padding-top: 50px;
  padding-bottom: 54px;
}
.areas-band .area-pills span {
  border: 2px solid rgba(255,255,255,.7);
  min-width: 130px;
  padding: 10px 18px;
  font-size: .88rem;
}
.gallery-band {
  min-height: 390px;
  background:
    linear-gradient(90deg, rgba(16,42,58,.34), rgba(16,42,58,.04)),
    url('/assets/hero-service-photo-placeholder.svg') center right / cover;
}
.play-button {
  background: #102a3a;
  box-shadow: 0 0 0 9px rgba(255,255,255,.22), 0 0 0 15px rgba(16,42,58,.2);
}
.gallery-title {
  background: #f4eee4;
}
.service-grid {
  gap: 0;
  border-top: 1px solid #e4e7e8;
  border-left: 1px solid #e4e7e8;
}
.service-card {
  border: 0;
  border-right: 1px solid #e4e7e8;
  border-bottom: 1px solid #e4e7e8;
  box-shadow: none;
  min-height: 260px;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.service-card:hover,
.service-card:focus-visible {
  box-shadow: inset 0 0 0 2px #c85b24;
  transform: none;
  outline: none;
}
.service-card-visual {
  position: relative;
  width: 100%;
  min-height: 122px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(200,91,36,.18), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #102a3a, #193e46);
}
.service-card-visual:before {
  content: '';
  position: absolute;
  inset: auto 28px 0;
  height: 3px;
  background: #c85b24;
}
.service-card-visual:after {
  content: '';
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.18);
  transform: rotate(45deg);
}
.service-icon-xl {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.07);
  color: #fff;
  transform: rotate(45deg);
}
.service-icon-xl .icon {
  width: 30px;
  height: 30px;
  transform: rotate(-45deg);
  stroke-width: 1.8;
}
.service-card:hover .service-icon-xl,
.service-card:focus-visible .service-icon-xl {
  background: #c85b24;
  border-color: #c85b24;
}
.service-card-body {
  padding: 24px 26px 28px;
}
.service-card .icon {
  color: #c85b24;
  margin-bottom: 14px;
}
.service-card span {
  color: #102a3a;
  font-size: 1.08rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.service-card p {
  color: #59676e;
  font-size: .94rem;
}
.static-card {
  min-height: 220px;
  padding: 30px 28px;
}
.footer-cta {
  background:
    linear-gradient(135deg, rgba(16,42,58,.95), rgba(25,62,70,.94)),
    repeating-linear-gradient(32deg, rgba(255,255,255,.08) 0 1px, transparent 1px 16px);
}
.site-footer h2,
.site-footer h3,
.footer-phone {
  color: #c85b24 !important;
}

/* Quiet professional pass: remove the loud/blocky locksmith-template feel. */
body {
  color: #182833;
  font-family: Inter, Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
}
.site-header {
  box-shadow: 0 1px 0 rgba(16,42,58,.08);
}
.header-inner {
  min-height: 82px;
}
.site-nav a {
  min-height: 82px;
  color: #243540;
  font-size: .88rem;
  font-weight: 700;
  text-transform: none;
}
.header-call {
  min-height: 46px;
  background: #b95429;
  font-size: .92rem;
  font-weight: 800;
  text-transform: none;
}
.hero {
  min-height: 520px;
  background: linear-gradient(90deg, #fff 0 52%, rgba(255,255,255,.9) 52% 56%, rgba(255,255,255,0) 72%);
}
.outline-title {
  color: #6e7b82;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 14px;
  text-shadow: none;
  text-transform: none;
}
.hero h1 {
  color: #172833;
  font-size: clamp(2.25rem, 3.35vw, 3.25rem);
  font-weight: 720;
  line-height: 1.08;
  max-width: 560px;
}
.lead {
  color: #43515a;
  font-size: 1.05rem;
  line-height: 1.62;
  max-width: 55ch;
}
.button.primary,
.button.secondary,
.button.light {
  border-radius: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.button.primary {
  background: #b95429;
}
.button.secondary {
  border-color: #233744;
}
.hero-meta {
  color: #52616a;
  font-size: .72rem;
  font-weight: 750;
  text-transform: none;
}
.hero-meta strong {
  color: #b95429;
}
.hero-photo-panel {
  background: #e7ebe8;
}
.hero-photo-panel:after {
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,0) 32%);
}
.hero-review-slots {
  display: none;
}
.service-strip {
  background: #122d3a;
  border-top: 3px solid #b95429;
  min-height: 58px;
}
.service-strip a {
  min-height: 55px;
  font-size: .9rem;
  font-weight: 720;
  text-transform: none;
}
.service-strip .icon {
  opacity: .78;
}
.who-section,
.what-section {
  padding-top: 56px;
  padding-bottom: 58px;
}
.who-section h2,
.what-section h2,
.gallery-title h2 {
  color: #172833;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 760;
  text-transform: none;
}
.who-section h3 {
  color: #b95429;
  font-weight: 760;
  text-transform: none;
}
.areas-band {
  background: linear-gradient(135deg, #122d3a, #1f4650);
}
.areas-band h2 {
  font-weight: 760;
  text-transform: none;
}
.areas-band .area-pills span {
  border-width: 1px;
  font-weight: 650;
}
.gallery-band,
.gallery-title {
  display: none;
}
.services-showcase {
  padding-top: 38px;
}
.service-grid {
  border: 1px solid #e5e9ea;
  border-bottom: 0;
  border-right: 0;
}
.service-card {
  min-height: 230px;
  background: #fff;
}
.service-card-visual {
  min-height: 82px;
  background: #f4f6f5;
  border-bottom: 1px solid #e5e9ea;
}
.service-card-visual:before {
  inset: auto 26px 0;
  height: 2px;
  background: #b95429;
}
.service-card-visual:after {
  display: none;
}
.service-icon-xl {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #b95429;
  transform: none;
}
.service-icon-xl .icon {
  width: 30px;
  height: 30px;
  transform: none;
  stroke-width: 1.7;
}
.service-card:hover .service-icon-xl,
.service-card:focus-visible .service-icon-xl {
  background: transparent;
  border-color: transparent;
}
.service-card:hover,
.service-card:focus-visible {
  box-shadow: inset 0 0 0 1px #b95429;
}
.service-card-body {
  padding: 24px 28px 30px;
}
.service-card-body > .icon {
  display: none;
}
.service-card span {
  color: #172833;
  font-size: 1rem;
  font-weight: 760;
  text-transform: none;
}
.service-card p {
  color: #596872;
  font-size: .95rem;
  line-height: 1.58;
}
.footer-cta {
  background: linear-gradient(135deg, #122d3a, #214953);
}
.site-footer h2,
.site-footer h3,
.footer-phone {
  color: #b95429 !important;
}

@media (max-width: 1100px) {
  .brand { min-width: 222px; }
  .brand-logo { width: 218px; }
  .site-nav a { font-size: .7rem; padding: 0 8px; }
  .header-inner { gap: 14px; }
  .hero-copy {
    width: min(466px, calc(100vw - 48px));
    padding-top: 88px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .lead {
    max-width: 52ch;
  }
  .hero-photo-panel {
    width: 50vw;
  }
  .hero-review-slots {
    left: 146px;
    top: 250px;
  }
  .hero-review-slots img {
    width: 178px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }
  .hero-meta span {
    padding: 5px 0;
    white-space: normal;
  }
  .hero-meta span + span:before {
    display: none;
  }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 960px) {
  .top-line { display: none; }
  .service-strip { align-items: stretch; flex-direction: column; gap: 0; padding: 0; }
  .service-strip a {
    justify-content: center;
    padding: 11px 14px;
    border-top: 1px solid rgba(255,255,255,.25);
  }
  .hero {
    min-height: auto;
    padding: 24px 16px 34px;
    text-align: center;
  }
  .hero-copy {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
  .hero-actions { justify-content: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-meta {
    justify-content: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-photo-panel {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 26px;
    min-height: 390px;
  }
.hero-photo-panel > img { height: 390px; object-position: center right; }
  .hero-review-slots {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 12px auto 0;
    width: min(420px, 100%);
  }
  .hero-review-slots img {
    width: 100%;
  }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .brand { min-width: 190px; }
  .brand-logo { width: 190px; }
  .hero h1 { font-size: 2.25rem; }
  .outline-title { font-size: 1.45rem; }
  .reference-hero { min-height: 300px; }
  .van-scene { height: 260px; }
  .van { width: 330px; height: 145px; padding: 42px 18px 18px; }
  .van strong { font-size: 1.35rem; }
  .van em { font-size: .9rem; }
  .review-card { left: 8px; padding: 9px 12px; }
  .service-note { left: 18px; }
  .hero-photo-panel { min-height: 310px; }
  .hero-photo-panel > img { height: 310px; }
  .hero-meta span {
    white-space: normal;
    padding: 6px 0;
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .hero-meta span + span:before {
    display: none;
  }
  .gallery-band { min-height: 260px; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

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