/* ==========================================================================
   MERTEN LAND CLEARING & EXCAVATION — Shared Stylesheet
   Loveland, OH | Greater Cincinnati
   ========================================================================== */

/* ── VARIABLES & RESET ───────────────────────────────────────────────────── */
:root {
  --black:    #030303;
  --dark:     #090909;
  --charcoal: #111;
  --white:    #f7f4ee;
  --muted:    #bdb7ae;
  --red:      #d71920;
  --red-dark: #7e090d;
  --line:     rgba(255,255,255,.16);
  --max:      1180px;
  --font:     Arial, Helvetica, sans-serif;
  --display:  Impact, "Arial Black", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #000;
  color: var(--white);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  background: linear-gradient(rgba(255,255,255,.018) 50%, rgba(0,0,0,.018) 50%);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
  opacity: .45;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding-left: 20px; color: #ddd; }
ul li { margin: 9px 0; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 82px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  background: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.38), transparent);
  backdrop-filter: blur(2px);
}
.nav.scrolled {
  background: rgba(0,0,0,.88);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.nav-inner {
  width: 100%;
  max-width: 1380px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand img {
  width: 110px; height: 110px;
  object-fit: contain;
}
.brand span { display: block; font-size: 21px; line-height: .95; }
.brand small { display: block; font: 900 10px var(--font); letter-spacing: .18em; color: #ddd; }
.links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.links a { position: relative; opacity: .9; }
.links a:not(.cta-top):not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.links a:hover::after,
.links a.active::after { transform: scaleX(1); }

/* ── LOCATIONS DROPDOWN ──────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: default; display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { display: none !important; }
.nav-dropdown > a .nav-arrow { font-size: 9px; opacity: .7; transition: transform .2s ease; display: inline-block; }
.nav-dropdown:hover > a .nav-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: #0e0e0e; border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 8px; min-width: 420px;
  display: grid; grid-template-columns: 1fr 1fr;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 9px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #ccc !important; opacity: 1 !important;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: rgba(215,25,32,.12); color: #fff !important; }

.nav-phone {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--white);
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-phone::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: navpulse 2.2s ease-in-out infinite;
}
.nav-phone:hover { color: var(--red); }
.cta-top {
  border: 2px solid #fff;
  padding: 11px 18px;
  transition: .22s ease;
}
.cta-top:hover { background: #fff; color: #000; }
.menu {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

/* ── MOBILE NAV OVERLAY ──────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(28px, 8vw, 40px);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .2s ease;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .mob-phone {
  font-size: 20px;
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--red);
  border: 1px solid rgba(215,25,32,.4);
  padding: 12px 28px;
}
.mobile-nav .mob-phone:hover { background: rgba(215,25,32,.1); }
.mobile-nav .mobile-cta {
  border: 2px solid var(--red);
  background: var(--red);
  color: #fff;
  padding: 16px 36px;
  font-size: 16px;
  margin-top: 4px;
  transition: .22s ease;
  font-family: var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mobile-nav .mobile-cta:hover { background: #fff; border-color: #fff; color: #000; }
.mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  background: none; border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  opacity: .8;
  transition: opacity .2s ease;
}
.mobile-close:hover { opacity: 1; }

/* ── MOBILE STICKY CTA BAR ───────────────────────────────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 30px rgba(0,0,0,.6);
}
.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  font-family: var(--font);
}
.mobile-sticky .ms-call { background: var(--red); color: #fff; }
.mobile-sticky .ms-quote { background: #111; color: #fff; border-left: 1px solid rgba(255,255,255,.1); }

/* ── SCENE (full-bleed parallax hero) ───────────────────────────────────── */
.scene {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.scene::before {
  content: "";
  position: absolute;
  inset: -3%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  translate: 0 var(--shift, 0px);
  scale: 1.08;
  animation: kenburns 22s ease-out forwards;
  will-change: scale, translate;
}
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.44) 43%, rgba(0,0,0,.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18) 46%, rgba(0,0,0,.92) 100%);
}
.scene.right::after {
  background:
    linear-gradient(270deg, rgba(0,0,0,.88), rgba(0,0,0,.5) 46%, rgba(0,0,0,.18)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28) 50%, #000);
}

/* ── PAGE HERO (interior pages) ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
  padding-top: 82px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  scale: 1.06;
  animation: kenburns 28s ease-out forwards;
  will-change: scale;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.3) 60%, #000 100%);
}
.page-hero .copy { padding-bottom: 64px; }

/* ── COPY & TYPOGRAPHY ───────────────────────────────────────────────────── */
.copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 94px;
}
.right .copy { text-align: right; }
.right .copy p { margin-left: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px #000;
}
.eyebrow::before {
  content: "";
  width: 54px; height: 4px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(215,25,32,.75);
}
h1, h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .018em;
  line-height: .89;
  margin: 0;
  text-shadow: 0 5px 28px rgba(0,0,0,.82);
}
h1 { font-size: clamp(42px, 7vw, 88px); max-width: 1020px; }
h2 { font-size: clamp(30px, 5vw, 58px); max-width: 940px; }
h3 { font-family: var(--display); font-size: 28px; line-height: 1; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .03em; }
.right h2 { margin-left: auto; }
.copy p { max-width: 700px; margin: 20px 0 0; font-size: clamp(16px, 1.8vw, 20px); font-weight: 800; color: #eee; text-shadow: 0 2px 15px #000; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.right .actions { justify-content: flex-end; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 170px; min-height: 56px; padding: 0 24px;
  border: 2px solid #fff;
  background: rgba(255,255,255,.05);
  font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn:hover { background: #fff; color: #000; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.btn.red { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 34px rgba(215,25,32,.22); }
.btn.red:hover { background: #fff; border-color: #fff; color: #000; }
.btn.dark { background: #111; border-color: rgba(255,255,255,.25); color: #fff; }
.btn.dark:hover { background: #fff; border-color: #fff; color: #000; }

/* ── TICKER ──────────────────────────────────────────────────────────────── */
.ticker { position: relative; overflow: hidden; background: var(--red); color: #fff; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); font-family: var(--display); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 34px; padding: 13px 0; animation: marquee 28s linear infinite; }
.ticker span { font-size: 20px; }

/* ── PANELS ──────────────────────────────────────────────────────────────── */
.panel { position: relative; background: #070707; padding: 88px 24px; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 0, rgba(215,25,32,.12), transparent 28%); pointer-events: none; }
.panel.alt { background: #050505; }
.panel.light { background: #f3f0ea; color: #111; }
.panel.light::before { background: linear-gradient(135deg, rgba(215,25,32,.09), transparent 34%); }
.wrap { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; }
.label { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 900; letter-spacing: .16em; font-size: 13px; text-transform: uppercase; }
.panel.light .label { color: #111; }
.redline { display: inline-block; width: 54px; height: 4px; background: var(--red); box-shadow: 0 0 22px rgba(215,25,32,.5); }
.lead { max-width: 820px; color: #cfc9c0; font-size: 19px; margin: 18px 0 0; line-height: 1.6; }
.panel.light .lead { color: #444; }
.panel h2 { text-shadow: none; }
.panel.light h2 { color: #111; text-shadow: none; }

/* ── SPLIT BOXES ─────────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 38px; }
.box { border: 1px solid rgba(255,255,255,.14); padding: 32px; background: linear-gradient(145deg, #111, #080808); min-height: 220px; transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.box:hover { transform: translateY(-6px); border-color: rgba(215,25,32,.55); box-shadow: 0 22px 60px rgba(0,0,0,.38); }

/* ── SERVICE CARDS ───────────────────────────────────────────────────────── */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.service { min-height: 310px; position: relative; overflow: hidden; display: flex; align-items: flex-end; border: 1px solid rgba(255,255,255,.14); background: #111; isolation: isolate; transform: translateZ(0); }
.service::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; filter: saturate(.85) contrast(1.08); transition: transform .7s ease, filter .7s ease; will-change: transform, filter; }
.service:hover::before { transform: scale(1.1); filter: saturate(1.1) contrast(1.12); }
.service::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.22) 42%, rgba(0,0,0,.94) 100%); }
.service > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.08); transition: transform .7s ease, filter .7s ease; will-change: transform, filter; z-index: 0; }
.service:hover > img { transform: scale(1.1); filter: saturate(1.1) contrast(1.12); }
.service .shine { position: absolute; inset: -40%; z-index: 1; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.12) 48%, transparent 60%); transform: translateX(-80%) rotate(8deg); transition: transform .7s ease; }
.service:hover .shine { transform: translateX(80%) rotate(8deg); }
.service div:not(.shine) { position: relative; z-index: 2; padding: 20px; }
.service h3 { font-size: 22px; margin: 0 0 6px; }
.service p { margin: 0; color: #ccc; font-size: 13px; font-weight: 700; }
.svc-tag { display: inline-block; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }

/* ── STEPS ───────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.step { padding: 30px; border-top: 5px solid var(--red); background: linear-gradient(145deg, #121212, #090909); min-height: 220px; border-left: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); transition: .35s ease; }
.step:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,.38); }
.num { font-family: var(--display); font-size: 58px; color: var(--red); line-height: 1; margin-bottom: 14px; text-shadow: 0 0 28px rgba(215,25,32,.35); }

/* ── PROOF / STATS ───────────────────────────────────────────────────────── */
.proof-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; margin-top: 36px; }
.proof-img { min-height: 450px; background-image: var(--proof); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 28px 80px rgba(0,0,0,.35); position: relative; overflow: hidden; }
.proof-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.2)), linear-gradient(90deg, rgba(215,25,32,.16), transparent 40%); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.stat { background: #111; border: 1px solid rgba(255,255,255,.13); padding: 22px; transition: .25s; }
.stat:hover { border-color: rgba(215,25,32,.55); transform: translateY(-4px); }
.stat strong { display: block; font-family: var(--display); font-size: 47px; color: var(--red); line-height: 1; }
.stat span { display: block; margin-top: 6px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: #ddd; font-size: 12px; }

/* ── TESTIMONIALS / REVIEWS ──────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.review-card { background: #0d0d0d; border: 1px solid rgba(255,255,255,.12); padding: 28px 30px; border-left: 4px solid var(--red); transition: transform .3s ease, box-shadow .3s ease; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.stars { color: var(--red); font-size: 17px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { color: #bbb; font-size: 15px; line-height: 1.72; margin: 0 0 18px; font-style: italic; }
.reviewer { font-weight: 900; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #777; }
.reviewer strong { color: var(--white); margin-right: 4px; }
.reviewer span { color: #555; margin-left: 4px; }
.google-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: #555; margin-top: 10px; }
.google-badge::before { content: "G"; width: 16px; height: 16px; background: #fff; color: #4285f4; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; font-style: normal; }

/* ── FAQ ACCORDION ───────────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; }
details.faq-item { border-bottom: 1px solid rgba(255,255,255,.1); }
details.faq-item:first-of-type { border-top: 1px solid rgba(255,255,255,.1); }
summary.faq-q {
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(20px, 2.8vw, 26px);
  letter-spacing: .02em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--white);
  transition: color .2s ease;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after { content: "+"; font-family: var(--display); font-size: 28px; color: var(--red); flex-shrink: 0; transition: transform .25s ease; }
details[open] summary.faq-q::after { content: "\2212"; }
summary.faq-q:hover { color: var(--red); }
.faq-a { padding: 0 0 24px; color: #bbb; font-size: 16px; line-height: 1.72; max-width: 840px; }
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin: 0; }

/* ── GALLERY ─────────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #111; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px 16px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.88)); }
.gallery-service { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; padding: 3px 9px; margin-bottom: 5px; }
.gallery-location { display: block; font-size: 13px; font-weight: 900; letter-spacing: .06em; color: var(--white); text-transform: uppercase; }
.gallery-desc { display: block; font-size: 12px; color: #aaa; margin-top: 2px; }

/* ── QUOTE FORM ──────────────────────────────────────────────────────────── */
.quote-section { background: #f3f0ea; color: #111; padding: 94px 24px; position: relative; }
.quote-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(215,25,32,.12), transparent 34%); pointer-events: none; }
.quote-grid { position: relative; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; gap: 38px; align-items: start; }
.quote-section h2 { color: #111; text-shadow: none; }
.quote-section .lead { color: #333; }
.form { display: grid; gap: 14px; background: #fff; padding: 30px; border: 1px solid #d5d0c8; box-shadow: 0 26px 70px rgba(0,0,0,.16); }
.form input, .form textarea, .form select { width: 100%; border: 1px solid #bab2a8; background: #fff; min-height: 54px; padding: 14px 15px; font: 800 15px var(--font); color: #111; appearance: none; }
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid rgba(215,25,32,.25); border-color: var(--red); }
.form textarea { min-height: 134px; resize: vertical; }
.form button { border: 0; }
.form-success { display: none; text-align: center; padding: 52px 24px; background: #fff; border: 1px solid #d5d0c8; box-shadow: 0 26px 70px rgba(0,0,0,.16); }
.form-success.show { display: block; }
.form-success .check { font-family: var(--display); font-size: 56px; color: var(--red); line-height: 1; margin-bottom: 18px; }
.form-success h3 { font-family: var(--display); font-size: 30px; text-transform: uppercase; letter-spacing: .04em; color: #111; margin: 0 0 12px; text-shadow: none; }
.form-success p { color: #444; margin: 0; font-size: 16px; line-height: 1.6; }

/* ── SERVICES DETAIL PAGE ────────────────────────────────────────────────── */
.jump-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.jump-nav a { padding: 9px 16px; border: 1px solid rgba(255,255,255,.18); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--white); background: rgba(255,255,255,.04); transition: background .2s ease, border-color .2s ease; }
.jump-nav a:hover { background: var(--red); border-color: var(--red); }
.svc-section { padding: 64px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.svc-section:last-of-type { border-bottom: none; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 28px; }
.svc-img { min-height: 340px; background-image: var(--img); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.14); position: relative; overflow: hidden; }
.svc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(215,25,32,.14), transparent 40%); }
.svc-body h2 { font-size: clamp(30px, 4vw, 46px); max-width: 100%; margin: 0 0 18px; text-shadow: none; color: var(--white); }
.svc-body p { max-width: 100%; margin: 0 0 16px; font-size: 16px; font-weight: normal; color: #ccc; text-shadow: none; line-height: 1.65; }
.svc-body ul { margin: 0 0 24px; }
.svc-body .btn { margin-top: 8px; }

/* ── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.pillar { padding: 32px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg, #111, #080808); border-top: 4px solid var(--red); transition: transform .3s ease, box-shadow .3s ease; }
.pillar:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,.38); }
.pillar h3 { font-size: 22px; margin-bottom: 12px; }
.pillar p { color: #bbb; margin: 0; font-size: 15px; line-height: 1.65; }
.equip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.equip-card { padding: 24px 28px; border: 1px solid rgba(255,255,255,.13); background: #0d0d0d; }
.equip-card strong { display: block; font-family: var(--display); font-size: 20px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.equip-card span { display: block; font-size: 13px; color: #999; letter-spacing: .02em; line-height: 1.5; }
.county-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.county-block h3 { font-size: 18px; color: var(--red); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.county-block ul { color: #bbb; }
.county-block ul li { margin: 6px 0; font-size: 14px; }

/* ── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: start; }
.contact-info h3 { font-size: 22px; margin-bottom: 10px; color: #111; text-shadow: none; }
.contact-block { margin-bottom: 32px; }
.contact-block p { color: #444; font-size: 15px; margin: 0; text-shadow: none; font-weight: normal; max-width: 100%; line-height: 1.65; }
.contact-block a { color: var(--red); font-weight: 900; }
.contact-block a:hover { text-decoration: underline; }
.expect-list { list-style: none; padding: 0; margin: 20px 0 0; }
.expect-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid #e0dbd3; color: #333; font-size: 15px; }
.expect-list li:last-child { border-bottom: none; }
.expect-num { flex-shrink: 0; width: 28px; height: 28px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 14px; margin-top: 1px; }

/* ── AREAS TAGS ──────────────────────────────────────────────────────────── */
.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.areas span { border: 1px solid rgba(255,255,255,.24); padding: 10px 14px; font-weight: 900; letter-spacing: .08em; font-size: 12px; background: rgba(255,255,255,.04); }

/* ── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 28px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #777;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip span::before { content: ""; width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: #030303; color: #888; text-align: center; padding: 48px 20px 32px; font-size: 13px; line-height: 1.75; }
.footer a { color: #aaa; }
.footer a:hover { color: var(--white); }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { width: 160px; object-fit: contain; display: inline-block; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 14px; font-weight: 900; letter-spacing: .08em; font-size: 12px; text-transform: uppercase; }
.footer-locations { display: flex; justify-content: center; flex-wrap: wrap; align-items: center; gap: 4px 0; margin-bottom: 14px; font-size: 12px; color: #666; }
.footer-locations a { color: #777; }
.footer-locations a:hover { color: #ccc; }
.footer-locations .fd { margin: 0 8px; color: var(--red); font-size: 10px; }
.footer-contact { margin-bottom: 10px; font-size: 14px; }
.footer-contact a { color: #bbb; font-weight: 600; }
.footer-contact a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: #555; line-height: 1.8; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.js .reveal.show { opacity: 1; transform: translateY(0); }
.js .stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.js .stagger.show > * { opacity: 1; transform: translateY(0); }
.js .stagger.show > *:nth-child(2)  { transition-delay: .07s; }
.js .stagger.show > *:nth-child(3)  { transition-delay: .14s; }
.js .stagger.show > *:nth-child(4)  { transition-delay: .21s; }
.js .stagger.show > *:nth-child(5)  { transition-delay: .28s; }
.js .stagger.show > *:nth-child(6)  { transition-delay: .35s; }
.js .stagger.show > *:nth-child(7)  { transition-delay: .42s; }
.js .stagger.show > *:nth-child(8)  { transition-delay: .49s; }
.js .stagger.show > *:nth-child(9)  { transition-delay: .56s; }
.js .stagger.show > *:nth-child(10) { transition-delay: .63s; }
.js .stagger.show > *:nth-child(11) { transition-delay: .70s; }
.js .stagger.show > *:nth-child(12) { transition-delay: .77s; }

/* ── KEYFRAMES ───────────────────────────────────────────────────────────── */
@keyframes kenburns { from { scale: 1.12; } to { scale: 1.02; } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes navpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215,25,32,.6); }
  50% { box-shadow: 0 0 0 5px rgba(215,25,32,0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) { .services { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 900px) {
  .links { display: none; }
  .menu { display: block; }
  .nav { height: 74px; padding: 0 16px; }
  .brand span { font-size: 17px; }
  .brand img { width: 82px; height: 82px; }
  .scene .copy, .copy { padding: 0 18px 72px; }
  .scene.hero::before { background-position: 35% center; }
  .right .copy { text-align: left; }
  .right .copy p, .right h2 { margin-left: 0; }
  .right .actions { justify-content: flex-start; }
  .split, .steps, .proof-grid, .quote-grid, .svc-grid,
  .pillars, .equip-grid, .county-grid, .contact-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service { min-height: 260px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .panel, .quote-section { padding: 66px 18px; }
  .cta-top { display: none; }
  h1 { font-size: clamp(48px, 14vw, 76px); }
  .page-hero { min-height: 44vh; }
  .svc-img { min-height: 240px; }
  .proof-img { min-height: 300px; }
  /* Mobile sticky bar */
  .mobile-sticky { display: grid; }
  body { padding-bottom: 54px; }
}
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── BEFORE / AFTER SLIDER ───────────────────────────────────────────────── */
.ba-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.ba-wrap { display: flex; flex-direction: column; gap: 10px; }
.ba-slider {
  position: relative; overflow: hidden; border-radius: 6px;
  aspect-ratio: 4/3; cursor: ew-resize;
  user-select: none; -webkit-user-select: none; touch-action: none;
}
.ba-slider .ba-after,
.ba-slider .ba-before {
  position: absolute; inset: 0;
  background-size: 200% auto;
  background-repeat: no-repeat;
}
.ba-slider .ba-after { background-position: 100% 50%; }
.ba-slider .ba-before { background-position: 0% 50%; clip-path: inset(0 50% 0 0); }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff;
  transform: translateX(-50%); pointer-events: none;
}
.ba-handle-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #111;
  box-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.ba-label {
  position: absolute; top: 10px;
  padding: 3px 8px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 3px; pointer-events: none;
}
.ba-label.before { left: 10px; background: rgba(0,0,0,.65); color: #fff; }
.ba-label.after  { right: 10px; background: var(--red); color: #fff; }
.ba-cap { font-size: 13px; color: #888; text-align: center; margin: 0; }
@media (max-width: 860px) { .ba-row { grid-template-columns: 1fr; } }
