/* ============================================
   CHALLENGER IRRIGATION — SHARED STYLESHEET
   ============================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --red-light:  #e60000;
  --gold:       #F5A623;
  --gold-dark:  #d4891e;
  --black:      #111111;
  --dark:       #1a1a1a;
  --gray:       #555555;
  --light-gray: #f5f5f5;
  --border:     #e0e0e0;
  --white:      #ffffff;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Lato', sans-serif;
  --shadow:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.22);
  --radius:     4px;
  --radius-lg:  8px;
  --max-w:      1200px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -120px; left: 0;
  background: var(--red); color: #fff;
  padding: 10px 20px; z-index: 9999; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--black); color: rgba(255,255,255,.85);
  padding: 7px 0; font-size: 13px; font-family: var(--font-body);
}
.topbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.emergency-pill {
  background: var(--red); color: #fff;
  padding: 2px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
}

/* ── ALERT BANNER ── */
.alert-banner {
  background: var(--gold); color: var(--black);
  text-align: center; padding: 10px 20px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.alert-banner a { color: var(--red); text-decoration: none; margin-left: 14px; }
.alert-banner a:hover { text-decoration: underline; }

/* ── HEADER / NAV ── */
header {
  background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.1);
  position: sticky; top: 0; z-index: 900;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.header-left { display: flex; align-items: center; gap: 14px; }
.bbb-header img { height: 40px; width: auto; }

.logo { text-decoration: none; line-height: 1; }
.logo-challenger {
  font-family: var(--font-head); font-size: 30px; font-weight: 700;
  color: var(--gold); -webkit-text-stroke: 1px var(--red-dark);
  display: block; line-height: 1;
}
.logo-irrigation {
  font-family: var(--font-body); font-size: 15px; font-style: italic;
  color: var(--red); font-weight: 400; display: block;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a, .nav-item > .nav-link {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--dark); text-decoration: none;
  padding: 8px 12px; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.main-nav > a:hover, .nav-item > .nav-link:hover,
.main-nav > a.active, .nav-item > .nav-link.active { color: var(--red); background: var(--light-gray); }

/* Dropdown */
.nav-item { position: relative; }
.nav-arrow { font-size: 9px; transition: transform .25s; }
.nav-item:hover .nav-arrow, .nav-item:focus-within .nav-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg); min-width: 220px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all .22s;
  z-index: 200;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-family: var(--font-head);
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; color: var(--dark); text-decoration: none;
  border-bottom: 1px solid #f0f0f0; transition: all var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--light-gray); color: var(--red); padding-left: 22px; }
.dropdown-icon { font-size: 16px; }

/* Call CTA in nav */
.nav-call {
  background: var(--red) !important; color: var(--white) !important;
  padding: 11px 18px !important; border-radius: var(--radius) !important;
  font-size: 14px !important; font-weight: 700 !important;
  animation: pulse-red 2.5s infinite;
}
.nav-call:hover { background: var(--red-dark) !important; }
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(204,0,0,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(204,0,0,0); }
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 600px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(153,0,0,.92) 0%, rgba(204,0,0,.82) 45%, rgba(0,0,0,.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 60px 20px 80px;
  display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 2px; margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(32px,4.5vw,58px);
  font-weight: 700; line-height: 1.05; text-transform: uppercase;
  color: var(--white); text-shadow: 2px 2px 8px rgba(0,0,0,.4); margin-bottom: 14px;
}
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.9); margin-bottom: 22px; font-weight: 300; max-width: 520px; }
.hero-checks { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.hero-checks li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.95); font-size: 15px; }
.hero-checks .ck { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Wave bottom */
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 54px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 20%, 0 80%);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 14px 26px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.btn-red   { background: var(--red);   color: var(--white); }
.btn-red:hover   { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold  { background: var(--gold);  color: var(--black); }
.btn-gold:hover  { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-lg { font-size: 18px; padding: 16px 32px; }

/* ── LEAD FORM ── */
.lead-form {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(0,0,0,.35); overflow: hidden;
}
.lead-form-head {
  background: var(--red); padding: 20px 24px; text-align: center;
}
.lead-form-head h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 3px;
}
.lead-form-head p { color: rgba(255,255,255,.82); font-size: 13px; }
.lead-form-body { padding: 24px; }
.fg { margin-bottom: 13px; }
.fg label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px; color: var(--gray); margin-bottom: 4px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 10px 13px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--dark);
  transition: border-color var(--transition); background: var(--white);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--red);
}
.form-btn {
  width: 100%; background: var(--red); color: var(--white);
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 14px; border: none; border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition); margin-top: 4px;
}
.form-btn:hover { background: var(--red-dark); }
.form-note { text-align: center; font-size: 12px; color: #999; margin-top: 8px; }
.form-success {
  display: none; text-align: center; padding: 16px;
  background: #e8f5e9; border-radius: var(--radius);
  color: #2e7d32; font-weight: 700; margin-top: 10px; font-size: 15px;
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--black); padding: 18px 20px; }
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: var(--white); font-family: var(--font-head);
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px;
}
.trust-icon { color: var(--gold); font-size: 20px; }
.trust-sep { width: 1px; height: 26px; background: rgba(255,255,255,.15); }

