/* McDonnell-Price Roofing — Design System: Apex Structural */
/* Fonts: Hanken Grotesk (headings) + Work Sans (body) */

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

:root {
  /* Palette */
  --primary:        #091426;
  --primary-mid:    #1e293b;
  --primary-light:  #3c475a;
  --green:          #006d30;
  --green-mid:      #005323;
  --green-light:    #e8f5ec;
  --green-accent:   #79db8d;
  --surface:        #f8f9ff;
  --surface-low:    #eff4ff;
  --surface-mid:    #e5eeff;
  --surface-high:   #dce9ff;
  --white:          #ffffff;
  --text:           #0b1c30;
  --text-muted:     #45474c;
  --outline:        #75777d;
  --border:         #c5c6cd;
  --border-light:   #e2e8f0;

  /* Typography */
  --font-head: 'Hanken Grotesk', Arial, sans-serif;
  --font-body: 'Work Sans', Arial, sans-serif;

  /* Spacing */
  --section-gap: 72px;
  --container:   1280px;
  --gutter:      32px;
  --radius-sm:   2px;
  --radius:      4px;
  --radius-md:   6px;
  --radius-lg:   8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-mid); }
ul { list-style: none; }

/* ── Type Scale ── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--text); font-weight: 700; line-height: 1.2; }
.display-lg { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.headline-lg { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 700; letter-spacing: -0.01em; }
.headline-md { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
.headline-sm { font-size: 1.25rem; font-weight: 600; }
.label-caps  { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
p { line-height: 1.7; }

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-gap) 0; }
.section-sm { padding: 60px 0; }
.bg-surface { background: var(--surface); }
.bg-dark { background: var(--primary); color: var(--white); }
.bg-dark-mid { background: var(--primary-mid); color: var(--white); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  height: 64px; gap: 24px;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 42px; width: auto; display: block; }
.header-phone { color: var(--text-muted); font-size: 0.85rem; white-space: nowrap; }
.header-phone a { color: var(--primary); font-weight: 700; font-size: 0.95rem; }
.header-phone a:hover { color: var(--green); }

/* ── NAV ── */
.site-nav-wrap { display: flex; align-items: center; gap: 0; }
.nav-list { display: flex; flex-wrap: nowrap; align-items: center; gap: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block; padding: 22px 14px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); white-space: nowrap;
  transition: color 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--green); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 16px; padding: 8px 18px;
  background: var(--green); color: var(--white) !important;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: var(--radius); transition: background 0.2s;
  white-space: nowrap; align-self: center;
}
.nav-cta:hover { background: var(--green-mid) !important; color: var(--white) !important; }

/* Dropdowns */
.nav-list > li:hover > .dropdown,
.nav-list > li:focus-within > .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--primary); min-width: 260px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08); border-top: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3); z-index: 300;
}
.dropdown li a {
  display: block; padding: 11px 18px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.15s;
}
.dropdown li:last-child a { border-bottom: 0; }
.dropdown li a:hover { background: rgba(255,255,255,0.05); color: var(--white); padding-left: 24px; }
.dropdown-arrow { font-size: 0.6em; opacity: 0.6; margin-left: 3px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 1px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 580px; display: flex; align-items: center;
  background: var(--primary); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center top; opacity: 0.3;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,20,38,0.92) 50%, rgba(9,20,38,0.3) 100%); }
.hero-content { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 90px var(--gutter); width: 100%; }
.hero-inner { max-width: 640px; }
.hero-tag {
  display: inline-block; font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green-accent); margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badge {
  font-family: var(--font-head); font-size: 0.73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px; border-radius: var(--radius);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius); font-family: var(--font-head);
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s; border: 2px solid transparent; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-dark { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-mid); color: var(--white); }

/* ── SPLIT SECTION ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-img { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 14px; display: block; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.split-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.split-badge { font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-mid); background: var(--green-light); padding: 5px 12px; border-radius: var(--radius); }

/* ── OVERLINE LABEL ── */
.overline { display: block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 12px; }
.section-intro { max-width: 560px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-top: 12px; }

/* ── SERVICE CARDS (image-topped) ── */
.services-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.services-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card-img { border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: border-color 0.2s; }
.service-card-img:hover { border-color: var(--border); }
.service-card-img .card-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-mid); }
.service-card-img .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card-img:hover .card-photo img { transform: scale(1.04); }
.service-card-img .card-body { padding: 20px; }
.service-card-img .card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; font-family: var(--font-head); }
.service-card-img .card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); }
.card-link:hover { color: var(--green-mid); }
.card-link i { transition: transform 0.2s; }
.card-link:hover i { transform: translateX(3px); }

/* Feature card (first card, spans 2 cols) */
.service-card-feat {
  border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--primary); color: var(--white); grid-column: span 2; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px;
}
.service-card-feat .feat-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.service-card-feat .feat-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,20,38,0.9) 0%, transparent 60%); }
.service-card-feat .feat-body { position: relative; z-index: 1; padding: 28px; }
.service-card-feat .feat-body .label-caps { color: var(--green-accent); margin-bottom: 8px; }
.service-card-feat .feat-body h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.service-card-feat .feat-body p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 16px; }

/* ── STATS BAND ── */
.stats-band { background: var(--primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--green-accent); }
.stat-label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }

/* ── TRUST ITEMS ── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.trust-items { display: flex; flex-direction: column; gap: 24px; }
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: var(--radius-lg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--green); }
.trust-item h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.trust-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Accred badges */
.accred-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.accred-badge { font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-mid); background: var(--green-light); padding: 6px 14px; border-radius: var(--radius); border: 1px solid rgba(0,109,48,0.15); }

