/* =====================================================
   SUMMIT ROOFING GROUP — Bold Craft × Steel Authority
   Charcoal / Signal Red / Stone White
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Variables --- */
:root {
  --charcoal:    #1C2128;
  --charcoal-dk: #11151A;
  --charcoal-lt: #2D3543;
  --red:         #CC3333;
  --red-dk:      #A82828;
  --red-lt:      #E04444;
  --stone:       #F2F3F5;
  --stone-dk:    #E2E4EA;
  --white:       #FFFFFF;
  --steel:       #6B7A8D;
  --steel-lt:    #9AAAB8;
  --border:      #DDE1E8;
  --text-body:   #2A3040;
  --text-muted:  #64707F;
  --gold:        #D4922A;

  --font-head:  'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-sans:  'Nunito Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(28,33,40,0.07);
  --shadow-md:  0 6px 24px rgba(28,33,40,0.13);
  --shadow-lg:  0 16px 56px rgba(28,33,40,0.2);

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --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); color: var(--text-body); background: var(--white); 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 { font-family: var(--font-head); line-height: 1.05; letter-spacing: 0.02em; color: var(--charcoal); }
h4, h5 { font-family: var(--font-sans); font-weight: 700; color: var(--charcoal); }
p { color: var(--text-muted); }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,51,51,0.38); }
.btn--charcoal { background: var(--charcoal); color: var(--white); }
.btn--charcoal:hover { background: var(--charcoal-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.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn--outline-red:hover { background: var(--red); color: var(--white); }
.btn--white { background: var(--white); color: var(--charcoal); }
.btn--white:hover { background: var(--stone); transform: translateY(-2px); }
.btn--lg { font-size: 0.9375rem; padding: 1.0625rem 2.5rem; }
.btn--xl { font-size: 1rem; padding: 1.1875rem 2.875rem; }

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(28,33,40,0.12); }
.nav__inner { display: flex; align-items: center; height: 70px; gap: 2rem; }
.nav__logo {
  font-family: var(--font-head); font-size: 1.625rem; font-weight: 400;
  color: var(--charcoal); flex-shrink: 0; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__logo span { color: var(--red); }
.nav__links { display: flex; align-items: center; gap: 0.125rem; margin-left: auto; }
.nav__link {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-body);
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--red); }
.nav__phone { font-weight: 800; font-size: 0.9375rem; color: var(--charcoal); flex-shrink: 0; }
.nav__phone:hover { color: var(--red); }
.nav__cta { flex-shrink: 0; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--charcoal); transition: all var(--transition); border-radius: 2px; }
.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--charcoal); flex-direction: column;
  padding: 5rem 2rem 2rem; 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; }
.nav__mobile .nav__link { font-size: 1.0625rem; padding: 0.875rem 1rem; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; }

/* =====================
   HERO — SPLIT LAYOUT
   ===================== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
}
.hero__image {
  position: relative; overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(28,33,40,0.4));
}
.hero__content {
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3.5rem; position: relative; overflow: hidden;
}
.hero__content::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(204,51,51,0.08);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: var(--white);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 1rem;
  border-radius: var(--radius-sm); margin-bottom: 1.75rem;
  width: fit-content;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  color: var(--white); line-height: 1.0;
  margin-bottom: 1.5rem; letter-spacing: 0.03em;
}
.hero__headline em { font-style: normal; color: var(--red); }
.hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem; line-height: 1.75; max-width: 400px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.hero__trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  font-weight: 600; letter-spacing: 0.03em;
}
.hero__trust-item::before { content: '✓'; color: var(--red); font-weight: 800; }

/* =====================
   STATS STRIP
   ===================== */
.stats-strip { background: var(--red); padding: 1.5rem 0; }
.stats-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-item__num {
  font-family: var(--font-head); font-size: 2.75rem; font-weight: 400;
  color: var(--white); line-height: 1; letter-spacing: 0.02em;
}
.stat-item__label {
  font-size: 0.75rem; color: rgba(255,255,255,0.75);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 0.2rem;
}
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.2); }

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

/* =====================
   SERVICES — IMAGE CARDS
   ===================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.svc-img-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.svc-img-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-img-card:hover img { transform: scale(1.05); }
.svc-img-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,33,40,0.92) 0%, rgba(28,33,40,0.3) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.svc-img-card__tag {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm); margin-bottom: 0.625rem; width: fit-content;
}
.svc-img-card__title {
  font-family: var(--font-head); font-size: 1.5rem;
  color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.375rem;
}
.svc-img-card__desc {
  font-size: 0.8125rem; color: rgba(255,255,255,0.7);
  line-height: 1.55; margin-bottom: 0.875rem;
}
.svc-img-card__link {
  font-size: 0.75rem; font-weight: 800; color: var(--red);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* =====================
   INSPECT STRIP
   ===================== */
