/* =========================================================
   Lock & key Locksmith Services inc
   Shared stylesheet
   ========================================================= */

:root {
  --red: #D7282F;
  --red-600: #B81F25;
  --red-tint: #FEE6E7;
  --red-glow: rgba(215, 40, 47, 0.35);
  --black: #0A0A0A;
  --ink: #141414;
  --paper: #F7F7F5;
  --paper-2: #EFEEEA;
  --white: #FFFFFF;
  --muted-dark: #A1A1A1;
  --muted-light: #6B6B6B;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: #E5E5E2;

  --font-sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Utility */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }
.red { color: var(--red); }
.eyebrow {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--red);
  display: inline-block;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid var(--border-dark);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px; height: 38px;
}
.brand__wordmark {
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand__wordmark .line1 {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.brand__wordmark .line1 .amp { color: var(--red); }
.brand__wordmark .line1 .cee { color: var(--red); font-size: 9px; vertical-align: super; }
.brand__wordmark .line2 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted-dark);
  margin-top: 4px;
}

/* Real-logo img (replaces inline SVG+wordmark) */
.brand__logo {
  display: block;
  height: 48px;
  width: auto;
  max-height: 100%;
}
.brand__logo--footer { height: 40px; }
@media (max-width: 720px) {
  .brand__logo { height: 40px; }
  .brand__logo--footer { height: 36px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  position: relative;
  transition: opacity 0.15s;
}
.nav a:hover { opacity: 1; }
.nav .has-menu { position: relative; }
.nav .has-menu > button {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: none;
  border: none;
  padding: 0;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav .has-menu > button:hover { opacity: 1; }
.nav .has-menu > button::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s;
}
.nav .menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--black);
  border: 1px solid var(--border-dark);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.nav .has-menu:hover .menu,
.nav .has-menu:focus-within .menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav .menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  opacity: 0.85;
}
.nav .menu a:hover { opacity: 1; background: rgba(255,255,255,0.04); }

.call-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background 0.15s;
}
.call-cta:hover { background: var(--red-600); }
.call-cta__icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.call-cta__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-right: 4px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-dark);
  color: var(--white);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.mobile-toggle__bars {
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-toggle__bars span {
  width: 18px; height: 2px; background: var(--white); display: block;
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .call-cta__label { display: none; }
  .call-cta { margin-left: auto; }
  .mobile-toggle { display: inline-flex; margin-left: 0; }
}
@media (max-width: 720px) {
  .site-header__inner { gap: 16px; }
  .brand__wordmark .line2 { display: none; }
  .call-cta { padding: 10px 14px; font-size: 13px; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 50;
  background: var(--black);
  color: var(--white);
  padding: 32px var(--pad-x);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav .section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 24px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(215, 40, 47,0.12), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  align-items: end;
}
.hero__eyebrow {
  margin-bottom: 24px;
}
.hero__headline {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__headline .red { color: var(--red); }
.hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover { background: var(--red-600); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost:hover { border-color: var(--white); }
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-dark:hover { background: var(--black); color: var(--white); }
.btn .mono { font-family: var(--font-mono); font-weight: 600; }

.hero__sidecard {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero__sidecard h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 16px;
}
.hero__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  font-size: 14px;
}
.hero__hours dt {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
}
.hero__hours dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}
.hero__hours dd.closed { color: var(--red); }
.hero__sidecard .note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__sidecard { max-width: 460px; }
}

/* Hero corner stamp */
.hero__stamp {
  position: absolute;
  right: var(--pad-x);
  top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.5;
}
.hero__stamp strong { color: var(--white); font-weight: 600; display: block; }
@media (max-width: 720px) { .hero__stamp { display: none; } }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--border-dark);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.trust__item {
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--border-dark);
}
.trust__item:last-child { border-right: none; }
.trust__item:nth-child(n+2) { padding-left: 28px; }
.trust__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-dark);
  color: var(--red);
  flex-shrink: 0;
}
.trust__icon svg { width: 18px; height: 18px; }
.trust__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.trust__value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.stars {
  color: var(--red);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid var(--border-dark); }
}
@media (max-width: 520px) {
  .trust__row { grid-template-columns: 1fr; }
  .trust__item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .trust__item:last-child { border-bottom: none; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: clamp(72px, 9vw, 128px) 0;
}
.section--dark { background: var(--black); color: var(--white); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.section__head h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.section__head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted-light);
  margin: 0;
  max-width: 560px;
}
.section--dark .section__head p { color: rgba(255,255,255,0.7); }
@media (max-width: 800px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.section--dark .services { background: var(--border-dark); border-color: var(--border-dark); }

.service {
  position: relative;
  background: var(--white);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.section--dark .service { background: var(--black); }
.section--paper .service { background: var(--paper); }
.service__num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-light);
  letter-spacing: 0.08em;
}
.section--dark .service__num { color: var(--muted-dark); }
.service__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.service p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted-light);
}
.section--dark .service p { color: rgba(255,255,255,0.65); }