/* ── NEWS FEED ── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: var(--surface-low); border-radius: var(--radius-lg); padding: 24px; border-left: 3px solid var(--green); }
.news-card .news-tag { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 10px; }
.news-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── TESTIMONIALS (dark cards) ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--primary-mid); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 16px; right: 24px; font-size: 6rem; color: rgba(255,255,255,0.06); font-family: Georgia, serif; line-height: 1; pointer-events: none; }
.testimonial-card blockquote { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.8; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; color: #f5a623; }
.testimonial-stars svg { fill: #f5a623; width: 16px; height: 16px; }
.testimonial-author { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); }
.testimonial-company { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── PAGE FEATURE IMAGE ── */
.page-feature-img { width: 100%; height: 320px; overflow: hidden; }
.page-feature-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ── PAGE HERO ── */
.page-hero { background: var(--primary); padding: 56px 0 44px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: 14px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: center; font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }

/* ── CONTENT LAYOUT ── */
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-nav { background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.sidebar-nav h4 { background: var(--primary); color: var(--white); padding: 14px 18px; font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-nav ul li a { display: block; padding: 11px 18px; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); border-bottom: 1px solid var(--border-light); transition: all 0.15s; }
.sidebar-nav ul li:last-child a { border-bottom: 0; }
.sidebar-nav ul li a:hover, .sidebar-nav ul li a.active { background: var(--green-light); color: var(--green-mid); }
.sidebar-cta { background: var(--primary); color: var(--white); border-radius: var(--radius-lg); padding: 24px; margin-top: 20px; }
.sidebar-cta h4 { color: var(--white); font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.sidebar-cta a.btn { font-size: 0.78rem; }

/* Prose */
.prose h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--text); border-bottom: 2px solid var(--border-light); padding-bottom: 10px; margin-bottom: 1em; margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-top: 1.5em; margin-bottom: 0.5em; }
.prose p { font-size: 0.97rem; line-height: 1.8; color: var(--text-muted); }
.prose ul { list-style: none; padding: 0; margin-bottom: 1.2em; }
.prose ul li { position: relative; padding-left: 1.4em; font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 6px; }
.prose ul li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 0.8rem; top: 4px; }

/* Check list */
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; color: var(--text-muted); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: ''; flex-shrink: 0; width: 22px; height: 22px; background: var(--green-light); border-radius: 50%; display: inline-block; margin-top: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006d30' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.team-card { background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 20px 16px; text-align: center; transition: border-color 0.2s; }
.team-card:hover { border-color: var(--border); }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin: 0 auto 12px; }
.team-card h4 { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card p { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--green); margin: 0; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3; background: var(--surface-mid); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: rgba(9,20,38,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); width: 36px; height: 36px; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: 0 24px 80px rgba(0,0,0,0.6); display: block; }
.lightbox-close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: var(--white); cursor: pointer; opacity: 0.7; transition: opacity 0.2s; padding: 8px; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: var(--white); cursor: pointer; padding: 16px 14px; border-radius: var(--radius-md); transition: background 0.2s; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail .icon { width: 44px; height: 44px; background: var(--primary); border-radius: var(--radius-lg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--white); }
.contact-detail h4 { font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.97rem; color: var(--text); line-height: 1.6; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,109,48,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── ACCREDITATIONS SECTION ── */
.accred-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.accred-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 16px 24px; text-align: center; min-width: 120px; transition: border-color 0.2s; }
.accred-item:hover { border-color: var(--green); }
.accred-item i { color: var(--green); margin-bottom: 8px; }
.accred-item span { display: block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); }

/* ── ACCREDITATION LOGOS STRIP ── */
.accred-strip { background: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.accred-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px 56px; margin-top: 44px; }
.accred-logo-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.accred-logo-item img { height: 64px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: filter 0.25s, opacity 0.25s; }
.accred-logo-item img:hover { filter: grayscale(0%); opacity: 1; }
.accred-logo-label { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.text-center { text-align: center; }

/* ── CTA BAND ── */
.cta-band { background: var(--green); padding: 80px 0; text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ── FOOTER ── */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: 14px; }
.footer-logo-text { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1rem; line-height: 1.3; }
.footer-logo-text span { display: block; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.45); margin-top: 2px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.6); align-items: flex-start; }
.footer-contact-item i { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-accred { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.footer-accred span { background: rgba(255,255,255,0.08); padding: 3px 10px; border-radius: var(--radius); font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-card-feat { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse { direction: ltr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: 1fr; }
  :root { --section-gap: 80px; }
}
@media (max-width: 768px) {
  .site-nav-wrap { display: none; }
  .nav-list { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 64px; left: 0; right: 0; background: var(--primary); z-index: 300; padding-bottom: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav-list.open { display: flex; }
  .site-nav-wrap.open { display: block; }
  .nav-list > li > a { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.82rem; color: rgba(255,255,255,0.75); }
  .nav-list > li > a:hover, .nav-list > li > a.active { color: var(--green); }
  .dropdown { position: static; box-shadow: none; border-radius: 0; background: rgba(255,255,255,0.04); display: block; border: 0; }
  .dropdown li a { padding-left: 32px; color: rgba(255,255,255,0.65); }
  .dropdown li a:hover { color: var(--white); }
  .nav-cta { margin: 12px 16px; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .header-phone { display: none; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .service-card-feat { grid-column: span 1; }
  .news-grid { grid-template-columns: 1fr; }
  :root { --section-gap: 60px; }
}
@media (max-width: 480px) {
  .hero { min-height: 440px; }
  .hero-content { padding-top: 56px; padding-bottom: 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
