/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #047857;
  --primary-light: #059669;
  --primary-dark: #065f46;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-800: #334155;
  --gray-600: #475569;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --success: #22c55e;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.12);
  --transition: all .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-600); line-height: 1.7; background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--dark); line-height: 1.25; font-weight: 700; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--gray-50); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary); margin-bottom: 12px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--accent);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2.25rem; margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  font-family: inherit; text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER — TRANSPARENT → SOLID ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.header--transparent { background: transparent; }
.header--solid { background: var(--white); box-shadow: var(--shadow-md); padding: 10px 0; }
.header .container {
  display: flex; justify-content: space-between; align-items: center;
}
.header-center { display: flex; align-items: center; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9rem;
}
.header--transparent .header-phone { color: var(--white); }
.header--solid .header-phone { color: var(--dark); }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo:hover { opacity: .9; }
.logo-icon {
  width: 44px; height: 44px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.2rem; font-weight: 800; transition: var(--transition); }
.logo-tagline { font-size: .6rem; font-weight: 700; letter-spacing: 2.5px; color: var(--accent); text-transform: uppercase; }
.header--transparent .logo-name { color: var(--white); }
.header--solid .logo-name { color: var(--dark); }

/* Nav */
.nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 16px; font-weight: 500; border-radius: var(--radius-sm);
  font-size: .93rem; transition: var(--transition);
}
.nav-link svg { width: 12px; height: 12px; }
.header--transparent .nav-link { color: rgba(255,255,255,.85); }
.header--transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.header--solid .nav-link { color: var(--gray-600); }
.header--solid .nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(4,120,87,.05); }

/* Dropdowns */
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-xl); min-width: 220px; padding: 8px;
  z-index: 100; border: 1px solid var(--gray-200);
}
.mega-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-xl); min-width: 500px; padding: 28px;
  z-index: 100; border: 1px solid var(--gray-200); gap: 32px;
}
.nav-item:hover > .dropdown,
.nav-item.has-dropdown:hover > .mega-dropdown { display: flex; }
.dropdown { flex-direction: column; }
.dropdown ul { list-style: none; padding: 0; margin: 0; }
.dropdown ul li a {
  display: block; padding: 10px 14px; color: var(--gray-600);
  font-size: .9rem; border-radius: var(--radius-sm);
}
.dropdown ul li a:hover { background: var(--gray-50); color: var(--primary); }
.dropdown-col { flex: 1; }
.dropdown-col ul li a { padding: 7px 0; }
.dropdown-heading {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gray-400); margin-bottom: 10px;
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; width: 22px; height: 2px; border-radius: 2px; transition: var(--transition);
}
.header--transparent .hamburger span { background: var(--white); }
.header--solid .hamburger span { background: var(--dark); }

/* ===== SPLIT HERO ===== */
.hero { background: var(--dark); position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .15;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,120,87,.9) 0%, rgba(15,23,42,.95) 55%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px;
  align-items: center; padding: 140px 0 100px;
}
.hero-content h1 { font-size: 3rem; color: var(--white); margin-bottom: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 1.5rem; font-weight: 800; color: var(--accent); display: block; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

/* Hero form */
.hero-form-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-xl);
}
.hero-form-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.hero-form-card .form-subtext { font-size: .85rem; color: var(--gray-400); margin-bottom: 20px; }
.hero-form-card .form-group { margin-bottom: 14px; }
.hero-form-card input,
.hero-form-card select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  background: var(--gray-50); transition: var(--transition);
}
.hero-form-card input:focus,
.hero-form-card select:focus {
  outline: none; border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(4,120,87,.1);
}
.hero-form-card .btn { margin-top: 4px; }

/* Diagonal bottom clip */
.hero-clip {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; z-index: 3;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ===== SERVICES RIBBON (horizontal scroll) ===== */
.services-ribbon { padding: 80px 0 96px; }
.services-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 16px; margin: 0 -24px; padding-left: 24px; padding-right: 24px;
}
.services-scroll::-webkit-scrollbar { height: 6px; }
.services-scroll::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.services-scroll::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 3px; }

.ribbon-card {
  flex: 0 0 280px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  color: var(--gray-600);
}
.ribbon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ribbon-card-img { height: 180px; overflow: hidden; }
.ribbon-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ribbon-card:hover .ribbon-card-img img { transform: scale(1.05); }
.ribbon-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ribbon-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.ribbon-card-body p { font-size: .88rem; color: var(--gray-400); margin-bottom: 14px; flex: 1; }
.ribbon-card-link { font-weight: 600; color: var(--primary); font-size: .88rem; display: inline-flex; align-items: center; gap: 4px; }