/* ── STATS BAR ── */
.stats-bar { background: var(--red); padding: 32px 20px; }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.stat { text-align: center; color: var(--white); }
.stat-num { font-family: var(--font-head); font-size: 46px; font-weight: 700; line-height: 1; }
.stat-num em { color: var(--gold); font-style: normal; }
.stat-lbl { font-size: 12px; opacity: .82; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* ── SECTION WRAPPER ── */
.section { padding: 72px 20px; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--dark); }
.inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(26px,3.5vw,40px);
  font-weight: 700; text-transform: uppercase; line-height: 1.1;
  color: var(--dark); margin-bottom: 14px;
}
.section-title span { color: var(--red); }
.section-title.light { color: var(--white); }
.section-sub { font-size: 16px; color: var(--gray); max-width: 600px; font-weight: 300; margin-bottom: 46px; }
.section-sub.light { color: rgba(255,255,255,.65); }
.tc { text-align: center; }
.tc .section-sub { margin: 0 auto 46px; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all .3s;
  border-bottom: 4px solid transparent;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--red); }
.svc-img {
  height: 210px; overflow: hidden; position: relative;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-img-fallback {
  height: 210px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.svc-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 {
  font-family: var(--font-head); font-size: 21px; font-weight: 700;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px;
}
.svc-body p { color: var(--gray); font-size: 15px; margin-bottom: 16px; line-height: 1.65; flex: 1; }
.svc-list { list-style: none; margin-bottom: 20px; }
.svc-list li { font-size: 14px; color: var(--gray); padding: 4px 0; display: flex; align-items: center; gap: 7px; }
.svc-list li::before { content: '✓'; color: var(--red); font-weight: 700; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-family: var(--font-head); font-size: 13px;
  font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .4px;
  transition: gap var(--transition); margin-top: auto;
}
.svc-link:hover { gap: 12px; }

/* ── PHOTO GALLERY ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── EMERGENCY BANNER ── */
.emerg {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 40px 20px;
}
.emerg-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.emerg-text h2 {
  font-family: var(--font-head); font-size: 28px; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.emerg-text p { color: rgba(255,255,255,.88); font-size: 15px; max-width: 520px; }

/* ── WHY CHOOSE ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 22px;
  border-top: 4px solid var(--red); box-shadow: var(--shadow);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-card h4 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  text-transform: uppercase; color: var(--dark); margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.area-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 28px 18px; text-align: center;
  transition: all var(--transition); cursor: default;
}
.area-card:hover { background: rgba(204,0,0,.25); border-color: var(--red); }
.area-flag { font-size: 26px; margin-bottom: 10px; }
.area-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.area-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }
.seo-tag-cloud {
  margin-top: 28px; padding: 18px 20px;
  background: rgba(255,255,255,.05); border-radius: var(--radius-lg);
  text-align: center; font-size: 13px; color: rgba(255,255,255,.45); line-height: 2.2;
}
.seo-tag-cloud strong { color: rgba(255,255,255,.65); margin-right: 6px; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; padding: 18px 22px;
  text-align: left; font-family: var(--font-head); font-size: 16px; font-weight: 600;
  color: var(--dark); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; transition: background var(--transition);
}
.faq-q:hover { background: var(--light-gray); }
.faq-q.open { background: var(--red); color: var(--white); }
.faq-arrow { font-size: 13px; transition: transform .3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 4px 22px 20px; font-size: 15px; color: var(--gray); line-height: 1.75; }
.faq-item.active .faq-a { max-height: 400px; }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: 36px; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.contact-info h2 span { color: var(--gold); }
.contact-info > p { opacity: .78; margin-bottom: 28px; font-size: 16px; }
.c-items { display: flex; flex-direction: column; gap: 16px; }
.c-item { display: flex; align-items: flex-start; gap: 14px; }
.c-icon { width: 44px; height: 44px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.c-item h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 3px; }
.c-item a, .c-item p { color: var(--white); text-decoration: none; font-size: 16px; font-weight: 700; }
.c-item a:hover { color: var(--gold); }
.hours-rows { margin-top: 4px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.hours-row:last-child { border-bottom: none; color: var(--gold); font-weight: 700; }
.dark-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px 28px; }
.dark-form h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.dark-form .fg label { color: rgba(255,255,255,.65); }
.dark-form .fg input, .dark-form .fg select, .dark-form .fg textarea {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--white);
}
.dark-form .fg input::placeholder, .dark-form .fg textarea::placeholder { color: rgba(255,255,255,.3); }
.dark-form .fg select option { background: var(--dark); }
.dark-form .fg input:focus, .dark-form .fg select:focus, .dark-form .fg textarea:focus { border-color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--black); color: var(--white); padding: 52px 20px 0; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px;
}
.footer-brand .logo-challenger { font-size: 32px; }
.footer-brand .logo-irrigation { font-size: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); margin: 10px 0 16px; line-height: 1.7; }
.footer-bbb-img { margin-top: 8px; }
.footer-bbb-img img { height: 60px; width: auto; background: #fff; padding: 5px; border-radius: 3px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--gold);
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,.58); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.38); }
.footer-licenses { font-size: 11px; color: rgba(255,255,255,.28); margin-top: 3px; }
.footer-bottom-bbb img { height: 38px; background: #fff; padding: 4px; border-radius: 3px; }

/* ── FLOATING CTA ── */
.float-cta {
  display: none;
  position: fixed; bottom: 22px; right: 22px;
  background: var(--red); color: var(--white);
  width: 62px; height: 62px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(204,0,0,.5);
  z-index: 800; text-decoration: none; animation: pulse-red 2.2s infinite;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: linear-gradient(105deg, var(--red-dark) 0%, var(--red) 60%, #8B0000 100%);
  padding: 60px 20px 70px; position: relative; overflow: hidden;
}
.page-hero::after {
  content:''; position:absolute; bottom:-1px; left:0; right:0; height:44px;
  background: var(--white); clip-path: polygon(0 100%,100% 100%,100% 15%,0 85%);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index:1; }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(30px,4vw,52px);
  font-weight: 700; text-transform: uppercase; color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,.3); margin-bottom: 10px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 580px; font-weight: 300; margin-bottom: 20px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── CONTENT BLOCK ── */
.content-2col { display: grid; grid-template-columns: 1fr 420px; gap: 52px; align-items: start; }
.content-2col.rev { grid-template-columns: 420px 1fr; }
.content-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-img img { width: 100%; height: 340px; object-fit: cover; }
.content-body h2 { font-family: var(--font-head); font-size: 30px; font-weight:700; text-transform:uppercase; margin-bottom:12px; color:var(--dark); }
.content-body h2 span { color: var(--red); }
.content-body p { color: var(--gray); font-size: 15px; line-height:1.75; margin-bottom:14px; }
.check-list { list-style:none; margin:16px 0 22px; }
.check-list li { display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--dark); padding:6px 0; border-bottom:1px solid #f0f0f0; }
.check-list li:last-child { border-bottom:none; }
.check-list li::before { content:'✓'; color:var(--red); font-weight:700; font-size:16px; flex-shrink:0; margin-top:1px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr 360px; }
  .content-2col { grid-template-columns: 1fr; }
  .content-2col.rev { grid-template-columns: 1fr; }
  .content-img img { height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .main-nav { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:var(--white); padding:12px; box-shadow:var(--shadow-lg); gap:4px; z-index:500; }
  .main-nav.open { display:flex; }
  .main-nav > a, .nav-item > .nav-link { padding:12px 14px; }
  .dropdown { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; background:var(--light-gray); margin:6px 0; border-radius:var(--radius); }
  .dropdown a { padding:10px 16px; }
  .hamburger { display:flex; }
  .header-inner { position:relative; }
  .hero-inner { grid-template-columns:1fr; }
  .services-grid, .why-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .emerg-inner { flex-direction:column; text-align:center; }
  .float-cta { display:flex; }
  .trust-sep { display:none; }
  .areas-grid { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .section { padding:52px 20px; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns:1fr; }
  .hero-ctas { flex-direction:column; }
  .trust-inner { gap:12px; }
}
