:root {
  --forest: #17281f;
  --forest-2: #1e3a2f;
  --forest-light: #2f5140;
  --amber: #e8a33d;
  --amber-2: #c97f1e;
  --cream: #f7f4ee;
  --cream-2: #efe9dc;
  --ink: #1c2019;
  --ink-soft: #4a534a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 50px -20px rgba(23, 40, 31, 0.35);
  --ff-head: 'Fraunces', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.1em; margin: 0.6em 0; }
li { margin-bottom: 0.35em; }

h1, h2, h3 { font-family: var(--ff-head); color: var(--forest); line-height: 1.15; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--forest); color: var(--white);
  padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(23, 40, 31, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  padding: 10px 0;
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--white); }
.brand-mark { width: 34px; height: 34px; color: var(--amber); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 600; }
.brand-text em { font-style: normal; color: var(--amber); }

.main-nav { display: flex; gap: 28px; }
.main-nav a { color: var(--white); font-weight: 500; font-size: 0.95rem; opacity: 0.92; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--forest); font-weight: 700;
  padding: 10px 18px; border-radius: 999px; font-size: 0.95rem;
  box-shadow: 0 8px 20px -8px rgba(232,163,61,0.7);
  transition: transform 0.2s ease;
}
.phone-pill:hover { transform: translateY(-2px); }
.phone-pill svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- Video sections (shared) ---------- */
.video-section { position: relative; color: var(--white); overflow: hidden; isolation: isolate; }
.video-bg { position: absolute; inset: 0; z-index: -1; background: var(--forest); }
.video-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.video-bg video.is-ready { opacity: 1; }
.video-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,40,31,0.55) 0%, rgba(23,40,31,0.55) 100%); }
.video-scrim-dark { background: linear-gradient(180deg, rgba(10,16,12,0.75) 0%, rgba(10,16,12,0.82) 100%); }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 80px; }
.hero-inner { max-width: 760px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 700;
  color: var(--amber); margin: 0 0 14px;
}
.lede { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0 34px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--amber); color: var(--forest); box-shadow: 0 10px 28px -10px rgba(232,163,61,0.8); }
.btn-primary:hover { transform: translateY(-3px); }
.btn-ghost { border-color: rgba(255,255,255,0.65); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.hero-badges span {
  font-size: 0.82rem; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
}

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.scroll-cue span {
  width: 20px; height: 32px; border: 2px solid rgba(255,255,255,0.6); border-radius: 12px; position: relative;
}
.scroll-cue span::before {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--amber); border-radius: 2px; animation: cueDown 1.6s ease infinite;
}
@keyframes cueDown { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 16px; } 100% { opacity: 0; top: 6px; } }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); padding: 34px 0; border-bottom: 1px solid var(--cream-2); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: baseline; gap: 10px; }
.trust-item strong { font-family: var(--ff-head); font-size: 1.6rem; color: var(--forest); }
.trust-item span { color: var(--ink-soft); font-size: 0.9rem; font-weight: 500; }
.trust-badge-img { height: 46px; width: auto; }

/* ---------- Section head ---------- */
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head.light h2, .section-head.light .eyebrow { color: var(--white); }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }
.section-head.light .section-sub { color: rgba(255,255,255,0.85); }

/* ---------- Services ---------- */
.services { padding: 110px 0; background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(23,40,31,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -18px rgba(23,40,31,0.28); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; }
.service-card ul { color: var(--ink-soft); font-size: 0.92rem; }
.two-col { columns: 2; column-gap: 20px; }

/* ---------- Stats band ---------- */
.stats-band { padding: 100px 0; text-align: center; }
.stats-inner h2 { color: var(--white); margin-bottom: 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat strong { display: block; font-family: var(--ff-head); font-size: 2.4rem; color: var(--amber); }
.stat span { font-size: 0.92rem; color: rgba(255,255,255,0.85); }

/* ---------- Warning signs ---------- */
.warning-signs { padding: 100px 0; background: var(--white); }
.signs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.signs-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.signs-grid img { height: 320px; width: 100%; object-fit: cover; }
.signs-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px;
  background: linear-gradient(0deg, rgba(23,40,31,0.85), transparent);
  color: var(--white); font-size: 0.92rem; font-weight: 500;
}

/* ---------- Before / After ---------- */
.before-after { padding: 100px 0; background: var(--cream); }
.compare {
  position: relative; max-width: 760px; margin: 0 auto; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; cursor: ew-resize; user-select: none;
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-after { clip-path: inset(0 0 0 50%); }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white);
  transform: translateX(-50%); box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
}
.compare-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: var(--white); color: var(--forest);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; box-shadow: var(--shadow);
}
.compare-label {
  position: absolute; top: 16px; padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  background: rgba(23,40,31,0.75); color: var(--white); letter-spacing: 0.04em; text-transform: uppercase;
}
.label-before { left: 16px; }
.label-after { right: 16px; }
.compare-range {
  width: 100%; max-width: 760px; display: block; margin: 22px auto 0; accent-color: var(--amber);
}

/* ---------- Fleet ---------- */
.fleet { padding: 110px 0; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.fleet-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; background: var(--forest-2); }
.fleet-grid img { height: 210px; width: 100%; object-fit: cover; opacity: 0.95; }
.fleet-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px;
  background: linear-gradient(0deg, rgba(10,16,12,0.85), transparent); color: var(--white); font-size: 0.82rem; font-weight: 500;
}

/* ---------- In action / YouTube facades ---------- */
.in-action { padding: 100px 0; background: var(--white); }
.video-embed-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.yt-facade {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 16/9; cursor: pointer; background: var(--forest);
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%; background: rgba(232,163,61,0.95); border: 0;
  color: var(--forest); font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.5); cursor: pointer; transition: transform 0.2s ease;
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.08); }

/* ---------- Emergency CTA ---------- */
.emergency { padding: 130px 0; text-align: center; }
.emergency-inner { max-width: 720px; margin: 0 auto; }
.emergency h2 { color: var(--white); }
.emergency p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 30px; }

/* ---------- Service area ---------- */
.area { padding: 90px 0; background: var(--cream); text-align: center; }
.area-inner { max-width: 640px; margin: 0 auto; }
.county-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.county-chips span {
  padding: 10px 20px; border-radius: 999px; background: var(--forest-2); color: var(--white);
  font-weight: 600; font-size: 0.9rem;
}

/* ---------- Contact ---------- */
.contact { padding: 110px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 26px 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-weight: 600; }
.contact-list svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }
.contact-list a:hover { text-decoration: underline; }
.bbb-badge { margin-top: 10px; }

.estimate-form {
  background: var(--cream); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
  border: 1px solid rgba(23,40,31,0.06);
}
.estimate-form h3 { margin-bottom: 18px; }
.estimate-form label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 16px; }
.estimate-form input, .estimate-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(23,40,31,0.18);
  font-family: inherit; font-size: 0.95rem; background: var(--white);
}
.estimate-form input:focus, .estimate-form textarea:focus { outline: 2px solid var(--amber); }
.estimate-form .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,0.75); padding: 26px 0; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.86rem; }
.footer-row a { color: var(--amber); font-weight: 700; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--forest); flex-direction: column; padding: 110px 32px 32px; gap: 26px;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 90; }
  .main-nav.open { transform: translateX(0); }
  .menu-toggle { display: flex; }
  .header-cta { gap: 10px; }
  .phone-text { display: none; }
  .phone-pill { padding: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .signs-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .video-embed-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 140px; }
  h1 { font-size: 2.1rem; }
}
