:root {
  --ink: #050505;
  --ink-2: #131313;
  --paper: #f5f5f5;
  --white: #fff;
  --muted: #aba9a2;
  --line: #d8d4ca;
  --orange: #ed0000;
  --orange-dark: #b90000;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: #0d0d0c;
  border-bottom: 2px solid var(--orange);
}
.eyebrow {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: 8px 0;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  min-height: 74px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; width: 132px; padding: 5px 7px; background: white; }
.logo img { display: block; width: 100%; height: auto; }
.logo-footer { width: 150px; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: .92rem; font-weight: 750; }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--orange); color: var(--orange); }
.menu-toggle { display: none; border: 1px solid #555; background: transparent; color: white; padding: 8px 12px; }

.hero {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background-color: #0e0e0d;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 43%, rgba(0,0,0,.28) 74%, rgba(0,0,0,.5) 100%),
    linear-gradient(0deg, rgba(0,0,0,.48), rgba(0,0,0,.1)),
    url("hero-land-clearing.png");
  background-position: center, center, right center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 55%, rgba(237,0,0,.28), transparent 34%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}
.hero-content { position: relative; padding: 90px 0; }
.kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; text-transform: uppercase; }
h1 { max-width: 890px; margin: 0; font-size: clamp(2.7rem, 6vw, 5.4rem); letter-spacing: -.04em; }
h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.5rem); letter-spacing: -.035em; }
h3 { margin: 0 0 10px; font-size: 1.25rem; }
.hero-copy { max-width: 650px; margin: 24px 0 30px; color: #dad8d1; font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  font-weight: 850;
  cursor: pointer;
}
.button-primary { color: white; background: var(--orange); }
.button-primary:hover { background: #ff1a1a; }
.button-outline { color: var(--orange); border-color: var(--orange); }
.button-outline:hover { color: white; background: var(--orange); }
.hero-stats { display: flex; gap: 54px; margin-top: 65px; }
.hero-stats div { display: grid; }
.hero-stats strong { color: var(--orange); font-size: 1.5rem; }
.hero-stats span { color: #bbb; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: 100px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; margin-bottom: 45px; }
.section-heading > p { max-width: 560px; margin: 0; color: #5f5d57; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card {
  grid-column: span 2;
  min-height: 280px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease;
  color: var(--ink);
}
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.service-number { position: absolute; top: 18px; right: 20px; color: #d7d3c9; font-weight: 900; }
.service-icon { width: 68px; height: 68px; margin-bottom: 34px; border: 3px solid var(--orange); position: relative; }
.service-icon::before, .service-icon::after { content: ""; position: absolute; background: var(--ink); }
.service-icon::before { width: 35px; height: 3px; left: 13px; top: 30px; transform: rotate(-35deg); }
.service-icon::after { width: 12px; height: 12px; right: 9px; bottom: 8px; border-radius: 50%; }
.service-card p { margin: 0; color: #69665f; }

.dark-section { color: white; background: var(--ink); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.muted { color: var(--muted); }
.text-link { display: inline-block; margin-top: 18px; color: var(--orange); font-weight: 850; }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.check-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #3b3b39; }
.check-list li { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid #3b3b39; font-weight: 750; }
.check-list span { color: var(--orange); font-size: .74rem; }

.instagram-section { color: white; background: #151514; }
.instagram-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.instagram-intro > p:not(.kicker) { max-width: 520px; color: var(--muted); }
.instagram-button {
  gap: 10px;
  margin-top: 16px;
  color: white;
  background: linear-gradient(120deg, #5b1796, #d3004d 52%, #ed0000);
}
.instagram-button:hover { filter: brightness(1.12); }
.instagram-button svg, .instagram-link svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.instagram-preview {
  min-height: 390px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  overflow: hidden;
  background: #292927;
}
.ig-panel { position: relative; display: flex; align-items: end; padding: 20px; overflow: hidden; }
.ig-panel::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(145deg, transparent 35%, rgba(237,0,0,.65)),
    repeating-linear-gradient(55deg, #242422 0 28px, #343430 28px 55px);
  transform: rotate(-7deg);
}
.ig-panel-two::before { background: linear-gradient(145deg, rgba(237,0,0,.15), transparent 50%), repeating-linear-gradient(125deg, #171716 0 38px, #302020 38px 74px); transform: rotate(8deg); }
.ig-panel-three::before { background: radial-gradient(circle at 60% 30%, rgba(237,0,0,.65), transparent 24%), repeating-linear-gradient(35deg, #201c1c 0 25px, #392a2a 25px 50px); }
.ig-panel strong { position: relative; z-index: 1; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.ig-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  background: rgba(0,0,0,.84);
  font-weight: 850;
}
.instagram-preview:hover .ig-overlay { color: var(--orange); }

.quote-section { background: #ebe8df; }
.quote-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.quote-intro > p:not(.kicker) { color: #64615b; }
.contact-stack { display: grid; gap: 14px; margin-top: 34px; }
.contact-stack a { padding: 16px 0; border-bottom: 1px solid #c9c4b8; display: grid; }
.contact-stack small { color: #77736b; text-transform: uppercase; letter-spacing: .09em; }
.quote-form { display: grid; gap: 18px; padding: 35px; background: white; border-top: 5px solid var(--orange); box-shadow: 0 16px 45px rgba(28,25,18,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 7px; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid #cbc7bd;
  border-radius: 0;
  padding: 12px;
  color: #111;
  background: #faf9f6;
  outline: none;
  text-transform: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(237,0,0,.16); }
.file-field input { padding: 9px; }
.form-submit { width: 100%; }
.form-status { min-height: 24px; margin: 0; color: #25713f; font-weight: 700; text-align: center; }
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.faq-grid details { padding: 24px; background: white; border-top: 3px solid var(--orange); }
.faq-grid summary { cursor: pointer; font-weight: 850; line-height: 1.35; }
.faq-grid p { margin-bottom: 0; color: #64615b; }
.faq-grid a { color: var(--orange-dark); font-weight: 750; }

.cta-strip { color: white; background: var(--orange); }
.cta-strip .container { min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 1.1rem; }
.cta-strip a { font-weight: 900; }
.site-footer { padding: 42px 0; color: #c4c1ba; background: #0e0e0d; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; font-size: .85rem; }
.footer-grid > *:last-child { text-align: right; color: var(--orange); }
.footer-grid p { margin: 7px 0 0; }
.footer-links { display: grid; justify-items: end; gap: 7px; }
.instagram-link { display: inline-flex; align-items: center; gap: 7px; }
.instagram-link:hover { color: white; }
.instagram-gallery-cta { padding: 55px 0; color: white; background: #151514; }
.instagram-gallery-cta .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.instagram-gallery-cta h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.floating-call {
  display: none;
  position: fixed;
  z-index: 30;
  right: 16px; bottom: 16px;
  padding: 13px 18px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

.page-hero { padding: 105px 0; color: white; background: radial-gradient(circle at 80% 30%, rgba(237,0,0,.24), transparent 28%), var(--ink); }
.page-hero p:last-child { max-width: 650px; color: #c4c1ba; }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card { padding: 34px; background: white; border-left: 4px solid var(--orange); }
.detail-card p { color: #66625b; }
.detail-card[href] { transition: transform .2s ease, box-shadow .2s ease; }
.detail-card[href]:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.card-link { color: var(--orange-dark); font-size: .82rem; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.service-area-section { background: #e8e8e8; }
.service-body { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: start; }
.service-copy h2 { margin-top: 48px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.service-copy p, .service-copy li { color: #5f5d57; }
.service-copy ul { padding-left: 20px; }
.service-sidebar { position: sticky; top: 24px; padding: 30px; color: white; background: var(--ink); border-top: 5px solid var(--orange); }
.service-sidebar h2 { font-size: 1.65rem; }
.service-sidebar .button { width: 100%; margin-top: 12px; }
.service-nav { display: grid; gap: 1px; margin-top: 28px; background: #333; }
.service-nav a { padding: 12px 14px; background: #191919; }
.service-nav a:hover { color: var(--orange); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-tile { grid-column: span 4; min-height: 280px; padding: 24px; display: flex; align-items: end; color: white; background: linear-gradient(150deg, rgba(237,0,0,.55), transparent 50%), repeating-linear-gradient(135deg, #161515 0 24px, #211e1e 24px 48px); }
.gallery-residential { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72)), url("gallery-residential-lot-clearing.png") center / cover no-repeat; }
.gallery-debris { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.72)), url("gallery-debris-haul-off.png") center / cover no-repeat; }
.gallery-excavation { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.72)), url("gallery-site-excavation.png") center / cover no-repeat; }
.gallery-concrete { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.72)), url("gallery-concrete-demolition.png") center / cover no-repeat; }
.gallery-delivery { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.72)), url("gallery-rock-sand-delivery.png") center / cover no-repeat; }
.gallery-tile:nth-child(1), .gallery-tile:nth-child(5) { grid-column: span 8; }
.gallery-tile strong { padding: 10px 12px; background: rgba(0,0,0,.72); font-size: 1.25rem; text-transform: uppercase; }

@media (max-width: 800px) {
  .eyebrow { font-size: .6rem; }
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #0d0d0c;
    border-bottom: 2px solid var(--orange);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .hero { min-height: 630px; }
  .hero-stats { gap: 20px; justify-content: space-between; }
  .section { padding: 72px 0; }
  .section-heading, .split, .quote-grid, .instagram-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4) { grid-column: auto; }
  .content-grid { grid-template-columns: 1fr; }
  .service-body { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .gallery-tile, .gallery-tile:nth-child(1), .gallery-tile:nth-child(5) { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:last-child { text-align: left; }
  .footer-links { justify-items: start; }
  .instagram-gallery-cta .container { align-items: flex-start; flex-direction: column; }
  .floating-call { display: block; }
}

@media (max-width: 520px) {
  .container, .nav-wrap, .eyebrow { width: min(calc(100% - 28px), var(--max)); }
  h1 { font-size: 2.55rem; }
  .hero-content { padding: 70px 0; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .instagram-preview { min-height: 500px; grid-template-columns: 1fr; }
  .quote-form { padding: 24px 18px; }
  .cta-strip .container { padding: 20px 0; align-items: flex-start; flex-direction: column; }
}

/* Instagram reels embed */
.instagram-intro-centered { max-width: 640px; margin: 0 auto; text-align: center; }
.instagram-intro-centered > p:not(.kicker) { margin-left: auto; margin-right: auto; }
.reels-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin: 40px auto 32px; }
.reel { flex: 1 1 300px; max-width: 340px; min-width: 0; }
.reels-row .instagram-media { min-width: 0 !important; width: 100% !important; margin: 0 !important; }
.instagram-cta-row { text-align: center; }

/* Quote form: spam honeypot + submit states */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status.is-success { color: #2e7d32; }
.form-status.is-error { color: var(--orange); }
.form-submit[disabled] { opacity: .65; cursor: progress; }
