/* =====================================================================
   LOCKSMITH SAN BRUNO — 2026
   Palette: Steel Blue #1b3a6b + Fog Grey #d8dde6 + SFO Orange #e8621a
   Feel: Airport-corridor industrial, modern editorial
   Fonts: Self-hosted Inter (Regular/Medium/SemiBold/Bold/ExtraBold)
   ===================================================================== */

/* === 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 {
  /* San Bruno palette */
  --steel:        #1b3a6b;
  --steel-mid:    #2a5896;
  --steel-light:  #4a7bbf;
  --fog:          #d8dde6;
  --fog-dark:     #b8c2d4;
  --orange:       #e8621a;
  --orange-dark:  #c44e10;
  --orange-light: #f07840;
  --navy:         #0f1c37;
  --navy-2:       #142244;

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f5f7fa;
  --light-bg:     #eef1f7;
  --dark:         #111827;
  --dark-2:       #1a2740;
  --text:         #1c2434;
  --text-mid:     #3a4a60;
  --text-muted:   #607090;
  --text-light:   #e8edf5;
  --text-dim:     #9aaac0;
  --border:       #dce3ee;
  --border-dark:  #2a3a54;

  /* Semantic */
  --color-primary:     var(--steel);
  --color-accent:      var(--orange);
  --color-cta:         var(--orange);
  --color-cta-hover:   var(--orange-dark);
  --color-bg-warm:     var(--off-white);
  --bg-dark:           var(--navy);
  --color-text-muted:  var(--text-muted);

  --font-head:    'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       6px;
  --radius-lg:    12px;
  --radius-xl:    18px;
  --shadow:       0 2px 12px rgba(15,28,55,.10);
  --shadow-md:    0 6px 24px rgba(15,28,55,.14);
  --shadow-lg:    0 16px 48px rgba(15,28,55,.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(--steel); text-decoration: none; }
a:hover { color: var(--steel-mid); }
ul, ol { padding-left: 1.4em; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.22;
  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--navy    { background: var(--navy); }
.section--steel   { background: var(--steel); }
.section--fog     { background: var(--fog); }
.section--light   { background: var(--off-white); }
.section--white   { background: var(--white); }
.section--stripe  { background: var(--light-bg); }

/* Dark section text overrides — CRITICAL for contrast */
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--steel h1, .section--steel h2, .section--steel h3, .section--steel h4 { color: var(--white); }
.section--dark p, .section--dark li, .section--dark span,
.section--navy p, .section--navy li, .section--navy span,
.section--steel p, .section--steel li, .section--steel span { color: var(--text-light); }
.section--dark a:not(.btn),
.section--navy a:not(.btn),
.section--steel a:not(.btn) { color: var(--orange-light); }

/* Fog section text */
.section--fog h1, .section--fog h2, .section--fog h3, .section--fog h4 { color: var(--navy); }
.section--fog p, .section--fog li, .section--fog span { color: var(--text-mid); }

/* === TYPOGRAPHY ===================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 10px;
}
.section-label--orange { color: var(--orange); }
.section-label--light  { color: var(--fog); }
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.65;
}
.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;
  border-radius: var(--radius);
  padding: 12px 24px;
  cursor: pointer;
  transition: all .22s var(--ease);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
}
.btn-secondary:hover {
  background: var(--steel-mid);
  border-color: var(--steel-mid);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === SITE 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,.3);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: var(--radius);
  color: var(--white);
}
.site-header__logo-text {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.site-header__logo-text span {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--fog);
  letter-spacing: .04em;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header__nav a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--fog);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all .18s;
  text-decoration: none;
}
.site-header__nav a:hover,
.site-header__nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .2s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy-2);
  border-bottom: 2px solid var(--steel);
  z-index: 99;
  padding: 8px 0 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav a {
  color: var(--fog);
  padding: 10px 24px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border-dark);
  transition: background .15s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: var(--white); }

/* === HERO =========================================================== */
.home-hero {
  position: relative;
  min-height: clamp(520px, 62vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.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(15,28,55,.92) 0%,
    rgba(15,28,55,.80) 30%,
    rgba(27,58,107,.45) 60%,
    rgba(27,58,107,0) 100%
  );
}
@media (max-width: 767px) {
  .home-hero__overlay {
    background: linear-gradient(180deg,
      rgba(15,28,55,.30) 0%,
      rgba(15,28,55,.60) 55%,
      rgba(15,28,55,.80) 100%
    );
  }
}
.home-hero .container { position: relative; z-index: 2; width: 100%; }
.home-hero__content {
  max-width: 580px;
  padding: 60px 0;
}
.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.home-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.home-hero__lead {
  font-size: 1.1rem;
  color: rgba(232,237,245,.88);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}
.home-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(4px);
}

/* === PAGE HERO (inner pages) ======================================= */
.page-hero {
  position: relative;
  min-height: clamp(280px, 38vh, 400px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(15,28,55,.88) 0%,
    rgba(27,58,107,.60) 50%,
    rgba(27,58,107,.20) 100%
  );
}
.page-hero .container { position: relative; z-index: 2; width: 100%; }
.page-hero__content { padding: 50px 0; max-width: 620px; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--fog);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.page-hero__breadcrumb a { color: var(--orange-light); text-decoration: none; }
.page-hero__breadcrumb span { color: var(--fog); opacity: .6; }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero__lead {
  font-size: 1.05rem;
  color: rgba(232,237,245,.85);
  line-height: 1.6;
}

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--steel);
  padding: 0;
  border-bottom: 3px solid var(--orange);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 64px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--fog);
  letter-spacing: .03em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-chip:last-child { border-right: none; }
