/* =====================================================================
   LOCKSMITH MENLO PARK — Premium Editorial 2026
   Palette: Deep Slate #1a1f2e + Champagne #f5e6c8 + Stanford Red #8c1515
   Fonts: Inter (self-hosted, 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;
}

/* === TOKENS ========================================================= */
:root {
  --slate:        #1a1f2e;
  --slate-mid:    #2a3048;
  --slate-light:  #3d4a6e;
  --champ:        #f5e6c8;
  --champ-dark:   #e8d4a8;
  --champ-deep:   #d4b882;
  --red:          #8c1515;
  --red-mid:      #a01c1c;
  --red-light:    #c0392b;
  --white:        #ffffff;
  --dark:         #0f1218;
  --dark-2:       #151a26;
  --dark-3:       #1c2236;
  --text:         #1c1c2e;
  --text-mid:     #44455e;
  --text-muted:   #6b6c84;
  --text-light:   #ede8df;
  --text-dim:     #8a8fa8;
  --border:       #e2d9c8;
  --border-dark:  #2a2e40;
  --gold:         #c9a96e;
  --gold-light:   #e0c48a;
  --red-flag:     #c0392b;

  --font-head:    'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow:       0 2px 12px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --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(--red); text-decoration: none; }
a:hover { color: var(--red-mid); }
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--slate { background: var(--slate); }
.section--champ { background: var(--champ); }
.section--white { background: var(--white); }

/* === DARK SECTION TEXT 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--slate h1, .section--slate h2, .section--slate h3, .section--slate h4,
.home-hero h1, .page-hero h1, .cta-band h1, .cta-band h2,
.trust-strip h1, .trust-strip h2 { color: var(--white); }

.section--dark p, .section--dark li, .section--dark span,
.section--dark2 p, .section--dark2 li, .section--dark2 span,
.section--slate p, .section--slate li, .section--slate span,
.home-hero p, .home-hero span, .page-hero p, .page-hero span,
.site-footer p, .site-footer li, .site-footer span { color: var(--text-light); }

.site-footer__brand p { color: var(--text-light); }

.section--dark a:not(.btn):not(.btn-cta),
.section--dark2 a:not(.btn):not(.btn-cta),
.section--slate a:not(.btn):not(.btn-cta) { color: var(--gold-light); }

/* === TYPOGRAPHY ===================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label--light { color: var(--gold-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: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-mid);
  border-color: var(--red-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(140,21,21,.3);
}
.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-outline--dark {
  color: var(--slate);
  border-color: var(--slate);
}
.btn-outline--dark:hover {
  background: var(--slate);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--champ-deep);
  color: var(--dark);
}

/* === HEADER ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 16px rgba(140,21,21,.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-header__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--slate);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champ);
  flex-shrink: 0;
}
.site-header__logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.site-header__logo-text span {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-muted);
  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-mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .18s;
}
.site-header__nav a:hover, .site-header__nav a.active {
  background: var(--champ);
  color: var(--red);
}
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .2s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 20px 24px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.mobile-nav a:last-child { border-bottom: none; }

/* === HERO =========================================================== */
.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--slate) center/cover no-repeat;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,31,46,.90) 0%, rgba(26,31,46,.78) 40%, rgba(26,31,46,.30) 70%, rgba(26,31,46,.05) 100%);
  z-index: 1;
}
.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 80px 0;
}
.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,230,200,.12);
  border: 1px solid rgba(245,230,200,.3);
  color: var(--champ);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.home-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.home-hero__lead {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.home-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.home-hero__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,230,200,.12);
  border: 1px solid rgba(245,230,200,.25);
  color: rgba(255,255,255,.9);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.stat-pill svg { flex-shrink: 0; }