.service--specialty {
  background: var(--black) !important;
  color: var(--white);
  grid-column: span 1;
}
.service--specialty p { color: rgba(255,255,255,0.75); }
.service--specialty .service__num { color: rgba(255,255,255,0.5); }
.service--specialty .specialty-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 9px;
}
.service--specialty .service__icon { color: var(--red); }
.service--specialty h3 { padding-top: 12px; }

@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

/* =========================================================
   WHY US — STATS
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}
.stat {
  background: var(--black);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.stat__big {
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--red);
}
.stat__big sup { font-size: 0.4em; vertical-align: top; color: var(--red); top: 0.4em; position: relative; }
.stat h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--white);
}
.stat p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.stat__label {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section--dark .review {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-dark);
}
.review__stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 0.1em;
}
.review__body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex-grow: 1;
}
.section--dark .review__body { color: rgba(255,255,255,0.85); }
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.section--dark .review__author { border-color: var(--border-dark); }
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.review__name {
  font-weight: 600;
  font-size: 14px;
}
.review__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}
.section--dark .review__meta { color: var(--muted-dark); }

.reviews-cta {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  gap: 24px;
  flex-wrap: wrap;
}
.section--dark .reviews-cta { border-color: var(--border-dark); }
.reviews-cta__count {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted-light);
}
.section--dark .reviews-cta__count { color: var(--muted-dark); }

@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: grid;
  grid-template-columns: 1fr;
}
.faq__item {
  border-top: 1px solid var(--border-light);
}
.faq__item:last-child { border-bottom: 1px solid var(--border-light); }
.section--dark .faq__item { border-color: var(--border-dark); }
.faq__item:last-child.section--dark { border-bottom-color: var(--border-dark); }

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: inherit;
  cursor: pointer;
}
.faq__q:hover { color: var(--red); }
.faq__plus {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--red);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__plus::before { width: 14px; height: 2px; }
.faq__plus::after { width: 2px; height: 14px; transition: transform 0.2s; }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__a {
  padding: 0 0 28px;
  max-width: 880px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-light);
}
.section--dark .faq__a { color: rgba(255,255,255,0.7); }

/* =========================================================
   LOCAL CONTENT (city pages)
   ========================================================= */
.local {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.local__copy h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 16px 0 28px;
  text-wrap: balance;
}
.local__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-light);
  margin: 0 0 22px;
}
.local__card {
  background: var(--black);
  color: var(--white);
  padding: 36px;
}
.local__card h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 24px;
}
.local__hoods {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.local__hoods li {
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  font-weight: 500;
}
.local__hoods li::before {
  content: "→";
  color: var(--red);
  margin-right: 10px;
  font-weight: 700;
}
.local__zip {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.local__zip strong { color: var(--white); display: block; margin-bottom: 6px; font-size: 11px; letter-spacing: 0.14em; }
@media (max-width: 900px) { .local { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--border-dark);
}
.contact__left {
  padding: 56px;
}
.contact__right {
  padding: 56px;
  background: var(--ink);
  border-left: 1px solid var(--border-dark);
}
.contact h2 {
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 16px 0 32px;
}
.contact-list {
  display: flex; flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-dark);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding-top: 4px;
}
.contact-item__value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
}
.contact-item__value a:hover { color: var(--red); }
.contact-item__sub {
  font-size: 14px;
  color: var(--muted-dark);
  margin-top: 6px;
}