.inspect-strip {
  background: var(--red); padding: 2.25rem 0;
}
.inspect-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.inspect-strip__text h3 {
  font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.25rem;
}
.inspect-strip__text p {
  font-size: 0.9375rem; color: rgba(255,255,255,0.82);
}
.inspect-strip__actions { display: flex; gap: 0.875rem; flex-shrink: 0; flex-wrap: wrap; }

/* =====================
   WHY US
   ===================== */
.why-us { background: var(--stone); padding: 5.5rem 0; }
.why-us__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-us__image { position: relative; }
.why-us__image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: block;
}
.why-us__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: var(--white); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; text-align: center; box-shadow: var(--shadow-md);
}
.why-us__badge__num {
  font-family: var(--font-head); font-size: 2.5rem; color: var(--white);
  line-height: 1; letter-spacing: 0.02em;
}
.why-us__badge__label {
  font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.why-list { display: flex; flex-direction: column; gap: 1.125rem; margin: 1.75rem 0; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item__check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 0.875rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
}
.why-item strong { font-size: 0.9375rem; font-weight: 700; color: var(--charcoal); display: block; margin-bottom: 0.2rem; }
.why-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =====================
   PROCESS — VERTICAL TIMELINE
   ===================== */
.process-section { background: var(--charcoal); padding: 5.5rem 0; }
.process-section .section-title { color: var(--white); }
.process-timeline {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; position: relative; margin-top: 1rem;
}
.process-step {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 2rem 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.09); border-color: rgba(204,51,51,0.4); }
.process-step__num {
  font-family: var(--font-head); font-size: 3.5rem; color: var(--red);
  line-height: 1; flex-shrink: 0; opacity: 0.9; letter-spacing: 0.02em;
}
.process-step__title {
  font-family: var(--font-head); font-size: 1.375rem; color: var(--white);
  letter-spacing: 0.03em; margin-bottom: 0.625rem;
}
.process-step__desc { font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.65; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--stone); border-radius: var(--radius-md);
  padding: 2rem 1.75rem; border: 2px solid transparent;
  transition: all var(--transition); position: relative;
}
.testimonial-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"'; font-family: Georgia, serif; font-size: 5rem;
  color: var(--red); opacity: 0.15; line-height: 1;
  position: absolute; top: 0.75rem; left: 1.25rem;
}
.testimonial-stars { color: #F4C542; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-size: 0.9375rem; color: var(--text-body); line-height: 1.7;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.testimonial-author__name { font-weight: 700; font-size: 0.9375rem; color: var(--charcoal); display: block; }
.testimonial-author__detail { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-disclaimer {
  text-align: center; font-size: 0.75rem; color: var(--steel-lt);
  margin-top: 2.5rem; font-style: italic;
}

/* =====================
   SERVICE AREAS
   ===================== */
.areas-section { background: var(--stone); padding: 4.5rem 0; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; margin-top: 2rem; }
.area-tag {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 100px; padding: 0.5rem 1.25rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-body);
  transition: all var(--transition);
}
.area-tag:hover { border-color: var(--red); color: var(--red); }

/* =====================
   PRICING
   ===================== */
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius-md);
  padding: 2.5rem 2rem; transition: all var(--transition); position: relative;
}
.pricing-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card--featured {
  background: var(--charcoal); border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.625rem;
}
.pricing-card--featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-name {
  font-family: var(--font-head); font-size: 1.875rem; color: var(--charcoal);
  letter-spacing: 0.03em; margin-bottom: 0.375rem;
}
.pricing-card--featured .pricing-name { color: var(--white); }
.pricing-price {
  font-family: var(--font-head); font-size: 3rem; color: var(--charcoal);
  line-height: 1; letter-spacing: 0.02em; margin-bottom: 0.25rem;
}
.pricing-card--featured .pricing-price { color: var(--white); }
.pricing-price span { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 600; }
.pricing-period {
  font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.pricing-card--featured .pricing-period { color: rgba(255,255,255,0.45); }
.pricing-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.pricing-card--featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; gap: 0.625rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--text-body);
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-features li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; }

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-section { background: var(--stone); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 2px solid var(--border); overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.375rem 1.5rem; text-align: left;
  font-size: 1rem; font-weight: 700; color: var(--charcoal);
  cursor: pointer; gap: 1rem; transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; color: var(--steel); transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* =====================
   CTA BANNER
   ===================== */
.cta-banner { background: var(--charcoal); padding: 5rem 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1741446458387-74132b7d49cc?w=1400&q=75&fit=crop');
  background-size: cover; background-position: center; opacity: 0.07;
}
.cta-banner__inner { position: relative; z-index: 1; text-align: center; }
.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); letter-spacing: 0.03em; margin-bottom: 1rem;
}
.cta-banner__title em { font-style: normal; color: var(--red); }
.cta-banner__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--charcoal-dk); padding: 4.5rem 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--white);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.875rem;
  display: block;
}
.footer__logo span { color: var(--red); }
.footer__tagline { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer__contact a {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--red); }
.footer__col h5 {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block; color: rgba(255,255,255,0.55); font-size: 0.875rem;
  margin-bottom: 0.5rem; transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* =====================
   MODAL
   ===================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(17,21,26,0.72); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 480px; padding: 2.5rem;
  position: relative; box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--red);
  max-height: 90vh; overflow-y: auto;
}
.modal__close {
  position: absolute; top: 1.125rem; right: 1.25rem;
  font-size: 1.375rem; color: var(--steel); line-height: 1;
  padding: 0.375rem; transition: color var(--transition);
}
.modal__close:hover { color: var(--red); }
.modal__icon { font-size: 2.25rem; margin-bottom: 0.875rem; }
.modal__title { font-family: var(--font-head); font-size: 2rem; color: var(--charcoal); letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.modal__sub { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.375rem; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8125rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.9375rem; color: var(--text-body);
  transition: border-color var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-consent {
  display: flex; gap: 0.625rem; align-items: flex-start;
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 1.25rem; cursor: pointer;
}
.form-consent input { width: auto; flex-shrink: 0; margin-top: 0.15rem; }
.form-consent a { color: var(--red); }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.success-message { display: none; text-align: center; padding: 1.5rem 0; }
.success-message.show { display: block; }
.success-message__icon { font-size: 3rem; margin-bottom: 1rem; }
.success-message__title { font-family: var(--font-head); font-size: 2rem; color: var(--charcoal); letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.success-message__text { color: var(--text-muted); }

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  background: var(--charcoal-dk); border-top: 3px solid var(--red);
  padding: 1.125rem 0; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; justify-content: space-between;
}
.cookie-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.72); flex: 1; line-height: 1.55; }
.cookie-banner__text a { color: var(--red); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.cookie-btn--accept { background: var(--red); color: var(--white); }
.cookie-btn--accept:hover { background: var(--red-dk); }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--decline:hover { color: var(--white); }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  background: var(--charcoal); 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-1774195144649-bf602602b457?w=1200&q=80&fit=crop');
  background-size: cover; background-position: center; opacity: 0.09;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.875rem;
}
.page-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 560px; margin: 0 auto; }

