/* =====================================================================
   LOCKSMITH HAYWARD — 2026
   Palette: Deep Burgundy #4a1535 + Warm Cream #faf0e6 + Brass #c8a135
   Font: Inter (self-hosted woff2, no Google Fonts CDN)
   ===================================================================== */

/* === 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 {
  /* Burgundy palette */
  --burgundy:       #4a1535;
  --burgundy-mid:   #6e2254;
  --burgundy-light: #8f3570;

  /* Cream palette */
  --cream:          #faf0e6;
  --cream-dark:     #f0e0cc;
  --cream-mid:      #e8d0b8;

  /* Brass/gold accents */
  --brass:          #c8a135;
  --brass-dark:     #9e7c1e;
  --brass-light:    #e0bc5a;

  /* Neutrals */
  --dark:           #140a10;
  --dark-2:         #1e0f19;
  --dark-3:         #281420;
  --white:          #ffffff;
  --text:           #1e0f19;
  --text-mid:       #4a2f40;
  --text-muted:     #6e5060;
  --text-light:     #f5e8df;
  --text-dim:       #b09098;
  --border:         #e8d0b8;
  --border-dark:    #3a1e2c;

  /* CTA = brass gold */
  --cta:            #c8a135;
  --cta-hover:      #9e7c1e;
  --cta-text:       #140a10;

  --font-head:    'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    22px;
  --shadow:       0 2px 14px rgba(74,21,53,.10);
  --shadow-md:    0 6px 28px rgba(74,21,53,.14);
  --shadow-lg:    0 18px 52px rgba(74,21,53,.20);
  --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(--burgundy-mid); text-decoration: none; }
a:hover { color: var(--burgundy); text-decoration: underline; }
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--burgundy{ background: var(--burgundy); }
.section--cream   { background: var(--cream); }
.section--white   { background: var(--white); }

/* === DARK SECTION OVERRIDES (required — prevents dark-on-dark) ====== */
.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--burgundy h1,.section--burgundy h2,.section--burgundy h3,.section--burgundy h4,
.home-hero h1, .page-hero h1,
.cta-band h2 {
  color: var(--white);
}
.section--dark p, .section--dark li, .section--dark span,
.section--dark2 p,.section--dark2 li,.section--dark2 span,
.section--burgundy p,.section--burgundy li,.section--burgundy span,
.home-hero p, .home-hero span,
.page-hero p, .page-hero span {
  color: var(--text-light);
}
.section--dark a:not(.btn), .section--dark2 a:not(.btn),
.section--burgundy a:not(.btn) {
  color: var(--brass-light);
}
.site-footer p, .site-footer li, .site-footer a, .site-footer span {
  color: var(--text-light);
}
.site-footer h4 { color: var(--white); }

/* === BUTTONS ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--cta);
  color: var(--cta-text);
  border-color: var(--cta);
}
.btn-primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline-dark:hover { background: var(--burgundy); color: var(--white); }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* === HEADER ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.30);
}
.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(--burgundy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  flex-shrink: 0;
}
.site-header__logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.site-header__logo-text span {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: .03em;
}
.site-header__nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-header__nav a {
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .18s, background .18s;
  text-decoration: none;
}
.site-header__nav a:hover,
.site-header__nav a.active { color: var(--brass); background: rgba(200,161,53,.10); }
.site-header__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 24px;
  color: rgba(255,255,255,.80);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--brass); background: rgba(200,161,53,.08); }

/* === HERO =========================================================== */
.home-hero {
  position: relative;
  min-height: clamp(480px, 58vh, 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;
  z-index: 0;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  /* Positional gradient: dark left (text side), transparent right (photo side) */
  background: linear-gradient(90deg,
    rgba(20,10,16,.88) 0%,
    rgba(20,10,16,.76) 30%,
    rgba(20,10,16,.40) 60%,
    rgba(20,10,16,.10) 82%,
    rgba(20,10,16,0) 100%
  );
  z-index: 1;
}
.home-hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.home-hero__content { max-width: 620px; }
.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,161,53,.18);
  border: 1px solid rgba(200,161,53,.35);
  color: var(--brass-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.home-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.home-hero__lead {
  font-size: 1.1rem;
  color: rgba(245,232,223,.85);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}

/* === PAGE HERO ===================================================== */
.page-hero {
  position: relative;
  min-height: clamp(260px, 32vh, 400px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(74,21,53,.82) 0%,
    rgba(74,21,53,.60) 40%,
    rgba(74,21,53,.30) 75%,
    rgba(74,21,53,0) 100%
  );
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; padding-top: 48px; padding-bottom: 48px; }
.page-hero__breadcrumb {
  font-size: .82rem;
  color: rgba(245,232,223,.70);
  margin-bottom: 14px;
}
.page-hero__breadcrumb a { color: var(--brass-light); text-decoration: none; }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(245,232,223,.82);
  max-width: 560px;
}

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: center;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .01em;
}
.trust-chip__icon {
  width: 28px;
  height: 28px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  flex-shrink: 0;
}

/* === SECTION LABELS + HEADINGS ====================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 12px;
}
.section-label--light { color: var(--brass-light); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* === SERVICE CARDS ================================================== */
.svc-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;
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-dark);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.svc-card:hover .svc-card__media img { transform: scale(1.04); }
.svc-card__icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  z-index: 2;
  transition: background .22s, color .22s;
}
.svc-card:hover .svc-card__icon { background: var(--brass); color: var(--dark); }
.svc-card__body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.svc-card__body p {
  font-size: .92rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--burgundy-mid);
}

