/* =====================================================
   APEX ROOFING CO. — Industrial Precision × Modern Trust
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --navy:       #1B2B4B;
  --navy-dk:    #0F1D35;
  --navy-lt:    #253C65;
  --steel:      #3D5A80;
  --steel-lt:   #5A7FA8;
  --orange:     #E8601C;
  --orange-dk:  #C44E10;
  --orange-lt:  #F07030;
  --slate:      #4A5568;
  --slate-lt:   #718096;
  --cream:      #F8F9FB;
  --cream-dk:   #EEF0F5;
  --white:      #FFFFFF;
  --charcoal:   #1A202C;
  --text-body:  #374151;
  --text-muted: #6B7280;
  --border:     #E2E8F0;
  --red:        #C53030;
  --gold:       #D4A017;

  --font-head:  'Oswald', 'Arial Narrow', sans-serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(27,43,75,0.08);
  --shadow-md:  0 4px 24px rgba(27,43,75,0.14);
  --shadow-lg:  0 8px 48px rgba(27,43,75,0.22);

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;

  --container:  1160px;
  --transition: 0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--charcoal); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; color: var(--charcoal); letter-spacing: 0.01em; }
p { color: var(--text-muted); }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.875rem 1.875rem; border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,96,28,0.35); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }
.btn--lg { font-size: 0.9375rem; padding: 1.0625rem 2.375rem; }
.btn--xl { font-size: 1rem; padding: 1.1875rem 2.75rem; }

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy); transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.nav__inner { display: flex; align-items: center; height: 74px; gap: 2rem; }
.nav__logo {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--white); flex-shrink: 0; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__logo span { color: var(--orange); }
.nav__links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav__link {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav__phone {
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  color: var(--orange); letter-spacing: 0.03em; margin-left: 0.5rem;
  white-space: nowrap;
}
.nav__cta { margin-left: 0.75rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 36px; height: 36px; padding: 6px; margin-left: auto; }
.nav__burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; }
.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--navy-dk); flex-direction: column;
  padding: 2rem 1.5rem; gap: 0.25rem; overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile-close { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 1.25rem; color: rgba(255,255,255,0.6); padding: 0.5rem; line-height: 1; }
.nav__mobile .nav__link { font-size: 1.0625rem; padding: 0.875rem 1rem; color: rgba(255,255,255,0.8); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative; min-height: calc(100vh - 74px);
  display: flex; align-items: center;
  background: var(--navy-dk);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1800&q=85&fit=crop');
  background-size: cover; background-position: center top;
  opacity: 0.55;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,18,35,0.98) 0%, rgba(15,29,53,0.92) 35%, rgba(15,29,53,0.65) 60%, rgba(15,29,53,0.18) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 5rem 1.5rem;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.375rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 700;
  color: var(--white); line-height: 1.0; margin-bottom: 1.375rem;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.hero__headline em { font-style: normal; color: var(--orange); }
.hero__sub {
  font-size: 1.0625rem; color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem; max-width: 540px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.6); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero__trust-item::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* =====================
   EMERGENCY STRIP
   ===================== */
.emergency-strip {
  background: var(--orange); padding: 0.875rem 0;
  text-align: center;
}
.emergency-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--white);
}
.emergency-strip__inner a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* =====================
   TRUST BAR
   ===================== */
.trust-bar { background: var(--white); border-bottom: 2px solid var(--border); padding: 1.25rem 0; }
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0.5rem 2.5rem; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item__icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.trust-item__label { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; }
.trust-item__sub { font-size: 0.7rem; color: var(--text-muted); }

/* =====================
   SECTION COMMONS
   ===================== */
.section { padding: 5.5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--charcoal); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.02em;
}
.section-sub {
  font-size: 1.0625rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.7; margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* =====================
   SERVICE CARDS
   ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem 1.75rem;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card__title { font-family: var(--font-head); font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 0.625rem; text-transform: uppercase; letter-spacing: 0.03em; }
.service-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.service-card__link { font-size: 0.8125rem; font-weight: 700; color: var(--orange); letter-spacing: 0.04em; text-transform: uppercase; }
.service-card__link:hover { color: var(--orange-dk); }

/* =====================
   INSPECTION CTA SPLIT
   ===================== */
.inspect-cta { background: var(--orange); padding: 4.5rem 0; }
.inspect-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.inspect-cta__title { font-family: var(--font-head); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.inspect-cta__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.85); max-width: 480px; }
.inspect-cta__actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; flex-shrink: 0; }

