/* =====================================================================
   LOCKSMITH SANTA CLARA — Silicon Valley Tech Hub Theme 2026
   Palette: Deep Navy #0f1f3d + Electric Cyan #00b4d8 + Silver #e8edf2
   Font: Inter (self-hosted woff2)
   ===================================================================== */

/* === SELF-HOSTED FONTS ============================================== */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* === DESIGN TOKENS ================================================== */
:root {
  --navy:         #0f1f3d;
  --navy-mid:     #162d5a;
  --navy-light:   #1e3d7a;
  --cyan:         #00b4d8;
  --cyan-dark:    #0096b8;
  --cyan-light:   #4dd0e8;
  --silver:       #e8edf2;
  --silver-dark:  #d0d8e2;
  --white:        #ffffff;
  --dark:         #090f1e;
  --dark-2:       #111827;
  --dark-3:       #1c2840;
  --text:         #1a2438;
  --text-mid:     #3d4e68;
  --text-muted:   #6b7a94;
  --text-light:   #d0dce8;
  --text-dim:     #8a9bb0;
  --border:       #d4dce8;
  --border-dark:  #243050;
  --cta:          #00b4d8;
  --cta-hover:    #0096b8;
  --red-flag:     #e63946;

  --font-head:    'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow:       0 2px 12px rgba(0,0,0,.10);
  --shadow-md:    0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.18);
  --ease:         cubic-bezier(.22,.61,.36,1);
  --section-pad:  80px 0;
}

/* === RESET ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy-mid); text-decoration: none; }
a:hover { color: var(--cyan-dark); }
ul, ol { padding-left: 1.4em; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--dark);
}

/* === LAYOUT ========================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section { padding: var(--section-pad); }
.section--dark  { background: var(--dark-2); }
.section--dark2 { background: var(--dark-3); }
.section--navy  { background: var(--navy); }
.section--silver { background: var(--silver); }
.section--white  { background: var(--white); }

/* Dark section overrides */
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--dark2 h1, .section--dark2 h2, .section--dark2 h3, .section--dark2 h4,
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.section--dark p, .section--dark li, .section--dark span,
.section--dark2 p, .section--dark2 li, .section--dark2 span,
.section--navy p, .section--navy li, .section--navy span { color: var(--text-light); }

.section--dark a:not(.btn):not(.btn-cta),
.section--dark2 a:not(.btn):not(.btn-cta),
.section--navy a:not(.btn):not(.btn-cta) { color: var(--cyan-light); }

/* === TYPOGRAPHY ===================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 12px;
}
.section-label--light { color: var(--cyan-light); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-lead--center { text-align: center; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* === BUTTONS ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary {
  background: var(--cta);
  color: var(--dark);
  border-color: var(--cta);
}
.btn-primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: var(--dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-secondary:hover { background: var(--cyan); color: var(--dark); }

/* === HEADER ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo-icon {
  width: 36px; height: 36px;
  background: var(--cyan);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.site-header__logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.site-header__logo-text span {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: .04em;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header__nav a {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
}
.site-header__nav a:hover,
.site-header__nav a.active { color: var(--cyan); background: rgba(0,180,216,.1); }
.site-header__cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-3);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-dark);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
}
.mobile-nav a:hover { background: rgba(0,180,216,.1); color: var(--cyan); }

/* === HERO =========================================================== */
.home-hero {
  position: relative;
  min-height: clamp(480px, 60vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9,15,30,.88) 0%,
    rgba(9,15,30,.80) 35%,
    rgba(9,15,30,.45) 65%,
    rgba(9,15,30,.10) 100%
  );
  z-index: 1;
}
.home-hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.home-hero__content { max-width: 600px; }
.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.home-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.home-hero__lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.home-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.home-hero__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 100px;
}

/* === PAGE HERO ====================================================== */
.page-hero {
  position: relative;
  min-height: clamp(260px, 36vh, 400px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,15,30,.3) 0%, rgba(9,15,30,.82) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 48px; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--cyan); text-decoration: none; }
.page-hero__breadcrumb span { color: var(--text-dim); }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero__lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
}

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: .02em;
}
.trust-chip__icon {
  width: 30px; height: 30px;
  background: rgba(0,180,216,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

/* === SERVICE CARDS ================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--silver);
}
.svc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.svc-card:hover .svc-card__media img { transform: scale(1.04); }
.svc-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cyan);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-card__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__body h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.svc-card__body p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.svc-card__body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.svc-card__body ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.svc-card__body ul li:last-child { border-bottom: none; }
.svc-card__more {
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 700;
  color: var(--cyan-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

/* === FEATURE ROW ==================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--silver);
}
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__content {}
.feature-row__content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-row__content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: .95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li strong { color: var(--dark); }
.feature-list__icon {
  width: 22px; height: 22px;
  background: rgba(0,180,216,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === MINI CARDS GRID ================================================ */
.mini-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mini-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,180,216,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-dark);
  margin: 0 auto 14px;
}
.mini-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.mini-card p { font-size: .87rem; color: var(--text-mid); line-height: 1.55; }

/* === COST TABLE ===================================================== */
.cost-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.cost-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.cost-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--silver); }
.cost-table td:first-child { font-weight: 700; color: var(--dark); }
.cost-highlight { color: var(--cyan-dark); font-weight: 700; }