/* === FEATURE ROW ==================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-row__content { display: flex; flex-direction: column; gap: 18px; }
.feature-row__content h2 { margin-bottom: 0; }
.feature-row__content p { color: var(--text-mid); line-height: 1.7; }
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-mid);
}
.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23140a10' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* === COST TABLE ===================================================== */
.cost-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.cost-table th {
  background: var(--burgundy);
  color: var(--white);
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  font-size: .88rem;
  letter-spacing: .04em;
}
.cost-table th:last-child { text-align: right; }
.cost-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.cost-table td:last-child { text-align: right; font-weight: 600; color: var(--burgundy); }
.cost-table tr:nth-child(even) td { background: var(--cream); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-note {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === STEPS GRID ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  position: relative;
  transition: box-shadow .25s;
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-card__num {
  width: 42px;
  height: 42px;
  background: var(--burgundy);
  color: var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* === COMPARE GRID =================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-card--highlight { border-color: var(--brass); }
.compare-card__head {
  padding: 20px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.compare-card--highlight .compare-card__head { background: var(--burgundy); }
.compare-card--highlight .compare-card__head h3,
.compare-card--highlight .compare-card__head p { color: var(--white); }
.compare-card__head h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.compare-card__head p { font-size: .88rem; color: var(--text-muted); }
.compare-card__body { padding: 20px 24px; }
.compare-card__body ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.compare-card__body ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.compare-card__body ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--brass);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* === GALLERY GRID =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* === REVIEWS ======================================================== */
.review-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;
  box-shadow: var(--shadow);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--brass);
}
.review-card__text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__portrait {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-dark);
  flex-shrink: 0;
}
.review-card__name { font-size: .9rem; font-weight: 700; color: var(--dark); }
.review-card__meta { font-size: .8rem; color: var(--text-muted); }

/* === NEIGHBORHOODS GRID ============================================= */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.neighborhood-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}
.neighborhood-pill:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

/* === FAQ ACCORDION ================================================== */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.01rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  user-select: none;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream); }
.faq-item[open] summary { background: var(--burgundy); color: var(--white); }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .22s;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item__answer {
  padding: 18px 22px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* === CTA BAND ======================================================= */
.cta-band {
  padding: 80px 0;
  background: var(--burgundy);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 18px; }
.cta-band p { font-size: 1.1rem; color: rgba(245,232,223,.80); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === METHODOLOGY FOOTER NOTE ======================================== */
.methodology-note {
  background: var(--cream);
  border-top: 3px solid var(--brass);
  padding: 40px 0;
}
.methodology-note__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.methodology-note__icon {
  width: 56px;
  height: 56px;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  margin-bottom: 16px;
}
.methodology-note h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.methodology-note p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* === MINI CARDS (3-up) ============================================== */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: box-shadow .22s;
}
.mini-card:hover { box-shadow: var(--shadow-md); }
.mini-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(74,21,53,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 14px;
}
.mini-card h3, .mini-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.mini-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* === SCORECARD TABLE ================================================ */
.scorecard { width: 100%; border-collapse: collapse; }
.scorecard thead th {
  background: var(--burgundy);
  color: var(--white);
  padding: 12px 18px;
  text-align: left;
  font-size: .88rem;
  font-weight: 700;
}
.scorecard tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text-mid);
}
.scorecard tbody tr:nth-child(even) td { background: var(--cream); }
.scorecard tbody tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
}
.badge--green { background: #d4edda; color: #155724; }
.badge--red   { background: #f8d7da; color: #721c24; }
.badge--gold  { background: rgba(200,161,53,.15); color: var(--brass-dark); }

/* === DIRECT ANSWER CARD ============================================= */
.direct-answer {
  background: var(--cream);
  border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.direct-answer p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
.direct-answer strong { color: var(--burgundy); }

/* === PROSE ========================================================== */
.prose h2 { font-size: 1.55rem; font-weight: 700; margin: 36px 0 14px; color: var(--dark); }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 10px; }
.prose p  { margin-bottom: 18px; color: var(--text-mid); line-height: 1.75; }
.prose ul, .prose ol { margin-bottom: 18px; color: var(--text-mid); }
.prose li { margin-bottom: 6px; }
.prose a  { color: var(--burgundy-mid); text-decoration: underline; }

/* === FOOTER ========================================================= */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 60px 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: 16px;
}
.footer-brand__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--burgundy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand__logo-text {
  font-weight: 700;
  font-size: .98rem;
  color: var(--white);
}
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 10px; }
.footer-brand__designed { font-size: .80rem; color: var(--text-dim); }
.footer-declaration {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}
.footer-declaration h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.footer-declaration p { font-size: .82rem; color: var(--text-dim); }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .18s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--brass-light); text-decoration: none; }
.footer-col ul li span { font-size: .88rem; color: rgba(255,255,255,.40); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .80rem; color: rgba(255,255,255,.40); text-decoration: none; transition: color .18s; }
.footer-legal a:hover { color: var(--brass-light); }

/* === FADE-UP ANIMATIONS ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* === UTILITIES ====================================================== */
.text-center { text-align: center; }
.text-brass { color: var(--brass); }
.text-burgundy { color: var(--burgundy); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.col-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.col-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .methodology-note__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  body { font-size: 16px; }
  .site-header__nav { display: none; }
  .hamburger { display: flex; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse { direction: ltr; }
  .compare-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .col-2, .col-3, .col-4 { grid-template-columns: 1fr; }
  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(20,10,16,.40) 0%, rgba(20,10,16,.65) 60%, rgba(20,10,16,.80) 100%);
  }
  .page-hero__overlay {
    background: rgba(74,21,53,.65);
  }
  .home-hero h1 { font-size: 1.9rem; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .home-hero__ctas { flex-direction: column; }
  .cost-table { font-size: .85rem; }
  .cost-table th, .cost-table td { padding: 10px 12px; }
}

/* === 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; }
}