/* =====================
   WHY US
   ===================== */
.why-us { background: var(--navy); padding: 5.5rem 0; }
.why-us__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.why-us__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 1.75rem 1.5rem; text-align: center;
  transition: all var(--transition);
}
.stat-box:hover { background: rgba(255,255,255,0.1); border-color: var(--orange); }
.stat-box__num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 0.375rem; }
.stat-box__label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.why-us__text .section-eyebrow { color: var(--orange); }
.why-us__title { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1.25rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.75rem 0; }
.why-item { display: flex; gap: 0.875rem; align-items: flex-start; }
.why-item__icon { color: var(--orange); font-weight: 700; font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.why-item > div > strong { font-size: 0.9375rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 0.2rem; }
.why-item > div > p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* =====================
   INSURANCE CLAIMS SECTION
   ===================== */
.insurance-section { background: var(--cream-dk); padding: 5.5rem 0; }
.insurance-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.insurance-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.insurance-image img { width: 100%; height: 420px; object-fit: cover; display: block; }
.insurance-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
}
.insurance-text .section-title { text-align: left; font-size: 2rem; }
.insurance-text p { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 1rem; }
.insurance-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0; }
.insurance-step { display: flex; gap: 1rem; align-items: flex-start; }
.insurance-step__num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.insurance-step strong { font-size: 0.9375rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 0.2rem; }
.insurance-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   PROCESS
   ===================== */
.process-section { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 1rem; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); z-index: 0; }
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: var(--shadow-sm); border: 3px solid var(--orange);
}
.process-step__title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.625rem; text-transform: uppercase; letter-spacing: 0.04em; }
.process-step__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* =====================
   GALLERY
   ===================== */
.gallery-section { background: var(--cream-dk); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,29,53,0.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item__label { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--white); letter-spacing: 0.03em; text-transform: uppercase; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--cream); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 1.875rem;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card__quote { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.72; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-card__author strong { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); display: block; }
.testimonial-card__author span { font-size: 0.75rem; color: var(--text-muted); }
.testimonial-disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 1.75rem; font-style: italic; }

/* =====================
   SERVICE AREAS
   ===================== */
