/* ============================================================
   Bay Area Best Locksmith — Amber-Dark Theme
   Palette: #0d0f14 bg, #f59e0b primary, #1e2029 card
   Fonts: Sora (headings) + Source Serif 4 (body)
   ============================================================ */

/* --- Self-hosted fonts --- */
@font-face {
  font-family: 'Sora';
  src: url('../fonts/Sora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('../fonts/Sora-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('../fonts/Sora-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/SourceSerif4-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/SourceSerif4-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  --bg:            #0d0f14;
  --bg-card:       #1e2029;
  --bg-section:    #13151c;
  --bg-alt:        #181b24;
  --primary:       #f59e0b;
  --primary-dark:  #d97706;
  --primary-light: #fcd34d;
  --accent:        #3b82f6;
  --text:          #f3f4f6;
  --text-muted:    #9ca3af;
  --text-dim:      #6b7280;
  --border:        #2d3148;
  --border-light:  #374151;
  --white:         #ffffff;
  --radius:        8px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.6);
  --font-head:     'Sora', system-ui, sans-serif;
  --font-body:     'Source Serif 4', Georgia, serif;
  --ease:          cubic-bezier(0.4,0,0.2,1);
  --max-w:         1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }
li { line-height: 1.6; }

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 80px 0; }
.section--light { background: var(--bg-section); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: #090b10; }
.section--amber { background: var(--primary); }

.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.6rem;
}
.section-headline {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-subhead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: #000;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: var(--text);
}
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* --- Site Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,15,20,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo-img { height: 40px; width: auto; }
.site-header__logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.site-header__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.site-nav a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  background: rgba(245,158,11,0.08);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* --- Hero (full-bleed overlay) --- */
.page-hero {
  position: relative;
  min-height: clamp(420px, 52vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.page-hero--tall { min-height: clamp(480px, 60vh, 700px); }
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,15,20,0.90) 0%, rgba(13,15,20,0.70) 50%, rgba(13,15,20,0.40) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}
.page-hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.page-hero p { color: rgba(243,244,246,0.88); font-size: 1.1rem; max-width: 680px; margin: 0 auto 2rem; }
.page-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-hero__trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.page-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(243,244,246,0.75);
}
.page-hero__trust-item svg { color: var(--primary); flex-shrink: 0; }

/* --- Breadcrumb --- */
.breadcrumb {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  justify-content: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--text-dim); }

/* --- Trust Strip --- */
.trust-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-chip svg { color: var(--primary); }

/* --- Service Cards (3-col) --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.svc-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,158,11,0.15);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg);
}
.svc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__icon {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 48px; height: 48px;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  z-index: 2;
  transition: background 0.25s, color 0.25s;
}
.svc-card:hover .svc-card__icon { background: var(--primary); color: #000; }
.svc-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__body h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.svc-card__body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; flex: 1; }
.svc-card__more {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 4px;
}

/* --- Feature Row (image + text alternating) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-row__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__body {}
.feature-row__body .section-label { margin-bottom: 0.5rem; }
.feature-row__body h2 { margin-bottom: 1rem; }
.feature-row__body p { color: var(--text-muted); margin-bottom: 1.2rem; }
.feature-row__body ul { margin-bottom: 1.5rem; }
.feature-row__body ul li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.96rem;
}
.feature-row__body ul li svg { color: var(--primary); margin-top: 4px; flex-shrink: 0; }

/* --- Mini Cards (3-up) --- */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s;
}
.mini-card:hover { border-color: var(--primary); }
.mini-card__icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}
.mini-card h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.mini-card p { color: var(--text-muted); font-size: 0.9rem; }

/* --- Steps Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  position: relative;
  text-align: center;
}
.step-card__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.25;
  margin-bottom: 0.5rem;
}
.step-card__icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 1rem;
}
.step-card h4 { margin-bottom: 0.4rem; }
.step-card p { color: var(--text-muted); font-size: 0.88rem; }

/* --- Cost / Compare Table --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--primary);
}
.compare-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(245,158,11,0.05); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table .price { color: var(--primary); font-weight: 600; font-family: var(--font-head); }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-grid__item:hover img { transform: scale(1.06); }

/* --- Reviews / Masonry --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-card__stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.review-card__text {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.review-card__reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.review-card__info { flex: 1; }
.review-card__name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.review-card__location { font-size: 0.78rem; color: var(--text-dim); }

/* --- FAQ Accordion --- */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
}
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__a {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Cities Grid --- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.city-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
}
.city-pill:hover { border-color: var(--primary); color: var(--primary); }

/* --- Direct Answer Card --- */
.direct-answer {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.direct-answer__label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.direct-answer p { color: var(--text); font-size: 1.05rem; margin: 0; }

/* --- Prose block --- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h3 { margin-top: 1.5rem; margin-bottom: 0.6rem; color: var(--text-muted); }
.prose p { color: var(--text-muted); }
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ul li { color: var(--text-muted); margin-bottom: 0.4rem; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.prose table th { background: var(--bg-card); padding: 10px 14px; text-align: left; font-family: var(--font-head); font-size: 0.9rem; border-bottom: 1px solid var(--primary); }
.prose table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.93rem; }

/* --- CTA Band --- */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0d0f14 0%, #1e1708 100%);
  border-top: 1px solid rgba(245,158,11,0.2);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: var(--text-muted); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { font-size: 1.05rem; padding: 16px 36px; }

/* --- Footer --- */
.site-footer {
  background: #090b10;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.site-footer__brand {}
.site-footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.site-footer__tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.site-footer__desc { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; }
.site-footer__col h5 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__col ul li a {
  color: var(--text-dim);
  font-size: 0.87rem;
  transition: color 0.2s;
}
.site-footer__col ul li a:hover { color: var(--primary); }
.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-footer__copy {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.site-footer__credit {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.site-footer__credit a { color: var(--text-muted); }
.site-footer__credit a:hover { color: var(--primary); }

/* Dark section overrides (contrast) */
.site-footer p, .site-footer li, .site-footer span { color: var(--text-dim); }
.site-footer__brand-name { color: var(--text) !important; }

/* --- Form --- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.hp-field { display: none !important; }
.form-success {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  display: none;
}
.form-success h4 { color: var(--primary); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); font-size: 0.95rem; }
.form-error { color: #f87171; font-size: 0.85rem; margin-top: 0.3rem; }

/* --- Related Strip --- */
.related-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.2s;
}
.related-card:hover { border-color: var(--primary); transform: translateY(-2px); color: inherit; }
.related-card__icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.related-card__title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.related-card__desc { font-size: 0.8rem; color: var(--text-dim); }

/* --- Page inner (content pages) --- */
.page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Scroll animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .fade-up.in-view { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section { padding: 56px 0; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(13,15,20,0.99);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    z-index: 200;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; width: 100%; border-radius: 0; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row--reverse { direction: ltr; }
  .svc-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .related-strip { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .mini-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero__trust { gap: 1rem; }
  .trust-strip__inner { gap: 1rem; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-amber { color: var(--primary); }
.fw-700 { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-y-2 > * + * { margin-top: 0.75rem; }