/* === PAGE HERO (inner pages) ======================================= */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--slate) center/cover no-repeat;
  overflow: hidden;
}
.page-hero--tall { min-height: 440px; }
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,46,.30) 0%, rgba(26,31,46,.65) 60%, rgba(26,31,46,.82) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 0 56px;
}
.page-hero__breadcrumb {
  font-family: var(--font-head);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.page-hero__lead { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 560px; }

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--slate);
  padding: 20px 0;
  border-bottom: 1px solid rgba(245,230,200,.15);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(245,230,200,.9);
}
.trust-chip__icon {
  width: 32px;
  height: 32px;
  background: rgba(245,230,200,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champ);
  flex-shrink: 0;
}

/* === SERVICE CARDS ================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.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.05); }
.svc-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-card__body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.svc-card p {
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.svc-card__link {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card__link:hover { gap: 10px; color: var(--red-mid); }
.svc-card__link svg { transition: transform .2s; }
.svc-card__link:hover svg { transform: translateX(4px); }

/* === 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 {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-row__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.feature-row__accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: var(--radius-lg);
  opacity: .12;
}
.feature-row__content h2 { margin-bottom: 16px; }
.feature-row__content p { color: var(--text-mid); margin-bottom: 20px; }
.callout-box {
  background: var(--champ);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.callout-box p { color: var(--text); font-size: .93rem; margin: 0; }

/* === MINI CARDS GRID ================================================ */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-card {
  background: rgba(245,230,200,.06);
  border: 1px solid rgba(245,230,200,.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.mini-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champ);
  margin-bottom: 16px;
}
.mini-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.mini-card ul { list-style: none; padding: 0; }
.mini-card ul li {
  color: rgba(245,230,200,.78);
  font-size: .88rem;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.mini-card ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--champ);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* === COST TABLE ===================================================== */
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.scorecard-table thead th {
  background: var(--slate);
  color: var(--champ);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  padding: 14px 18px;
  text-align: left;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.scorecard-table tbody tr { border-bottom: 1px solid var(--border); }
.scorecard-table tbody tr:last-child { border-bottom: none; }
.scorecard-table tbody tr:hover { background: var(--champ); }
.scorecard-table td { padding: 14px 18px; font-size: .93rem; color: var(--text); }
.scorecard-table td:first-child { font-weight: 600; }
.cost-pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.cost-pill--green  { background: #d4edda; color: #155724; }
.cost-pill--yellow { background: #fff3cd; color: #856404; }
.cost-pill--red    { background: #f8d7da; color: #721c24; }

/* === STEP CARDS ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.step-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.flag-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.flag-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-mid);
}
.flag-list__icon {
  width: 22px;
  height: 22px;
  background: #fdecea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-flag);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .75rem;
  font-weight: 700;
}

/* === TIMELINE ======================================================= */
.timeline-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.timeline-steps { list-style: none; padding: 0; }
.timeline-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}
.timeline-step:last-child { border-bottom: none; }
.timeline-step__num {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.timeline-step__body h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.timeline-step__body p { font-size: .88rem; color: rgba(245,230,200,.7); line-height: 1.5; }
.timeline-section__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.timeline-section__media img { width: 100%; object-fit: cover; display: block; }

/* === COMPARE GRID =================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-card--featured { border-color: var(--red); }
.compare-card__head { padding: 24px 24px 16px; border-bottom: 1px solid var(--border); }
.compare-card--featured .compare-card__head { background: var(--slate); }
.compare-card--featured .compare-card__head h3 { color: var(--champ); }
.compare-card--featured .compare-card__head p { color: rgba(245,230,200,.7); }
.compare-card__head h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.compare-card__head p { font-size: .88rem; color: var(--text-muted); }
.compare-card__body { padding: 24px; }
.compare-list { list-style: none; padding: 0; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .92rem;
  border-bottom: 1px solid var(--border);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list__icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.compare-verdict {
  background: var(--champ);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
}

/* === GALLERY ======================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-grid__item:hover img { transform: scale(1.06); }
.gallery-grid__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(26,31,46,.8));
  padding: 24px 14px 14px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--champ);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-grid__item:hover .gallery-grid__caption { opacity: 1; }

/* === REVIEWS ======================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(245,230,200,.07);
  border: 1px solid rgba(245,230,200,.14);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.review-card__stars { color: var(--champ); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card__quote {
  color: rgba(245,230,200,.88);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(245,230,200,.25);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--white); }
.review-card__location { font-size: .8rem; color: rgba(245,230,200,.5); }

/* === NEIGHBORHOODS ================================================== */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.neighborhood-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all .18s;
}
.neighborhood-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--champ);
}
.neighborhood-pill svg { color: var(--red); flex-shrink: 0; }

/* === FAQ ============================================================ */
.faq-list { list-style: none; padding: 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  list-style: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__body {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item[open] summary { color: var(--red); }

/* === CTA BAND ======================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: rgba(245,230,200,.04);
  border-radius: 50%;
}
.cta-band h2 { color: var(--champ); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(245,230,200,.82); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === METHODOLOGY ==================================================== */
.methodology-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.method-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--champ);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.method-chip svg { color: var(--red); }

/* === FORM =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--champ);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-detail h4 { font-size: .88rem; font-weight: 700; margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: .92rem; color: var(--text-mid); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(140,21,21,.08);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp-field { display: none; }
#form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 16px;
  color: #155724;
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
}

/* === FOOTER ========================================================= */
.site-footer {
  background: var(--dark);
  color: var(--text-light);
  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: 16px;
}
.footer-brand__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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.65; }
.footer-brand__designed { font-size: .78rem; color: var(--text-dim); margin-top: 16px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,230,200,.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: .88rem;
  color: var(--text-dim);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--champ); }
