/* ============================================================
   SITE STYLES — All shared CSS for the entire site
   ============================================================ */

/* ── CSS Design Tokens ──────────────────────────────────────── */
:root {
  --color-primary: #1B4332;
  --color-secondary: #2D3748;
  --color-accent: #C2610B;
  --color-navy: #1A202C;
  --color-muted: #6b7280;
  --color-slate-50: #FAF7F2;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-stone-200: #e7e5e4;
  --font-display: 'Playfair Display', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Layout Utilities ────────────────────────────────────────── */
.container-wide {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}
.section-y { padding-block: clamp(3rem, 8vw, 6rem); }
.text-center { text-align: center; }
.text-navy { color: var(--color-navy); }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-muted); }
.text-white { color: #ffffff; }
.text-white-80 { color: rgba(255,255,255,0.8); }
.w-full { width: 100%; }
.justify-center { justify-content: center; }

/* ── Typography ──────────────────────────────────────────────── */
.font-display, h1, h2, h3, h4 { font-family: var(--font-display); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; }
h3 { font-size: 1.25rem; font-weight: 700; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: filter 0.15s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 0.625rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  transition: filter 0.15s;
}
.btn-primary-sm:hover { filter: brightness(1.1); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s;
}
.btn-phone:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Icons ───────────────────────────────────────────────────── */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.star-icon { width: 1rem; height: 1rem; color: var(--color-primary); }
.arrow-icon { width: 1rem; height: 1rem; transition: transform 0.2s; }

/* ── Grid Overlay (industrial pattern) ──────────────────────── */
.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image:
    linear-gradient(var(--color-primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: transparent;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled,
.site-header.menu-open {
  background-color: var(--color-secondary);
  box-shadow: var(--shadow-xl);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-primary);
  flex-shrink: 0;
}
.logo-svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.nav-btn:hover { color: #fff; }
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover { color: #fff; }
.chevron-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

/* Dropdown panels */
.nav-dropdown-wrap { position: relative; }
.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.75rem;
  z-index: 100;
}
.nav-dropdown-wrap:hover .dropdown-panel { display: block; }
.services-panel .services-grid {
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  padding: 0.75rem;
  width: min(460px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
.dropdown-item {
  display: block;
  min-width: 0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
  text-decoration: none;
}
.dropdown-item:hover { background: var(--color-slate-50); }
.dropdown-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.875rem;
  overflow-wrap: anywhere;
  transition: color 0.15s;
}
.dropdown-item:hover .dropdown-item-title { color: var(--color-primary); }
.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.areas-panel .areas-pills {
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  padding: 1rem;
  width: 18rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-pill {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--color-slate-200);
  border-radius: 9999px;
  color: var(--color-navy);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.area-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.header-cta { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .header-cta { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  background-color: var(--color-secondary);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-inner { padding-block: 1rem; }
.mobile-acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-acc-panel { padding: 0 0 0.5rem 1rem; }
.mobile-sub-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-sub-link:hover { color: #fff; }
.mobile-area-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-bottom: 0.5rem; }
.mobile-area-pill {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  text-decoration: none;
  transition: border-color 0.15s;
}
.mobile-area-pill:hover { border-color: rgba(255,255,255,0.5); }
.mobile-nav-link {
  display: block;
  color: #fff;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.mobile-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.25rem;
}
.border-top { border-top: 1px solid rgba(255,255,255,0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background-color: var(--color-secondary); color: #fff; }
.footer-grid {
  padding-block: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-brand { grid-column: span 1; }
}
.footer-biz-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-tagline { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; max-width: 20rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact-item:hover { color: #fff; }
.footer-icon { width: 1rem; height: 1rem; color: var(--color-primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-col-title { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; color: var(--color-primary); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 0.875rem; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-area-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-pill-sm {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.area-pill-sm:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.footer-license { margin-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); display: flex; flex-direction: column; gap: 0.25rem; }
.footer-sms-bar { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-sms-bar .container-wide { padding-block: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-sms-bar a { text-decoration: underline; transition: color 0.15s; }
.footer-sms-bar a:hover { color: rgba(255,255,255,0.8); }
.footer-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social-icon:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.footer-social-icon svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Google Reviews badge */
.reviews-badge-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.google-reviews-badge:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 20px rgba(66,133,244,0.18);
}
.google-reviews-badge__logo {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.google-reviews-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.google-reviews-badge__label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}
.google-reviews-badge__brand {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.01em;
}
.google-reviews-badge__arrow {
  width: 1.125rem;
  height: 1.125rem;
  color: #4285F4;
  flex-shrink: 0;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  padding-block: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-widget { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50; }
.chat-panel {
  margin-bottom: 0.75rem;
  width: 340px;
  max-width: calc(100vw - 2.5rem);
  background: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-stone-200);
  overflow: hidden;
  animation: fade-up 0.2s ease;
}
.chat-header {
  padding: 1rem 1.25rem;
  background-color: var(--color-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-title { font-family: var(--font-display); font-weight: 600; }
.chat-header-sub { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.chat-close { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.chat-close:hover { color: #fff; }
.chat-body { padding: 1.25rem; }
.chat-form { display: flex; flex-direction: column; gap: 0.75rem; }
.chat-intro { font-size: 0.875rem; color: var(--color-muted); }
.chat-thanks { text-align: center; padding: 1.5rem 0; }
.chat-thanks-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.chat-thanks-title { font-family: var(--font-display); font-weight: 600; color: var(--color-navy); }
.chat-fab {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-2xl);
  transition: filter 0.15s;
  border: none;
  cursor: pointer;
}
.chat-fab:hover { filter: brightness(1.1); }

/* ============================================================
   FORMS
   ============================================================ */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-slate-200);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-navy);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
}
.form-textarea { resize: none; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }
.consent-label { display: flex; align-items: flex-start; gap: 0.625rem; cursor: pointer; }
.consent-checkbox { width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; accent-color: var(--color-primary); }
.consent-text { font-size: 0.75rem; color: var(--color-muted); line-height: 1.6; }
.consent-link { color: var(--color-primary); text-decoration: underline; }
.form-error { font-size: 0.75rem; color: #dc2626; }
.form-disclaimer { font-size: 0.75rem; text-align: center; color: var(--color-muted); padding-top: 0.25rem; }

/* Lead form wrappers */
.lead-form-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-slate-200);
  padding: 1.5rem;
}
@media (min-width: 768px) { .lead-form-card { padding: 1.75rem; } }
.lead-form-full {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-slate-200);
  padding: 1.5rem;
}
@media (min-width: 768px) { .lead-form-full { padding: 2rem; } }
.lead-form-header { margin-bottom: 1.25rem; }
.lead-form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-navy); }
.lead-form-sub { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.25rem; }
.lead-form-fields { display: flex; flex-direction: column; gap: 0.75rem; }
.lead-form-success { text-align: center; padding: 1.5rem 0; }
.lead-form-success-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.lead-form-success-title { font-family: var(--font-display); font-weight: 600; color: var(--color-navy); font-size: 1.125rem; }
.lead-form-success-sub { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.5rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { max-width: 48rem; margin-bottom: 3rem; }
.section-header.text-center { margin-inline: auto; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}
.section-subtitle { margin-top: 1rem; font-size: 1.125rem; line-height: 1.6; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background-color: var(--color-secondary); border-bottom: 1px solid rgba(255,255,255,0.1); }
.trust-bar-inner {
  padding-block: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .trust-bar-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { width: 1.25rem; height: 1.25rem; color: var(--color-primary); flex-shrink: 0; }
.trust-label { color: #fff; font-weight: 600; font-size: 0.875rem; line-height: 1.3; }
.trust-sub { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background-color: var(--color-secondary);
  color: #fff;
  padding-block: clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.cta-inner { max-width: 48rem; margin-inline: auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,0.75); font-size: 1.125rem; margin-bottom: 2rem; line-height: 1.6; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-2xl);
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.0625rem;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { width: 1.25rem; height: 1.25rem; color: var(--color-primary); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { color: var(--color-muted); margin-top: 0.75rem; line-height: 1.7; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.process-connector {
  display: none;
  position: absolute;
  top: 1.75rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--color-stone-200);
}
@media (min-width: 768px) { .process-connector { display: block; } }
.process-step { text-align: center; }
.process-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.process-step-title { margin-top: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--color-navy); }
.process-step-desc { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.375rem; max-width: 14rem; margin-inline: auto; }

/* ============================================================
   SERVICE CARD
   ============================================================ */
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-stone-200);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}
.service-card:hover { box-shadow: var(--shadow-2xl); transform: translateY(-4px); }
.service-card-img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--color-navy); margin-bottom: 0.5rem; }
.service-card-desc { font-size: 0.875rem; color: var(--color-muted); flex: 1; }
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}
.service-card:hover .arrow-icon { transform: translateX(4px); }

/* ============================================================
   MAP EMBED
   ============================================================ */
.map-wrap { border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid var(--color-stone-200); box-shadow: var(--shadow-md); }
.map-iframe { width: 100%; height: 400px; display: block; border: none; }

/* ============================================================
   STAR RATING
   ============================================================ */
.stars { display: flex; gap: 2px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes chat-bounce {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-12px); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-10px); }
  80% { transform: translateY(-4px); }
}
.chat-bounce { animation: chat-bounce 1.1s ease; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up 0.2s ease; }

/* ============================================================
   HERO SECTION (shared base)
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  color: #fff;
  overflow: hidden;
  background-color: var(--color-secondary);
}
.page-hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; }

/* ============================================================
   PROSE (privacy / terms pages)
   ============================================================ */
.prose { font-size: 0.9375rem; line-height: 1.75; }
.prose p { margin-bottom: 1rem; color: #374151; }
.prose ul { margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc; }
.prose li { margin-bottom: 0.25rem; }
.prose strong { color: var(--color-navy); font-weight: 600; }
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h3 { margin-top: 1.25rem; margin-bottom: 0.5rem; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose-section { margin-bottom: 2rem; }
.prose-box {
  background: #fafaf9;
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.prose-contact-box {
  margin-top: 0.75rem;
  padding: 1rem;
  background: #fafaf9;
  border: 1px solid var(--color-stone-200);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-navy);
  line-height: 1.8;
}
.prose-info-grid {
  background: #fff;
  border: 1px solid var(--color-stone-200);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* ============================================================
   UTILITY BACKGROUNDS
   ============================================================ */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: var(--color-slate-50); }
.bg-secondary { background-color: var(--color-secondary); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
.lg-hidden { display: block; }
@media (min-width: 1024px) { .lg-hidden { display: none; } }
.lg-show { display: none; }
@media (min-width: 1024px) { .lg-show { display: inline-flex; } }
.lg-hide { display: inline-flex; }
@media (min-width: 1024px) { .lg-hide { display: none; } }

/* ============================================================
   PAINTER SITE — Signature Styles
   Amber accent, warm palette, brushstroke hero accent
   ============================================================ */

/* Amber accent color for star ratings and accents */
:root {
  --color-amber: #C2610B;
  --color-green-light: #D1FAE5;
  --color-cream: #FAF7F2;
}

/* Stars use amber for painting site */
.star-icon { color: #F59E0B !important; }

/* Hero brushstroke accent — a warm amber underline on hero headline */
.hero-headline .accent-underline {
  position: relative;
  display: inline-block;
}
.hero-headline .accent-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-amber);
  border-radius: 2px;
  opacity: 0.9;
}

/* Warm cream background for alternating sections */
.bg-slate-50 { background-color: var(--color-cream) !important; }

/* Service area chips — warm green tint */
.area-chip {
  border-color: rgba(27, 67, 50, 0.2);
  color: var(--color-primary);
  background: rgba(27, 67, 50, 0.05);
}
.area-chip:hover {
  background: rgba(27, 67, 50, 0.12);
  border-color: var(--color-primary);
}

/* Paint swatch badge in review cards */
.review-badge {
  background: rgba(27, 67, 50, 0.1);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Comparison section — warm good color */
.dot-good { background-color: var(--color-primary) !important; }
.comparison-good { border-color: var(--color-primary) !important; }
.comparison-label { font-family: var(--font-display); }

/* Process numbers — forest green circle with amber ring on hover */
.process-num {
  background-color: var(--color-primary) !important;
  transition: box-shadow 0.2s;
}
.process-step:hover .process-num {
  box-shadow: 0 0 0 4px rgba(194, 97, 11, 0.3) !important;
}

/* Section eyebrow — amber for warmth, brighter on dark bg */
.section-eyebrow { color: var(--color-amber) !important; }
.page-hero-eyebrow { color: var(--color-amber) !important; }
.bg-secondary .section-eyebrow { color: #F6C455 !important; }

/* Footer professional line */
.site-footer .footer-bottom-inner > div:last-child {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

/* Diff card title — bright amber accent bar */
.diff-title {
  position: relative;
  padding-left: 0.75rem;
}
.diff-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: #F6C455;
  border-radius: 2px;
}

/* Lead form focus border — green */
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

/* btn-primary hover — slightly more vivid green */
.btn-primary:hover { filter: brightness(1.12) !important; }

/* Hero proof pill — green tint */
.hero-proof-pill {
  background: rgba(27, 67, 50, 0.2) !important;
  border-color: rgba(27, 67, 50, 0.4) !important;
}

/* ── Portfolio Gallery (shared by our-work.html and the home page's
   "Recent Work" section — moved here so both pages can use it
   without duplicating CSS) ──────────────────────────────────── */
/* Horizontal scroll-snap carousel. Fixed item widths + min-width:0
   prevents the intrinsic width/height attributes on <img> (set for
   CLS prevention) from blowing out item sizing in a flex/grid layout —
   that mismatch was the cause of the previous broken layout. */
.portfolio-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 0.5rem;
  scrollbar-width: none;
  padding: 0.25rem 0.125rem;
}
.portfolio-grid::-webkit-scrollbar { display: none; }
.project-carousel { position: relative; padding-bottom: 2.5rem; }

.portfolio-item {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
  width: calc(100% - 2rem);
  max-width: none;
  scroll-snap-align: start;
}
@media (min-width: 640px) { .portfolio-item { width: calc((100% - 1rem) / 2); } }
@media (min-width: 1024px) { .portfolio-item { width: calc((100% - 3rem) / 4); } }

.portfolio-img-btn {
  display: block;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.portfolio-img-btn:hover .portfolio-img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.portfolio-img-btn:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-inner { text-align: left; }
.portfolio-cat-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-primary);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.375rem;
}
.portfolio-project-title { color: #fff; font-weight: 600; font-size: 0.875rem; }

.portfolio-image-error { background: var(--color-slate-100); border: 1px solid var(--color-slate-200); }
.portfolio-image-error::before {
  content: 'Image unavailable';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 600;
}
.portfolio-image-error .portfolio-overlay { opacity: 1; }
.gallery-arrow {
  position: absolute;
  z-index: 4;
  top: calc(50% - 1.25rem);
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  background: rgba(30,41,59,0.86);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-arrow:hover { background: var(--color-primary); }
.gallery-arrow:focus-visible, .gallery-dot:focus-visible { outline: 3px solid var(--color-amber); outline-offset: 3px; }
.gallery-arrow:disabled { opacity: 0.35; cursor: default; }
.gallery-arrow-prev { left: 0.75rem; }
.gallery-arrow-next { right: 0.75rem; }
.gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  min-height: 1rem;
}
.gallery-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: var(--color-slate-300);
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}
.gallery-dot-active { width: 1.5rem; background: var(--color-primary); }
@media (max-width: 639px) {
  .gallery-arrow { width: 2.5rem; height: 2.5rem; }
  .gallery-arrow-prev { left: 0.5rem; }
  .gallery-arrow-next { right: 0.5rem; }
  .portfolio-overlay { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-grid { scroll-behavior: auto; }
  .portfolio-img { transition: none; }
}