.trust-chip__icon {
  display: flex;
  align-items: center;
  color: var(--orange);
}

/* === SERVICES GRID ================================================== */
.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: box-shadow .25s var(--ease), transform .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--light-bg);
}
.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__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-card__body {
  padding: 24px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card__body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.svc-card__body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.svc-card__more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* === FEATURE ROWS =================================================== */
.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__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-row__content { }
.feature-row__content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-row__content p { margin-bottom: 14px; color: var(--text-mid); }
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  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__icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* === WHY CARDS ====================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow .22s;
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 48px;
  height: 48px;
  background: var(--light-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.55; }

/* === COST TABLE ===================================================== */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cost-table th {
  background: var(--steel);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 14px 20px;
  text-align: left;
}
.cost-table td {
  padding: 14px 20px;
  font-size: .93rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--off-white); }
.cost-table .price { font-weight: 700; color: var(--steel); }
.cost-table .note { font-size: .8rem; color: var(--text-muted); }

/* === STEPS GRID ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  counter-increment: step;
}
.step-card::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
}
.step-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: 8px; margin-top: 8px; }
.step-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }

/* === SMART VS TRAD ================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.compare-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.compare-card--highlight { border-color: var(--orange); }
.compare-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.compare-card__icon {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
}
.compare-card--highlight .compare-card__icon { background: rgba(232,98,26,.1); color: var(--orange); }
.compare-card__head h3 { font-size: 1.05rem; font-weight: 700; }
.compare-card__pros, .compare-card__cons {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.compare-card__pros li, .compare-card__cons li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.compare-card__pros li:last-child, .compare-card__cons li:last-child { border-bottom: none; }
.pro-icon { color: #22863a; flex-shrink: 0; margin-top: 2px; }
.con-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* === GALLERY ======================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--steel);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* === 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: 26px 24px;
  box-shadow: var(--shadow);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #f5a623;
}
.review-card p {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-bg);
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-card__name {
  font-weight: 700;
  font-size: .88rem;
  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;
  margin-top: 8px;
}
.neighborhood-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
}
.neighborhood-pill:hover {
  border-color: var(--steel);
  background: var(--off-white);
  color: var(--steel);
}
.neighborhood-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* === FAQ ACCORDION ================================================== */
.faq-list { list-style: none; padding: 0; }
details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
details.faq-item:first-child { border-top: 1px solid var(--border); }
summary.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
summary.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--steel);
  transition: all .2s;
}
details[open] .faq-item__icon { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-item__a {
  padding: 0 4px 18px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* === CTA BAND ======================================================= */
.cta-band {
  background: var(--navy);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-band p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band p, .cta-band li, .cta-band span { color: var(--text-light); }

/* === METHODOLOGY NOTE =============================================== */
.methodology-note {
  background: var(--off-white);
  border-left: 4px solid var(--steel);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 16px;
}
.methodology-note p { font-size: .88rem; color: var(--text-mid); margin: 0; line-height: 1.6; }
.methodology-note strong { color: var(--steel); }

/* === DIRECT ANSWER CARD ============================================= */
.direct-answer {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.direct-answer p { margin: 0; font-size: 1rem; color: var(--text); line-height: 1.65; }

/* === CONTACT FORM =================================================== */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  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(--steel);
  box-shadow: 0 0 0 3px rgba(27,58,107,.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.hp-field { display: none !important; }

/* === FOOTER ========================================================= */
.site-footer {
  background: var(--navy);
  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: 18px;
}
.footer-brand__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand__logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer-brand__designed { font-size: .78rem !important; color: var(--text-dim) !important; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-dim);
  transition: color .18s;
}
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-col ul li span {
  font-size: .88rem;
  color: var(--text-dim);
}
.footer-declaration {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--steel-mid);
}
.footer-declaration h4 {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 6px;
}
.footer-declaration p {
  font-size: .8rem !important;
  color: var(--text-dim) !important;
  line-height: 1.55;
  margin: 0 !important;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
}
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer-legal a {
  font-size: .78rem;
  color: var(--text-dim);
  transition: color .18s;
}
.footer-legal a:hover { color: var(--orange-light); }

/* === MISC =========================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,58,107,.08);
  color: var(--steel);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge--orange { background: rgba(232,98,26,.10); color: var(--orange); }
.alert-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--steel);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: .93rem;
  color: var(--text-mid);
}
.alert-box--warning { border-left-color: var(--orange); }
/* Breadcrumb (used on legal pages + page-hero alternate) */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--fog);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* page-hero solid variant (legal pages — no bg image) */
.page-hero--solid {
  min-height: 0;
  padding: 60px 0 50px;
}
.page-hero--solid h1 { color: var(--white); }
.page-hero__sub {
  font-size: .9rem;
  color: rgba(216,221,230,.75);
  margin-top: 8px;
}

.prose { max-width: 720px; }
.prose p { margin-bottom: 16px; color: var(--text-mid); }
.prose h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; border-bottom: 2px solid var(--fog); padding-bottom: 8px; }
.prose h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.prose ul, .prose ol { margin-bottom: 16px; color: var(--text-mid); padding-left: 24px; }
.prose li { margin-bottom: 8px; line-height: 1.65; }
.prose a { color: var(--steel); text-decoration: underline; }
.prose strong { color: var(--navy); font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* === ANIMATIONS ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  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; }
}

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  .site-header__nav { display: none; }
  .hamburger { display: flex; }
  .site-header__cta .btn { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse { direction: ltr; }
  .compare-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .trust-chip { padding: 12px 16px; font-size: .72rem; }
  .home-hero h1 { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.55rem; }
}

/* === 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; }
}