.footer-declaration {
  background: rgba(245,230,200,.04);
  border: 1px solid rgba(245,230,200,.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 20px;
  margin-bottom: 4px;
}
.footer-declaration h4 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,230,200,.4);
  margin-bottom: 8px;
}
.footer-declaration p { font-size: .82rem; color: var(--text-dim); line-height: 1.6; }
.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 .15s; }
.footer-legal a:hover { color: var(--champ); }

/* === PROSE / LONG-FORM ============================================== */
.prose { max-width: 740px; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--text-mid); }
.prose ul, .prose ol { margin-bottom: 16px; color: var(--text-mid); }
.prose li { margin-bottom: 8px; }
.direct-answer {
  background: var(--champ);
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
}
.direct-answer p { color: var(--text); font-weight: 500; font-size: 1rem; margin: 0; }

/* === ABOUT PAGE specific ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-card__icon {
  width: 64px;
  height: 64px;
  background: var(--champ);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.team-card p { font-size: .88rem; color: var(--text-muted); }

/* === ANIMATIONS ===================================================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
  }
  .fade-up.visible { opacity: 1; transform: none; }
}

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  .site-header__nav { display: none; }
  .site-header__cta .btn { display: none; }
  .hamburger { display: flex; }
  .home-hero { min-height: 520px; }
  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(26,31,46,.35) 0%, rgba(26,31,46,.65) 60%, rgba(26,31,46,.85) 100%);
  }
  .home-hero__content { max-width: 100%; padding: 64px 0; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .timeline-section { grid-template-columns: 1fr; gap: 32px; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .flag-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .home-hero__ctas { flex-direction: column; }
  .neighborhoods-grid { grid-template-columns: 1fr 1fr; }
}

/* === CONTACT FORM EXTRAS ============================================ */
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-required { color: var(--red); }
.form-control { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem; color: var(--dark); background: var(--white); transition: border-color .2s; }
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(140,21,21,.10); }
.form-control::placeholder { color: var(--text-muted); }
.btn-block { width: 100%; justify-content: center; }
.form-panel__fud { margin-top: 12px; text-align: center; font-size: .82rem; color: var(--text-muted); }
.contact-info__items { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--champ); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--red); }
.contact-info__item strong { display: block; font-size: .92rem; color: var(--dark); margin-bottom: 2px; }
.contact-info__item p { font-size: .88rem; color: var(--text-mid); margin: 0; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success__icon { color: #2e7d32; margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); font-size: .95rem; }

/* === 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; }
}