.hours-block {
  font-family: var(--font-mono);
}
.hours-block h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 24px;
}
.hours-block dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
  font-size: 15px;
}
.hours-block dt { color: rgba(255,255,255,0.7); }
.hours-block dd { margin: 0; text-align: right; font-weight: 600; color: var(--white); }
.hours-block dd.closed { color: var(--red); }
.hours-block .note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border-dark);
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact__right { border-left: none; border-top: 1px solid var(--border-dark); }
  .contact__left, .contact__right { padding: 40px 28px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 32px;
  border-top: 1px solid var(--border-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 360px;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.footer__badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 20px;
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--white); }
.footer__col a.current { color: var(--red); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-dark);
  letter-spacing: 0.02em;
}
.footer__bottom a:hover { color: var(--white); }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   FLOATING MOBILE CALL
   ========================================================= */
.float-call {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: var(--red);
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(215, 40, 47,0.45);
  animation: pulse 2.4s ease-in-out infinite;
}
.float-call svg { width: 24px; height: 24px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(215, 40, 47,0.45), 0 0 0 0 rgba(215, 40, 47,0.6); }
  50% { box-shadow: 0 12px 28px rgba(215, 40, 47,0.45), 0 0 0 14px rgba(215, 40, 47,0); }
}
@media (max-width: 1024px) {
  .float-call { display: flex; }
}

/* =========================================================
   ANNOUNCEMENT (top bar — optional)
   ========================================================= */
.announce {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 0;
}
.announce__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.announce__inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   COMMERCIAL FEATURE (homepage)
   ========================================================= */
.commercial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--border-dark);
}
.commercial__copy { padding: 64px 56px; }
.commercial__visual {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(215, 40, 47,0.06) 0px, rgba(215, 40, 47,0.06) 1px,
      transparent 1px, transparent 12px
    ),
    radial-gradient(circle at 50% 50%, rgba(215, 40, 47,0.15), transparent 70%),
    var(--ink);
  position: relative;
  border-left: 1px solid var(--border-dark);
  min-height: 480px;
  overflow: hidden;
}
.commercial__visual::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid var(--border-dark);
}
.commercial__visual-stamp {
  position: absolute;
  top: 48px; left: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.commercial__visual-key {
  position: absolute;
  bottom: 48px; left: 48px; right: 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
}
.commercial__visual-key span:first-child { color: var(--red); font-weight: 600; }
.commercial__big-lock {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  opacity: 0.7;
}

.commercial__copy h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 18px 0 24px;
}
.commercial__copy p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}
.commercial__list {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.commercial__list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border-dark);
  font-size: 15px;
  font-weight: 500;
}
.commercial__list li:last-child { border-bottom: 1px solid var(--border-dark); }
.commercial__list li span:first-child {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 13px;
  min-width: 32px;
}
@media (max-width: 900px) {
  .commercial { grid-template-columns: 1fr; }
  .commercial__visual { border-left: none; border-top: 1px solid var(--border-dark); min-height: 320px; }
  .commercial__copy { padding: 40px 28px; }
}

/* =========================================================
   POLISH — animations, micro-interactions, accents
   ========================================================= */

/* --- Hero ghost padlock (big decorative SVG on the right) --- */
.hero { position: relative; }
.hero__grid { position: relative; z-index: 2; }
.hero__ghost {
  position: absolute;
  right: -180px;
  top: 50%;
  width: 720px;
  height: 720px;
  transform: translateY(-50%);
  opacity: 0.055;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(215, 40, 47,0.4));
}
@media (prefers-reduced-motion: no-preference) {
  .hero__ghost {
    animation: ghost-breath 7s ease-in-out infinite;
  }
}
@keyframes ghost-breath {
  0%, 100% { opacity: 0.055; transform: translateY(-50%) scale(1); }
  50%      { opacity: 0.082; transform: translateY(-50%) scale(1.025); }
}
@media (max-width: 900px) {
  .hero__ghost { display: none; }
}

