/* =====================================================================
   LOCKSMITH MORGAN HILL — 2026 SEO Guide
   Palette: Deep Wine + Warm Wheat + Vineyard Green
   Font: Self-hosted Inter (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 {
  /* Morgan Hill wine country palette */
  --wine:         #5c1a2a;
  --wine-mid:     #7a2438;
  --wine-light:   #9e3a52;
  --wheat:        #f0e4c8;
  --wheat-dark:   #e0cfa8;
  --vgreen:       #3a6b35;
  --vgreen-mid:   #4e8848;
  --vgreen-light: #6aac63;
  --white:        #ffffff;
  --dark:         #1c1210;
  --dark-2:       #231815;
  --dark-3:       #2d1f1b;
  --text:         #1c1210;
  --text-mid:     #4a3a38;
  --text-muted:   #7a6a68;
  --text-light:   #f0e8e0;
  --text-dim:     #a89890;
  --border:       #e0d0c8;
  --border-dark:  #382a28;
  --amber:        #c47a20;
  --amber-light:  #e0982a;
  --red-flag:     #b22222;

  /* Use wine as primary, vgreen as accent */
  --green:        var(--wine);
  --green-mid:    var(--wine-mid);
  --green-light:  var(--wine-light);
  --cream:        var(--wheat);
  --cream-dark:   var(--wheat-dark);

  --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(92,26,42,.08);
  --shadow-md:    0 6px 24px rgba(92,26,42,.12);
  --shadow-lg:    0 16px 48px rgba(92,26,42,.16);
  --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(--wine); text-decoration: none; }