/* ===== ZIGZAG ROWS ===== */
.zigzag { padding: 0; }
.zigzag-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 420px;
}
.zigzag-row:nth-child(even) .zigzag-img { order: 2; }
.zigzag-row:nth-child(even) .zigzag-text { order: 1; }
.zigzag-img { overflow: hidden; }
.zigzag-img img { width: 100%; height: 100%; object-fit: cover; }
.zigzag-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 72px;
}
.zigzag-text h2 { font-size: 1.75rem; margin-bottom: 16px; }
.zigzag-text p { margin-bottom: 20px; font-size: 1rem; }
.zigzag-text ul { margin-bottom: 24px; }
.zigzag-text ul li {
  padding: 6px 0 6px 24px; position: relative; font-size: .95rem;
}
.zigzag-text ul li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}
.zigzag-row:nth-child(odd) { background: var(--white); }
.zigzag-row:nth-child(even) { background: var(--gray-50); }

/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonial-section { padding: 96px 0; background: var(--white); }
.testimonial-wrapper { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-size: 3rem; color: var(--primary); line-height: 1; margin-bottom: 16px; opacity: .3;
}
.testimonial-text { font-size: 1.2rem; line-height: 1.8; color: var(--gray-800); font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; justify-content: center; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.testimonial-meta strong { display: block; font-weight: 600; color: var(--dark); }
.testimonial-meta span { font-size: .85rem; color: var(--gray-400); }
.testimonial-stars { display: flex; gap: 2px; justify-content: center; margin-bottom: 20px; }
.testimonial-google { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 16px; font-size: .8rem; color: var(--gray-400); }
.testimonial-google svg { width: 16px; height: 16px; }

.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer; transition: var(--transition); padding: 0;
}
.carousel-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

.carousel-arrows { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-arrow:hover { border-color: var(--primary); color: var(--primary); }
.carousel-arrow svg { width: 18px; height: 18px; }

/* ===== PROCESS STEPS ===== */
.process { padding: 72px 0; background: var(--dark); }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative; max-width: 800px; margin: 0 auto;
}
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 16.5%; right: 16.5%;
  height: 2px; background: rgba(255,255,255,.15);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; margin: 0 auto 16px;
}
.process-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.process-step p { color: rgba(255,255,255,.5); font-size: .88rem; }

/* ===== TABBED SERVICE AREAS ===== */
.areas-tabs { padding: 96px 0; }
.tab-buttons {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 28px; border-radius: 50px; border: 1px solid var(--gray-200);
  background: var(--white); color: var(--gray-600); font-weight: 600;
  font-size: .93rem; cursor: pointer; transition: var(--transition); font-family: inherit;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.tab-content h3 { font-size: 1.25rem; margin-bottom: 12px; }
.tab-content p { margin-bottom: 16px; }
.tab-neighborhoods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tab-neighborhoods span {
  padding: 6px 14px; background: var(--gray-50); border-radius: 50px;
  font-size: .85rem; color: var(--gray-600); border: 1px solid var(--gray-200);
}
.tab-map { border-radius: var(--radius); overflow: hidden; height: 300px; }
.tab-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== COMPACT CTA STRIP ===== */
.cta-strip {
  background: var(--primary); padding: 24px 0;
}
.cta-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cta-strip p { color: var(--white); font-size: 1.1rem; font-weight: 600; margin: 0; }
.cta-strip .btn { flex-shrink: 0; }

/* ===== 2-COL FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 48px;
}
.footer-brand p { margin-top: 16px; line-height: 1.7; font-size: .93rem; }
.footer-license { font-size: .8rem; color: var(--accent); margin-top: 12px; font-weight: 600; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.footer-links h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; font-weight: 700; }
.footer a { color: rgba(255,255,255,.6); display: block; padding: 4px 0; font-size: .88rem; }
.footer a:hover { color: var(--accent); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: .88rem; }
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center; font-size: .82rem;
}
.footer .logo-name { color: var(--white); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--primary); padding: 14px 20px; z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,.2);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--white); font-weight: 700; font-size: 1.05rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 50%, var(--primary-dark) 100%);
  color: var(--white); padding: 140px 0 72px;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 12px; color: var(--white); }
.page-hero p { font-size: 1.1rem; opacity: .8; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; margin-bottom: 16px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ===== STICKY CTA BAR (service pages) ===== */
.sticky-cta-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 14px 0; position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow);
}
.sticky-cta-bar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-cta-bar-text { font-weight: 600; color: var(--dark); font-size: .95rem; }
.sticky-cta-bar-actions { display: flex; gap: 12px; align-items: center; }
.sticky-cta-bar-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--primary); font-size: 1rem;
}