.areas-section { background: var(--navy); padding: 4rem 0; }
.areas-inner { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.areas-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.areas-title span { display: block; font-size: 0.8rem; color: var(--orange); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.areas-list { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.area-tag {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75);
  font-size: 0.8125rem; font-weight: 500; padding: 0.375rem 0.875rem;
  border-radius: 100px; border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}
.area-tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* =====================
   PRICING
   ===================== */
.pricing-section { background: var(--cream-dk); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 0.5rem; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 2.5rem 2rem;
  position: relative; transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card--featured { background: var(--navy); border-color: var(--navy); transform: scale(1.04); box-shadow: var(--shadow-lg); }
.pricing-card--featured:hover { transform: scale(1.04) translateY(-3px); }
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.3rem 1.1rem;
  border-radius: 100px; white-space: nowrap;
}
.pricing-card__tier { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.875rem; }
.pricing-card--featured .pricing-card__tier { color: var(--orange); }
.pricing-card__price { font-family: var(--font-head); font-size: 2.75rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; line-height: 1; }
.pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card__price span { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }
.pricing-card--featured .pricing-card__price span { color: rgba(255,255,255,0.5); }
.pricing-card__list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; padding: 0; }
.pricing-card__list li { font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.625rem; }
.pricing-card__list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pricing-card--featured .pricing-card__list li { color: rgba(255,255,255,0.8); }

/* =====================
   CTA BANNER
   ===================== */
.cta-banner { background: var(--navy-dk); padding: 5rem 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1400&q=80&fit=crop');
  background-size: cover; background-position: center; opacity: 0.08;
}
.cta-banner__inner { position: relative; z-index: 1; text-align: center; }
.cta-banner__title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1rem; }
.cta-banner__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 2.5rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--charcoal); padding: 4rem 0 0; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand .nav__logo { font-size: 1.5rem; color: var(--white); display: inline-block; margin-bottom: 0.75rem; }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }
.footer__address { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 0.625rem; }
.footer__phone { font-family: var(--font-head); font-size: 1.0625rem; color: var(--orange); font-weight: 600; display: block; margin-bottom: 0.25rem; letter-spacing: 0.02em; }
.footer__email { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer__email:hover, .footer__phone:hover { color: var(--orange-lt); }
.footer__nav h5 { font-family: var(--font-head); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer__nav a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 0.625rem; transition: color var(--transition); }
.footer__nav a:hover { color: var(--orange); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; gap: 1rem; flex-wrap: wrap; }
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__legal-link { font-size: 0.8125rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal-link:hover { color: var(--orange); }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero { background: var(--navy); padding: 5rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1200&q=80&fit=crop');
  background-size: cover; background-position: center; opacity: 0.1;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title { font-family: var(--font-head); font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1rem; }
.page-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* =====================
   SPLIT SECTIONS
   ===================== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }
.split-section__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-section__image img { width: 100%; height: 420px; object-fit: cover; display: block; }
.split-section__text .section-eyebrow { display: block; margin-bottom: 0.75rem; }
.split-section__text .section-title { text-align: left; font-size: 2rem; }
.split-section__text p { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 1rem; }

/* =====================
   ABOUT PAGE — Team + Values
   ===================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-card__img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.25rem; border: 4px solid var(--orange); display: block; }
.team-card__name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.03em; }
.team-card__role { font-size: 0.8125rem; color: var(--orange); font-weight: 600; display: block; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card__bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info { padding-top: 0.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail__icon { font-size: 1.375rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 2px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =====================
   FORMS
   ===================== */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.375rem; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8125rem 1rem; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.9375rem; font-family: var(--font-sans);
  color: var(--charcoal); background: var(--cream); transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-consent { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1.25rem; }
.form-consent input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--orange); width: 16px; height: 16px; }
.form-consent a { color: var(--orange); text-decoration: underline; }

/* =====================
   MODAL
   ===================== */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(10,18,36,0.7); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2.25rem; width: 100%; max-width: 480px; position: relative; box-shadow: var(--shadow-lg); margin: auto; animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1); border-top: 5px solid var(--orange); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal__close { position: absolute; top: 1rem; right: 1rem; font-size: 1.125rem; color: var(--text-muted); padding: 0.5rem; line-height: 1; }
.modal__close:hover { color: var(--charcoal); }
.modal__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.modal__title { font-family: var(--font-head); font-size: 1.625rem; font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; text-transform: uppercase; letter-spacing: 0.02em; }
.modal__sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.success-message { display: none; flex-direction: column; align-items: center; text-align: center; padding: 2rem 0; }
.success-message__icon { font-size: 3rem; margin-bottom: 1rem; }
.success-message__title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; text-transform: uppercase; }
.success-message__text { font-size: 0.9375rem; color: var(--text-muted); }

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000; background: var(--charcoal); padding: 1.25rem 1.5rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.cookie-banner.show { display: block; }
.cookie-banner__inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.75); flex: 1; min-width: 260px; }
.cookie-banner__text a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn { font-size: 0.8125rem; font-weight: 700; padding: 0.625rem 1.25rem; border-radius: var(--radius-sm); cursor: pointer; }
.cookie-btn--accept { background: var(--orange); color: var(--white); border: none; }
.cookie-btn--decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: none; }

/* =====================
   LEGAL PAGES
   ===================== */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; margin: 2.25rem 0 0.75rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }
.legal-content p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 0.5rem; list-style: disc; line-height: 1.7; }
.legal-content a { color: var(--orange); text-decoration: underline; }

/* =====================
   ANIMATIONS
   ===================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .why-us__inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-us__stats { grid-template-columns: repeat(4, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .insurance-inner { gap: 3rem; }
  .split-section { gap: 3rem; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-3px); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .split-section--reverse { direction: ltr; }
  .split-section__image img { height: 280px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .insurance-inner { grid-template-columns: 1fr; }
  .insurance-image img { height: 280px; }
  .inspect-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .inspect-cta__actions { align-items: center; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 0.5rem 1.25rem; }
  .why-us__stats { grid-template-columns: 1fr 1fr; }
  .areas-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .section { padding: 4rem 0; }
  .hero__inner { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