/* =====================
   ABOUT PAGE SPECIFICS
   ===================== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-section--reverse .split-section__image { order: 2; }
.split-section--reverse .split-section__text { order: 1; }
.split-section__image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-section__text .section-eyebrow { text-align: left; }
.split-section__text .section-title { font-size: 2.25rem; text-align: left; margin-bottom: 1rem; }
.split-section__text p { margin-bottom: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.team-card { text-align: center; }
.team-card__img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 1.125rem; box-shadow: var(--shadow-sm); }
.team-card__name { font-size: 1.125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 0.625rem; }
.team-card__bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: var(--stone); border-radius: var(--radius-md); padding: 2rem 1.75rem; border-left: 4px solid var(--red); }
.value-card__icon { font-size: 2rem; margin-bottom: 0.875rem; }
.value-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.625rem; }
.value-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info { background: var(--charcoal); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.75rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.625rem; }
.contact-info p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-bottom: 1.75rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail__icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.contact-detail__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; }
.contact-detail__value { color: var(--white); font-weight: 600; font-size: 0.9375rem; }
.contact-detail__value a { color: var(--white); }
.contact-form-wrap { background: var(--stone); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.75rem; color: var(--charcoal); letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.contact-form-wrap .section-eyebrow { text-align: left; }

/* =====================
   LEGAL PAGES
   ===================== */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-head); font-size: 1.625rem; color: var(--charcoal); letter-spacing: 0.03em; margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--red); }

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

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { height: 50vh; }
  .hero__content { padding: 3.5rem 2rem; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-us__badge { bottom: 1rem; right: 1rem; }
  .process-timeline { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section--reverse .split-section__image { order: 0; }
  .split-section--reverse .split-section__text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav__links, .nav__phone, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .value-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-strip__inner { gap: 1.5rem; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1rem; }
  .inspect-strip__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
}