/* --- Hero headline polish: tighter, soft red halo --- */
.hero__headline {
  letter-spacing: -0.035em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 0 80px rgba(215, 40, 47, 0.10);
}

/* --- Subtle red tick mark between sections --- */
.section { position: relative; }
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--pad-x);
  width: 36px;
  height: 2px;
  background: var(--red);
}
.section--dark::before { background: var(--red); }
.contact { position: relative; }

/* --- Reveal animations (Intersection Observer triggers .is-in) --- */
@media (prefers-reduced-motion: no-preference) {
  [data-anim] {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.75s cubic-bezier(0.22, 0.7, 0.2, 1),
      transform 0.75s cubic-bezier(0.22, 0.7, 0.2, 1);
    will-change: opacity, transform;
  }
  [data-anim].is-in {
    opacity: 1;
    transform: none;
  }
  /* staggered children: services / stats / reviews grids */
  [data-anim-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.6s cubic-bezier(0.22, 0.7, 0.2, 1),
      transform 0.6s cubic-bezier(0.22, 0.7, 0.2, 1);
  }
  [data-anim-stagger].is-in > * {
    opacity: 1;
    transform: none;
  }
  [data-anim-stagger].is-in > *:nth-child(1) { transition-delay: 0.00s; }
  [data-anim-stagger].is-in > *:nth-child(2) { transition-delay: 0.07s; }
  [data-anim-stagger].is-in > *:nth-child(3) { transition-delay: 0.14s; }
  [data-anim-stagger].is-in > *:nth-child(4) { transition-delay: 0.21s; }
  [data-anim-stagger].is-in > *:nth-child(5) { transition-delay: 0.28s; }
  [data-anim-stagger].is-in > *:nth-child(6) { transition-delay: 0.35s; }
}

/* --- Button micro-interactions --- */
.btn {
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 0.7, 0.2, 1),
    box-shadow 0.22s cubic-bezier(0.22, 0.7, 0.2, 1);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
}
.btn:active { transform: translateY(0) scale(0.99); }
.btn--red:hover { box-shadow: 0 14px 34px rgba(215, 40, 47, 0.38); }
.btn--ghost:hover { box-shadow: 0 12px 28px rgba(215, 40, 47, 0.18); }

/* --- Header phone CTA: subtle breathing while idle --- */
.call-cta { position: relative; transition: background 0.18s, box-shadow 0.18s, transform 0.18s; }
@media (prefers-reduced-motion: no-preference) {
  .call-cta { animation: cta-breath 2.4s ease-in-out infinite; }
}
@keyframes cta-breath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 40, 47, 0.0); }
  50%      { box-shadow: 0 0 0 10px rgba(215, 40, 47, 0.12); }
}
.call-cta:hover {
  animation: none;
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(215, 40, 47, 0.4);
}

/* --- Service cards: lift + red border --- */
.service {
  transition:
    transform 0.28s cubic-bezier(0.22, 0.7, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.22, 0.7, 0.2, 1),
    border-color 0.2s ease;
  border: 1px solid transparent;
  outline: none;
}
.service:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
  border-color: var(--red);
}
.section--dark .service:hover {
  box-shadow: 0 22px 48px rgba(215, 40, 47, 0.18);
}
.service--specialty:hover {
  box-shadow: 0 22px 48px rgba(215, 40, 47, 0.32) !important;
}
.service__icon { transition: transform 0.3s cubic-bezier(0.22, 0.7, 0.2, 1); }
.service:hover .service__icon { transform: translateY(-2px) scale(1.05); }