a:hover { color: var(--wine-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--wine { background: var(--wine); }
.section--cream { background: var(--wheat); }
.section--white { background: var(--white); }
.section--vgreen { background: var(--vgreen); }

/* Dark section text overrides */
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--dark2 h1, .section--dark2 h2, .section--dark2 h3, .section--dark2 h4,
.section--wine h1, .section--wine h2, .section--wine h3, .section--wine h4,
.section--vgreen h1, .section--vgreen h2, .section--vgreen h3, .section--vgreen h4 {
  color: var(--white);
}
.section--dark p, .section--dark li, .section--dark span,
.section--dark2 p, .section--dark2 li, .section--dark2 span,
.section--wine p, .section--wine li, .section--wine span,
.section--vgreen p, .section--vgreen li, .section--vgreen span {
  color: var(--text-light);
}
.section--dark a:not(.btn):not(.btn-cta),
.section--dark2 a:not(.btn):not(.btn-cta),
.section--wine a:not(.btn):not(.btn-cta),
.section--vgreen a:not(.btn):not(.btn-cta) { color: var(--amber-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(--wine-light);
  margin-bottom: 12px;
}
.section-label--light { color: var(--amber-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(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.btn-primary:hover {
  background: var(--wine-mid);
  border-color: var(--wine-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(92,26,42,.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(--wine);
  border-color: var(--wine);
}
.btn-outline--dark:hover {
  background: var(--wine);
  color: var(--white);
}
.btn-vgreen {
  background: var(--vgreen);
  color: var(--white);
  border-color: var(--vgreen);
}
.btn-vgreen:hover {
  background: var(--vgreen-mid);
  color: var(--white);
}

/* === HEADER ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.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(--wine);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  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: 8px;
}
.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(--wheat);
  color: var(--wine);
}
.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: 1px solid var(--border);
  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(--dark);
}
.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(28,18,16,.90) 0%, rgba(28,18,16,.78) 40%, rgba(28,18,16,.30) 70%, rgba(28,18,16,.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(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--amber-light);
  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(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  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(--dark) 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(28,18,16,.35) 0%, rgba(28,18,16,.65) 60%, rgba(28,18,16,.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: 540px; }

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--dark-2);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}
.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(255,255,255,.9);
}
.trust-chip__icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  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(--wine);
  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(--wine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card__link:hover { gap: 10px; }
.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(--wine);
  border-radius: var(--radius-lg);
  opacity: .15;
}
.feature-row__content {}
.feature-row__content h2 { margin-bottom: 16px; }
.feature-row__content p { color: var(--text-mid); margin-bottom: 20px; }
.callout-box {
  background: var(--wheat);
  border-left: 4px solid var(--wine);
  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(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.mini-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(224,152,42,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  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(255,255,255,.75);
  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(--amber-light);
  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(--wine);
  color: var(--white);
  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(--wheat); }
.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(--wine);
  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(--wine);
  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(255,255,255,.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(--wine); }
.compare-card__head {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.compare-card--featured .compare-card__head { background: var(--wine); }
.compare-card--featured .compare-card__head h3 { color: var(--white); }
.compare-card--featured .compare-card__head p { color: rgba(255,255,255,.8); }
.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(--wheat);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--wine);
}

/* === 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__item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,18,16,.7));
  color: var(--white);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: 20px 14px 12px;
}

/* === REVIEWS ======================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.review-card__stars {
  color: var(--amber-light);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-card__quote {
  color: rgba(255,255,255,.85);
  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(255,255,255,.2);
}
.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(255,255,255,.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(--wine);
  color: var(--wine);
  background: var(--wheat);
}
.neighborhood-pill svg { color: var(--wine); 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(--wine);
  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(--wine); }

/* === CTA BAND ======================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-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(255,255,255,.05);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.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(--wheat);
  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(--wine); }

/* === 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(--wheat);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  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(--wine);
  box-shadow: 0 0 0 3px rgba(92,26,42,.1);
}
.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(--wine);
  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(255,255,255,.5);
  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(--white); }
.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(--white); }
.footer-declaration {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  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(255,255,255,.4);
  margin-bottom: 8px;
}
.footer-declaration p { font-size: .82rem; color: var(--text-dim); line-height: 1.6; }

/* === 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(--wheat);
  border-left: 4px solid var(--wine);
  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; }

/* === AREAS TABLE ==================================================== */
.areas-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.area-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: var(--wine); }
.area-card p { font-size: .88rem; color: var(--text-mid); margin-bottom: 12px; line-height: 1.5; }
.area-card__dist {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* === 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); }
  .areas-table { 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(28,18,16,.35) 0%, rgba(28,18,16,.65) 60%, rgba(28,18,16,.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; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip__inner { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .home-hero__stats { gap: 10px; }
  .areas-table { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: 1fr 1fr; }
  .home-hero__ctas { flex-direction: column; }
}

/* === ENHANCED REVIEW CARDS v2 (May 2026) =========================== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.review-card__stars { color: #FFC107; font-size: 1.3rem; letter-spacing: 3px; line-height: 1; }
.review-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 4px 11px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .04em; white-space: nowrap;
}
.review-card__quote {
  color: rgba(255,255,255,.9);
  font-size: 1rem; line-height: 1.72; font-style: italic; flex: 1;
  margin-bottom: 24px;
  border-left: 3px solid var(--copper-light,#d4964d);
  padding-left: 18px;
}
.review-card__author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
}
.review-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--copper-light,#d4964d);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  background: rgba(255,255,255,.1);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white,#fff); line-height: 1.2; }
.review-card__meta, .review-card__location { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 3px; }

/* === MAP + NEIGHBORHOODS LAYOUT ==================================== */
.areas-map-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start; margin-bottom: 32px;
}
.areas-map-iframe {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border: 1px solid var(--border,#d8eaee);
  line-height: 0;
}
.areas-map-iframe iframe { display: block; border: 0; width: 100%; min-height: 400px; }

@media (max-width: 900px) {
  .areas-map-layout { grid-template-columns: 1fr; }
  .areas-map-iframe iframe { min-height: 320px; }
}
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }
  .review-card__quote { font-size: .95rem; }
}
