/* ============================================
   REMILLARD HOME REPAIR
   Franchise-grade design system
   Modeled from Bath Fitter / West Shore Home / Statewide Remodeling
   ============================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Tokens ---------- */
:root {
  --navy: #0a2540;
  --navy-light: #1a3a5c;
  --navy-dark: #061a2e;
  --cta: #e86a2a;
  --cta-hover: #d25a1a;
  --cta-light: #f08040;
  --cream: #f8f6f3;
  --cream-dark: #f0eeeb;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e0ddd8;
  --border-light: #eae8e4;
  --stars: #ffc221;
  --footer-bg: #0a1929;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1240px;
  --section-py: clamp(4rem, 8vw, 6.5rem);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3vw + .5rem, 2.75rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 1.5vw + .5rem, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: .6rem; }
.section-tag {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--cta); margin-bottom: .5rem; display: block;
}
.section-desc { color: var(--text-light); font-size: 1.05rem; line-height: 1.65; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all .2s var(--ease);
  padding: .85rem 2rem;
}
.btn-sm { padding: .65rem 1.5rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--cta); color: #fff; border-color: var(--cta); }
.btn-primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,106,42,.4); }
.btn-secondary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--cream); box-shadow: 0 4px 12px rgba(0,0,0,.12); }

/* ============================================
   HEADER — Single tier, phone + CTA visible
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-link { flex-shrink: 0; }
.logo { height: 62px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > a,
.nav-dropdown-trigger {
  color: var(--text); font-size: .9rem; font-weight: 600;
  padding: .5rem 1rem; transition: color .2s var(--ease);
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .3rem;
}
.main-nav > a:hover, .nav-dropdown-trigger:hover { color: var(--cta); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: .5rem 0; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease); border-top: 3px solid var(--cta);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: .6rem 1.25rem; color: var(--text);
  font-size: .9rem; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--navy); }

.header-right { display: flex; align-items: center; gap: 1.25rem; }
.header-phone {
  display: flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: 1rem; color: var(--navy);
  transition: color .2s var(--ease);
}
.header-phone:hover { color: var(--cta); }
.header-phone svg { stroke: var(--cta); }
.header-cta { font-size: .85rem; padding: .65rem 1.5rem; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.mobile-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; }

/* ============================================
   HERO — Full-width cinematic (franchise standard)
   ============================================ */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,37,64,.82) 0%, rgba(10,37,64,.45) 55%, rgba(10,37,64,.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 9rem 0 5rem;
}
.hero-badge {
  display: inline-block;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--cta);
  border: 2px solid rgba(232,106,42,.5); padding: .45rem 1.15rem;
  border-radius: var(--radius); margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 800;
  line-height: 1.08;
}
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-cta-row { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-cta-row .btn-lg { padding: 1rem 2.25rem; font-size: .95rem; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--navy); padding: 1rem 0; }
.trust-bar-inner { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: .5rem; color: #fff;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
}
.trust-item svg { stroke: var(--cta); flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: var(--section-py) 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  display: block; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); transition: all .25s var(--ease);
  text-align: center; padding: 2.5rem 1.75rem 2rem;
  border: 1px solid var(--border-light);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--cta); }
.service-img {
  width: 130px; height: 130px; margin: 0 auto 1.25rem;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--border);
  transition: border-color .25s var(--ease);
}
.service-card:hover .service-img { border-color: var(--cta); }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-body h3 { margin-bottom: .5rem; color: var(--navy); }
.service-body p { color: var(--text-light); font-size: .92rem; margin-bottom: 1rem; line-height: 1.6; }
.service-link {
  font-weight: 700; font-size: .85rem;
  color: var(--cta); text-transform: uppercase; letter-spacing: .04em;
}

/* Full services tags */
.all-services-list { margin-top: 3.5rem; text-align: center; }
.all-services-list h3 { margin-bottom: 1.25rem; }
.services-tag-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.service-tag {
  padding: .4rem 1rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .8rem; font-weight: 600; color: var(--text-light);
}

/* ============================================
   CTA DARK — Navy break section
   ============================================ */