/* === STEPS ========================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-card__num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }

/* === GALLERY GRID =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--silver);
}
.gallery-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery-grid__item:hover img { transform: scale(1.05); }

/* === REVIEWS ======================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: box-shadow .3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.review-card__stars svg { color: #f5a623; }
.review-card__body {
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--silver);
}
.review-card__name {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}
.review-card__meta {
  font-size: .78rem;
  color: var(--text-muted);
}

/* === NEIGHBORHOODS ================================================== */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.neighborhood-pill {
  background: var(--silver);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-mid);
  transition: all .2s;
}
.neighborhood-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.neighborhood-pill__dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === FAQ ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.faq-item__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '';
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2300b4d8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform .25s;
}
details[open] .faq-item__q::after { transform: rotate(180deg); }
.faq-item__a {
  padding: 0 22px 18px;
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item__a p { margin-bottom: 10px; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* === CTA BAND ======================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.cta-band p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === DIRECT ANSWER CARD ============================================ */
.direct-answer {
  background: var(--silver);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.direct-answer p { font-size: 1rem; color: var(--text-mid); margin: 0; line-height: 1.65; }
.direct-answer strong { color: var(--dark); }

/* === FLAG LIST ====================================================== */
.flag-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flag-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  background: rgba(230,57,70,.06);
  border: 1px solid rgba(230,57,70,.15);
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--text-mid);
}
.flag-list li svg { color: var(--red-flag); flex-shrink: 0; margin-top: 2px; }

/* === COMPARISON TABLE ============================================== */
.compare-table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--silver); }
.compare-check { color: #22c55e; }
.compare-cross { color: var(--red-flag); }

/* === SCORECARD ====================================================== */
.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scorecard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.scorecard__score {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cyan-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.scorecard__label {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* === METHODOLOGY BAND ============================================== */
.methodology-band {
  background: var(--silver);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.methodology-band p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 720px;
}

/* === RELATED STRIP ================================================== */
.related-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: all .2s;
}
.related-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); }
.related-card h4 {
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.related-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.55; }

/* === FOOTER ========================================================= */
.site-footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand__logo-icon {
  width: 34px; height: 34px;
  background: var(--cyan);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-brand__logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand p {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-brand__designed { font-size: .82rem; }
.footer-brand__designed a { color: var(--cyan-light); }
.footer-declaration {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(0,180,216,.06);
  border: 1px solid rgba(0,180,216,.15);
  border-radius: var(--radius);
}
.footer-declaration h3 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.footer-declaration p {
  font-size: .84rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
}
.footer-col h3 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li {
  font-size: .9rem;
  color: var(--text-dim);
}
.footer-col ul li a {
  color: var(--text-dim);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-hours { margin-top: 20px; }
.footer-hours h3 {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-hours ul { list-style: none; padding: 0; }
.footer-hours ul li { font-size: .88rem; color: var(--text-dim); padding: 3px 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: var(--text-dim); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .82rem;
  color: var(--text-dim);
  transition: color .2s;
  text-decoration: none;
}
.footer-legal a:hover { color: var(--cyan); }

/* === PROSE / ARTICLE CONTENT ======================================= */
.prose h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin: 32px 0 14px; color: var(--dark); }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; color: var(--dark); }
.prose p { margin-bottom: 16px; color: var(--text-mid); line-height: 1.75; }
.prose ul, .prose ol { margin-bottom: 18px; color: var(--text-mid); }
.prose li { margin-bottom: 6px; line-height: 1.7; }
.prose a { color: var(--cyan-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--navy); }
.prose strong { color: var(--dark); }

/* === TOC ============================================================ */
.toc-box {
  background: var(--silver);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 32px;
}
.toc-box h3 {
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.toc-box ol {
  padding-left: 1.3em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc-box ol li a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-mid);
  text-decoration: none;
}
.toc-box ol li a:hover { color: var(--cyan-dark); }

/* === FADE UP ANIMATION ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .scorecard-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { gap: 40px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  .site-header__nav { display: none; }
  .site-header__cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .home-hero { min-height: 520px; }
  .home-hero__overlay { background: rgba(9,15,30,.80); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .mini-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .scorecard-grid { grid-template-columns: 1fr; }
  .related-strip { grid-template-columns: 1fr; }
  .trust-strip__inner { gap: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .home-hero h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .mini-cards-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .home-hero__ctas { flex-direction: column; }
}

/* === ENHANCED REVIEW CARDS v2 (May 2026) =========================== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.review-card__stars { color: #FFC107; font-size: 1.3rem; letter-spacing: 3px; line-height: 1; }
.review-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 4px 11px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .04em; white-space: nowrap;
}
.review-card__quote {
  color: rgba(255,255,255,.9);
  font-size: 1rem; line-height: 1.72; font-style: italic; flex: 1;
  margin-bottom: 24px;
  border-left: 3px solid var(--copper-light,#d4964d);
  padding-left: 18px;
}
.review-card__author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
}
.review-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--copper-light,#d4964d);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  background: rgba(255,255,255,.1);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white,#fff); line-height: 1.2; }
.review-card__meta, .review-card__location { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 3px; }

/* === MAP + NEIGHBORHOODS LAYOUT ==================================== */
.areas-map-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start; margin-bottom: 32px;
}
.areas-map-iframe {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border: 1px solid var(--border,#d8eaee);
  line-height: 0;
}
.areas-map-iframe iframe { display: block; border: 0; width: 100%; min-height: 400px; }

@media (max-width: 900px) {
  .areas-map-layout { grid-template-columns: 1fr; }
  .areas-map-iframe iframe { min-height: 320px; }
}
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }
  .review-card__quote { font-size: .95rem; }
}


/* FADE-UP FAIL-SAFE 2026-06-05 */
/* Content must never stay invisible if the JS scroll-reveal misfires. */
/* Default visible; fade becomes a CSS load animation that always ends visible. */
.fade-up{opacity:1;transform:none;animation:fadeUpSafe .6s ease both;}
.fade-up.visible{opacity:1;transform:none;}
@keyframes fadeUpSafe{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:none;}}
@media (prefers-reduced-motion: reduce){.fade-up{animation:none;opacity:1;transform:none;}}
/* end fail-safe */