/* Full-width content sections (service pages) */
.content-section { padding: 64px 0; }
.content-section:nth-child(even) { background: var(--gray-50); }
.content-section h2 { font-size: 1.5rem; margin-bottom: 16px; }
.content-section p { margin-bottom: 16px; max-width: 800px; }
.content-section ul { margin-bottom: 16px; max-width: 800px; }
.content-section ul li { padding: 8px 0 8px 28px; position: relative; }
.content-section ul li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}

/* Bottom CTA form (service/area pages) */
.bottom-cta { padding: 80px 0; background: var(--gray-50); }
.bottom-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bottom-cta h2 { font-size: 1.75rem; margin-bottom: 24px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item__question {
  padding: 22px 0; font-weight: 600; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; gap: 16px;
}
.faq-item__question::after {
  content: '+'; font-size: 1.5rem; color: var(--primary); transition: var(--transition); flex-shrink: 0;
}
.faq-item.active .faq-item__question::after { content: '\2212'; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item__answer p { padding: 0 0 22px; color: var(--gray-600); line-height: 1.7; }
.faq-item.active .faq-item__answer { max-height: 500px; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--dark); font-size: .93rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit;
  background: var(--gray-50); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(4,120,87,.1);
}

/* ===== ABOUT — TIMELINE ===== */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding: 40px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200); transform: translateX(-50%);
}
.timeline-item { position: relative; margin-bottom: 48px; display: flex; }
.timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: 52%; }
.timeline-item:nth-child(even) { justify-content: flex-end; padding-left: 52%; }
.timeline-dot {
  position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px;
}
.timeline-card h3 { font-size: 1rem; margin-bottom: 4px; }
.timeline-card .timeline-year { font-size: .8rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.timeline-card p { font-size: .93rem; color: var(--gray-600); }

/* ===== REVIEWS — MASONRY ===== */
.masonry-grid { columns: 3; column-gap: 24px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 24px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
}
.masonry-item:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-text { font-size: .95rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.7; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-meta strong { font-weight: 600; color: var(--dark); font-size: .9rem; display: block; }
.review-meta span { font-size: .78rem; color: var(--gray-400); }
.review-google { display: inline-flex; align-items: center; gap: 4px; font-size: .75rem; color: var(--gray-400); margin-top: 12px; }
.review-google svg { width: 14px; height: 14px; }

/* Services 2-col list (area pages) */
.services-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.services-list-grid a {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: var(--gray-50); border-radius: var(--radius-sm);
  font-weight: 500; color: var(--gray-600); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.services-list-grid a:hover { border-color: var(--primary); color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 480px; }
  .zigzag-row { grid-template-columns: 1fr; min-height: auto; }
  .zigzag-img { height: 300px; }
  .zigzag-text { padding: 48px 24px; }
  .zigzag-row:nth-child(even) .zigzag-img { order: 0; }
  .zigzag-row:nth-child(even) .zigzag-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr 1fr; }
  .bottom-cta-grid { grid-template-columns: 1fr; }
  .tab-content { grid-template-columns: 1fr; }
  .mega-dropdown { min-width: 400px; }
  .masonry-grid { columns: 2; }
}

@media (max-width: 768px) {
  .hero-subtitle-full { display: none; }
  .hero h1 { font-size: 2.25rem; }
  .hero-grid { padding: 120px 0 80px; }
  .section { padding: 64px 0; }
  .section-header h2 { font-size: 1.5rem; }
  .services-ribbon { padding: 56px 0 64px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .testimonial-text { font-size: 1.05rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) { justify-content: flex-start; padding-left: 52px; padding-right: 0; }
  .timeline-dot { left: 20px; }

  .nav, .nav-list {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; padding: 80px 24px 24px;
    z-index: 998; overflow-y: auto;
  }
  .nav.active { display: flex; }
  .nav-link { color: var(--gray-600) !important; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--gray-100); width: 100%; }
  .dropdown, .mega-dropdown {
    position: static; box-shadow: none; border: none; min-width: 100%;
    padding: 0 0 0 16px; transform: none; display: none;
  }
  .nav-item.has-dropdown.active > .dropdown,
  .nav-item.has-dropdown.active > .mega-dropdown { display: block; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 56px; }
  .page-hero { padding: 120px 0 56px; }
  .page-hero h1 { font-size: 1.8rem; }
  .sticky-cta-bar-text { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-clip { height: 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-stats { gap: 16px; }
  .tab-buttons { gap: 6px; }
  .tab-btn { padding: 10px 18px; font-size: .85rem; }
  .services-list-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