.cta-dark {
  padding: 3.5rem 0; background: var(--navy);
}
.cta-dark-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-dark-text h2 { color: #fff; font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: .35rem; }
.cta-dark-text p { color: rgba(255,255,255,.65); font-size: 1rem; }
.cta-dark-actions { display: flex; gap: .85rem; flex-shrink: 0; }

/* Old CTA banner (accent strip) */
.cta-banner { padding: 1rem 0; background: var(--cta); text-align: center; }
.cta-banner-inner { display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.cta-banner-text h2 { color: #fff; font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 0; display: inline; }
.cta-banner-text p { display: none; }
.cta-banner-actions { display: flex; gap: .75rem; }
.cta-banner .btn-primary { background: #fff; color: var(--cta-hover); border-color: #fff; }
.cta-banner .btn-primary:hover { background: var(--cream); }

/* ============================================
   WHY US — Icon + text rows
   ============================================ */
.why-us { padding: var(--section-py) 0; background: var(--cream); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem; max-width: 960px; margin: 0 auto;
}
.benefit-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--border-light);
  transition: all .25s var(--ease);
}
.benefit-card:hover { box-shadow: var(--shadow); border-color: var(--border); }
.benefit-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(232,106,42,.08); border-radius: 50%;
}
.benefit-icon svg { stroke: var(--cta); }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: .35rem; color: var(--navy); }
.benefit-card p { color: var(--text-light); font-size: .92rem; line-height: 1.6; margin: 0; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio { padding: var(--section-py) 0; background: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.portfolio-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.portfolio-item--wide { grid-column: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,41,.75) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: opacity .25s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: #fff; font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .03em; }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; }

/* ============================================
   ABOUT
   ============================================ */
.about-cta { padding: var(--section-py) 0; background: var(--cream); }
.about-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-text .section-tag { text-align: left; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: .85rem; color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.about-stats { display: flex; gap: 2.5rem; margin: 2rem 0; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.25rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { padding: var(--section-py) 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border-light); border-left: 4px solid var(--cta);
  box-shadow: var(--shadow);
  transition: all .25s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { color: var(--stars); font-size: 1.15rem; margin-bottom: .75rem; letter-spacing: 2px; }
.review-text { font-size: .95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.15rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.review-author strong { display: block; font-size: .9rem; color: var(--navy); }
.review-source { font-size: .78rem; color: var(--text-muted); }

/* ============================================
   SERVICE AREAS
   ============================================ */
.service-areas { padding: var(--section-py) 0; background: var(--cream); }
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.area-tag {
  padding: .55rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .88rem; font-weight: 600; color: var(--text-light);
  transition: all .2s var(--ease);
}
a.area-tag:hover { border-color: var(--navy); color: var(--navy); background: #fff; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: var(--section-py) 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-info .section-tag { text-align: left; }
.contact-info h2 { margin-bottom: .85rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 1.75rem; font-size: 1.05rem; line-height: 1.65; }
.contact-details { display: flex; flex-direction: column; gap: 1.15rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .85rem; }
.contact-detail svg { stroke: var(--navy); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: .9rem; color: var(--navy); }
.contact-detail a, .contact-detail span { font-size: .95rem; color: var(--text-light); }
.contact-detail a:hover { color: var(--cta); }
.social-links { display: flex; gap: .6rem; margin-top: .75rem; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.social-links a svg { fill: var(--text-muted); }
.social-links a:hover { background: var(--navy); }
.social-links a:hover svg { fill: #fff; }

/* Lead Form */
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .95rem; transition: border-color .2s var(--ease);
  margin-bottom: .65rem; background: #fff;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,37,64,.08);
}
.lead-form textarea { resize: vertical; }
.lead-form .btn { margin-top: .4rem; }
.form-note { text-align: center; color: var(--text-muted); font-size: .8rem; margin-top: .65rem; }

.contact-form-wrap {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 1.25rem; font-size: 1.25rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,.65); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { height: 70px; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.65; margin-bottom: .5rem; }
.footer-links h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.footer-links a, .footer-links p { display: block; font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: .5rem; transition: color .2s; }
.footer-links a:hover { color: var(--cta); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.15rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p, .footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom-links a:hover { color: var(--cta); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-dark); transform: translateX(100%);
  transition: transform .3s var(--ease);
}
.mobile-nav-overlay.active { transform: translateX(0); }
.mobile-nav-content { padding: 1.75rem; display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
.mobile-close { align-self: flex-end; background: none; border: none; color: #fff; font-size: 2.25rem; cursor: pointer; padding: .5rem; margin-bottom: 1.75rem; }
.mobile-nav-links { display: flex; flex-direction: column; margin-bottom: 1.75rem; }
.mobile-nav-links a {
  color: rgba(255,255,255,.8); font-size: 1.05rem; font-weight: 600;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-nav-links a:hover { color: var(--cta); }
.mobile-cta { margin-bottom: .7rem; }

/* ============================================
   PAGE HEROES (interior)
   ============================================ */
.page-hero {
  position: relative; padding: 10rem 0 3.5rem;
  background: var(--navy-dark); overflow: hidden;
  border-bottom: 4px solid var(--cta);
}
.page-hero-bg { position: absolute; inset: 0; opacity: .1; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 600px; }

/* Breadcrumb */
.breadcrumb { padding: .6rem 0; background: var(--cream); }
.breadcrumb-list { display: flex; gap: .4rem; font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-list li::after { content: "/"; margin-left: .4rem; color: var(--border); }
.breadcrumb-list li:last-child::after { content: ""; }
.breadcrumb-list a { color: var(--navy); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--cta); }

/* Content Sections */
.content-section { padding: var(--section-py) 0; background: var(--white); }
.content-section.alt { background: var(--cream); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { margin-bottom: .85rem; }
.content-text p { margin-bottom: .85rem; color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.content-text ul { margin-bottom: .85rem; }
.content-text li { padding: .35rem 0 .35rem 1.75rem; position: relative; color: var(--text-light); font-size: .95rem; }
.content-text li::before { content: ""; position: absolute; left: 0; top: .65rem; width: 8px; height: 8px; border-radius: 50%; background: var(--cta); }
.content-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.content-image img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

/* FAQ */
.faq { padding: var(--section-py) 0; background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius); margin-bottom: .65rem; box-shadow: var(--shadow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.35rem; cursor: pointer; font-weight: 700;
  font-size: .95rem; color: var(--navy); background: none;
  border: none; width: 100%; text-align: left;
}
.faq-question svg { flex-shrink: 0; transition: transform .2s var(--ease); stroke: var(--text-muted); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--cta); }
.faq-answer { padding: 0 1.35rem; max-height: 0; overflow: hidden; transition: all .3s var(--ease); }
.faq-item.active .faq-answer { padding: 0 1.35rem 1.1rem; max-height: 500px; }
.faq-answer p { color: var(--text-light); font-size: .95rem; line-height: 1.7; }

/* Compact Services */
.services-compact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-compact-card {
  display: flex; align-items: center; gap: .85rem; padding: 1.15rem;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  transition: all .25s var(--ease);
}
.service-compact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-compact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(232,106,42,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-compact-icon svg { stroke: var(--cta); }
.service-compact-card h4 { font-size: .95rem; margin-bottom: .1rem; }
.service-compact-card p { font-size: .8rem; color: var(--text-muted); }

/* Nearby */
.nearby-areas { display: flex; gap: .6rem; flex-wrap: wrap; }
.nearby-link {
  padding: .5rem 1rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .85rem; font-weight: 600; color: var(--text-light);
}
.nearby-link:hover { border-color: var(--navy); color: var(--navy); }

/* Thank You */
.thank-you { padding: 10rem 0 5rem; text-align: center; min-height: 70vh; display: flex; align-items: center; background: var(--white); }
.thank-you h1 { color: var(--navy); }
.thank-you p { max-width: 520px; margin: .85rem auto; color: var(--text-light); font-size: 1.05rem; }
.steps-list { max-width: 420px; margin: 1.75rem auto; text-align: left; }
.steps-list li { padding: .7rem 0; border-bottom: 1px solid var(--border-light); color: var(--text); display: flex; gap: .7rem; }
.steps-list li strong { color: var(--navy); }

/* Privacy */
.legal { padding: 9rem 0 4rem; background: var(--white); }
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 1.75rem; }
.legal-content h2 { font-size: 1.15rem; margin: 1.75rem 0 .7rem; }
.legal-content p { margin-bottom: .85rem; color: var(--text-light); font-size: .95rem; line-height: 1.7; }

/* Process Steps */
.process { padding: var(--section-py) 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; counter-reset: step; }
.process-step { text-align: center; counter-increment: step; }
.process-step::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy);
  color: #fff; font-weight: 800; font-size: 1.2rem; margin: 0 auto .85rem;
}
.process-step h3 { font-size: .95rem; margin-bottom: .35rem; }
.process-step p { font-size: .88rem; color: var(--text-light); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-cta { display: none; }
  .header-right { gap: .5rem; }
  .mobile-toggle { display: flex; }
  .hero { min-height: 60vh; }
  .hero-content { padding: 8rem 1rem 3.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item--wide { grid-column: span 1; }
  .about-cta-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .services-compact { grid-template-columns: repeat(2, 1fr); }
  .cta-dark-inner { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: 55vh; }
  .hero-content { padding: 7rem 1.5rem 3.5rem; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .trust-bar-inner { gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: .4rem; text-align: center; }
  .services-compact { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 7rem 0 2.5rem; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; align-items: center; }
  .trust-bar-inner { flex-direction: column; align-items: center; gap: .6rem; }
  .cta-dark-actions { flex-direction: column; width: 100%; }
  .cta-dark-actions .btn { width: 100%; }
}

/* Mobile sticky CTA bar */
@media (max-width: 1024px) {
  .mobile-cta-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--navy); padding: .75rem 1rem;
    display: flex; gap: .5rem; z-index: 999;
    box-shadow: 0 -2px 12px rgba(0,0,0,.15);
  }
  .mobile-cta-bar .btn { flex: 1; font-size: .85rem; padding: .75rem 1rem; }
}