/* --- Review cards --- */
.review {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.review:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

/* --- Stat hover --- */
.stat { transition: background 0.2s; }
.stat:hover { background: var(--ink); }

/* --- FAQ subtle hover --- */
.faq__q { transition: color 0.18s, padding-left 0.18s; }
.faq__q:hover { padding-left: 6px; }

/* --- Number count-up styling --- */
.num-count { font-variant-numeric: tabular-nums; display: inline-block; }

/* --- Floating call button: more presence --- */
.float-call {
  transition: transform 0.2s ease;
}
.float-call:hover { transform: scale(1.06); }
.float-call:active { transform: scale(0.96); }

/* =========================================================
   404 PAGE
   ========================================================= */
.notfound {
  background: var(--black);
  color: var(--white);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0;
}
.notfound::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 80% 30%, rgba(215, 40, 47, 0.12), transparent 60%);
  pointer-events: none;
}
.notfound__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.notfound__code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.notfound__code::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.notfound__h1 {
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  text-wrap: balance;
  text-shadow: 0 0 80px rgba(215, 40, 47, 0.1);
}
.notfound__h1 .red { color: var(--red); }
.notfound__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin: 0 0 40px;
}
.notfound__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.notfound__big {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: clamp(180px, 28vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  opacity: 0.5;
  user-select: none;
  text-align: right;
  margin: 0;
}
.notfound__big-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  text-align: right;
  margin-top: 12px;
}
.notfound__ghost {
  position: absolute;
  right: -240px;
  top: 50%;
  transform: translateY(-50%);
  width: 820px; height: 820px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px) {
  .notfound__inner { grid-template-columns: 1fr; gap: 24px; }
  .notfound__big-wrap { display: none; }
}

/* =========================================================
   PHOTOS
   ========================================================= */

/* --- Hero photo (replaces ghost padlock on home + Brisbane) --- */
.hero--photo .hero__ghost { display: none; }
.hero__photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  max-width: 920px;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}
.hero__photo-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  max-width: 920px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--black) 0%,
    rgba(10, 10, 10, 0.94) 24%,
    rgba(10, 10, 10, 0.55) 56%,
    rgba(10, 10, 10, 0.18) 100%
  );
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero__photo, .hero__photo-overlay { display: none; }
}

/* --- Service card photo (top banner) --- */
.service { padding: 0 !important; min-height: 0; }
.service__media {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  margin: 0;
}
.service__media img,
.service__media svg.service__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.7, 0.2, 1),
              filter 0.3s ease;
  filter: brightness(0.92) saturate(0.95);
}
.service:hover .service__media img,
.service:hover .service__media svg.service__art {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}
.service__body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}
.service__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__num {
  top: auto;
  bottom: 16px;
  right: 18px;
  background: rgba(10,10,10, 0.6);
  color: #fff !important;
  padding: 4px 8px;
  z-index: 3;
  text-shadow: none;
  backdrop-filter: blur(4px);
}
.service--specialty .specialty-tag {
  top: 16px;
  left: 16px;
  z-index: 3;
}
.service--specialty h3 { padding-top: 0; }
@media (max-width: 900px) {
  .service__media { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .service__media { aspect-ratio: 16 / 9; max-height: 200px; }
}

/* --- Commercial section: photo variant of the visual panel --- */
.commercial__visual--photo {
  padding: 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.commercial__visual--photo::after { display: none; }
.commercial__visual--photo .commercial__big-lock { display: none; }
.commercial__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.commercial__visual--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.35) 0%,
    rgba(10, 10, 10, 0.80) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.commercial__visual--photo .commercial__visual-stamp,
.commercial__visual--photo .commercial__visual-key {
  z-index: 2;
  position: relative;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

/* =========================================================
   EMERGENCY SECTION
   ========================================================= */
.emergency { padding: clamp(72px, 9vw, 128px) 0; }
.emergency__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: center;
}
.emergency__copy h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
  text-wrap: balance;
}
.emergency__intro {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
  max-width: 560px;
  line-height: 1.55;
}
.emergency__steps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.emergency__steps > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--border-dark);
}
.emergency__steps > li:last-child { border-bottom: 1px solid var(--border-dark); }
.emergency__step-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.emergency__steps h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
}
.emergency__steps h4 a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.emergency__steps h4 a:hover { color: #fff; }
.emergency__steps p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.emergency__note {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  padding: 18px 22px;
  border-left: 2px solid var(--red);
  background: rgba(215, 40, 47, 0.07);
  margin: 0;
  max-width: 560px;
}
.emergency__note strong { color: #fff; font-weight: 700; }

.emergency__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.emergency__visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}
@media (max-width: 900px) {
  .emergency__grid { grid-template-columns: 1fr; gap: 40px; }
  .emergency__visual { order: -1; max-width: 320px; margin: 0 auto; }
}

/* --- Service card bullet list (used by Emergency Lockouts card) --- */
.service__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  line-height: 1.5;
}
.service__body ul li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-light);
}
.section--dark .service__body ul li { color: rgba(255,255,255,0.7); }
.service__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: var(--red);
}
.service__body ul li strong {
  color: var(--ink);
  font-weight: 600;
}
.section--dark .service__body ul li strong { color: #fff; }

/* --- Announce hint --- */
.announce__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.announce__hint {
  opacity: 0.78;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
}
@media (max-width: 720px) { .announce__hint { display: none; } }

/* --- Hero urgent sub-CTA --- */
.hero__urgent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  margin: -8px 0 28px;
  padding: 8px 0 8px 14px;
  border-left: 2px solid var(--red);
  transition: color 0.15s, padding-left 0.18s, transform 0.18s;
  cursor: pointer;
}
.hero__urgent::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__urgent::before {
    animation: hero-urgent-pulse 1.6s ease-in-out infinite;
  }
}
@keyframes hero-urgent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 40, 47, 0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(215, 40, 47, 0); }
}
.hero__urgent .arrow {
  font-weight: 600;
  transition: transform 0.18s;
}
.hero__urgent:hover {
  color: #fff;
  padding-left: 18px;
}
.hero__urgent:hover .arrow { transform: translateX(3px); }

/* =========================================================
   SERVICE PAGES — body typography (within .local__copy)
   ========================================================= */
.local__copy h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
  color: var(--ink);
  line-height: 1.2;
}
.local__copy h3:first-of-type { margin-top: 0; }
.section--dark .local__copy h3 { color: #fff; }
.local__copy ul:not(.local__hoods) {
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.local__copy ul:not(.local__hoods) li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted-light);
}
.local__copy ul:not(.local__hoods) li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--red);
  font-weight: 700;
}
.local__copy ul:not(.local__hoods) li strong { color: var(--ink); font-weight: 600; }
.section--dark .local__copy ul:not(.local__hoods) li { color: rgba(255,255,255,0.72); }
.section--dark .local__copy ul:not(.local__hoods) li strong { color: #fff; }

/* =========================================================
   MASTER KEY HIERARCHY DIAGRAM (master-key-systems page)
   ========================================================= */
.mk-diagram {
  background: var(--black);
  color: #fff;
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.mk-diagram::after {
  content: "FIG. 01 — MASTER KEY HIERARCHY";
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.mk-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin: 24px 0 0;
}
.mk-level {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
.mk-node {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.mk-node:hover { border-color: var(--red); background: rgba(215,40,47,0.06); }
.mk-node--grand { background: var(--red); border-color: var(--red); }
.mk-node--grand:hover { background: var(--red-600); }
.mk-node__code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 600;
}
.mk-node--grand .mk-node__code { color: rgba(255,255,255,0.8); }
.mk-node__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mk-node__hint {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.mk-node--grand .mk-node__hint { color: rgba(255,255,255,0.85); }
.mk-level--ck .mk-node {
  min-width: 70px;
  padding: 14px 18px;
  align-items: center;
}
.mk-level--ck .mk-node__label { font-size: 13px; }
.mk-line {
  width: 1px;
  height: 28px;
  background: var(--border-dark);
}
.mk-legend {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  font-size: 14px;
}
.mk-legend dt {
  font-family: var(--font-mono);
  color: var(--red);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.mk-legend dd { margin: 0; color: rgba(255,255,255,0.72); line-height: 1.5; }
@media (max-width: 720px) {
  .mk-level--mk { gap: 12px; }
  .mk-level--ck { gap: 8px; }
  .mk-level--ck .mk-node { min-width: 56px; padding: 10px 12px; }
  .mk-legend { grid-template-columns: 1fr; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .site-header, .float-call, .announce, .hero__ghost, .hero__photo, .hero__photo-overlay { display: none !important; }
  [data-ani